From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ulf Samuelsson Date: Sun, 11 Feb 2007 22:54:39 +0100 Subject: [U-Boot-Users] AT91 NAND om AT91SAM9260EK References: <47403.127.0.0.1.1171139473.squirrel@localhost> <007601c74dfc$13ee7340$01c4af0a@Glamdring> <1defaf580702111004m6759e7f8yd03392a9ab7464c4@mail.gmail.com> Message-ID: <00f501c74e27$44df6290$01c4af0a@Glamdring> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de For people that has not looked into what the three submitted patches do: They create the same end result as if you had done the following: 1) Fix a bug in "board/cmc_pu2/at45.c" making it a true duplicate of ."board/at91rm9200dk/at45.c" (currently they differ in one line) 2) Move "board/at91rm9200dk/at45.c" to "drivers/at45.c" 3) Remove "board/cmc_pu2/at45.c". 4) Remove references to at45.c in the "board/xxx/Makefile"'s. 5) Ensure that the "drivers/Makefile" build "drivers/at45.c" 6) Move those parts of at45 which refer to at91rm9200 H/W to "cpu/arm920t/at91rm9200/spi.c" 7) Ensure "cpu/arm920t/at91rm9200/Makefile" builds the spi.c The end result is that there is no duplication left in U-boot of either the at45.c nor the spi.c contents. Best Regards Ulf Samuelsson