
Hi Marek,
On 10/22/11 00:44, Marek Vasut wrote:
This contains support for the following components:
- DUART
- MMC
- Both FEC interfaces
- NAND
- I2C (RTC, EEPROM)
- SPI (FLASH)
Signed-off-by: Marek Vasut marek.vasut@gmail.com Cc: Stefano Babic sbabic@denx.de Cc: Wolfgang Denk wd@denx.de Cc: Detlev Zundel dzu@denx.de
MAINTAINERS | 1 + board/denx/m28evk/Makefile | 49 ++++++++ board/denx/m28evk/m28evk.c | 195 ++++++++++++++++++++++++++++++ boards.cfg | 1 + include/configs/m28evk.h | 282 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 528 insertions(+), 0 deletions(-) create mode 100644 board/denx/m28evk/Makefile create mode 100644 board/denx/m28evk/m28evk.c create mode 100644 include/configs/m28evk.h
V2: Use scrub -y instead of scrub.quiet in the scripts. V3: Use CONFIG_ENV_RANGE V4: Configure the RAM size to 128MB for V1.1 module
[...]
diff --git a/board/denx/m28evk/Makefile b/board/denx/m28evk/Makefile new file mode 100644 index 0000000..4037199 --- /dev/null +++ b/board/denx/m28evk/Makefile
[...]
+clean:
- rm -f $(OBJS)
+distclean: clean
- rm -f $(LIB) core *.bak .depend
These, should not be here anymore, right?
[...]