diff options
author | Stefan Roese <sr@denx.de> | 2007-12-19 09:05:40 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-12-27 19:35:34 +0100 |
commit | bf8324e4a50758daff8cddd04c6a2ff8ed775bea (patch) | |
tree | bb3076de5620f2627363e723aba257725970ac84 /include/configs/katmai.h | |
parent | 328a340392a5df9aaf00792be989df73e750859e (diff) | |
download | u-boot-imx-bf8324e4a50758daff8cddd04c6a2ff8ed775bea.zip u-boot-imx-bf8324e4a50758daff8cddd04c6a2ff8ed775bea.tar.gz u-boot-imx-bf8324e4a50758daff8cddd04c6a2ff8ed775bea.tar.bz2 |
ppc4xx: Add fdt support to AMCC Katmai eval board
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs/katmai.h')
-rw-r--r-- | include/configs/katmai.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/configs/katmai.h b/include/configs/katmai.h index 2eed941..0aa4f2d 100644 --- a/include/configs/katmai.h +++ b/include/configs/katmai.h @@ -193,8 +193,14 @@ "bootm ${kernel_addr} ${ramdisk_addr}\0" \ "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;" \ "bootm\0" \ - "rootpath=/opt/eldk/ppc_4xx\0" \ + "net_nfs_fdt=tftp 200000 ${bootfile};" \ + "tftp ${fdt_addr} ${fdt_file};" \ + "run nfsargs addip addtty;" \ + "bootm 200000 - ${fdt_addr}\0" \ + "rootpath=/opt/eldk/ppc_4xx\0" \ "bootfile=katmai/uImage\0" \ + "fdt_file=katmai/katmai.dtb\0" \ + "fdt_addr=400000\0" \ "kernel_addr=fff10000\0" \ "ramdisk_addr=fff20000\0" \ "initrd_high=30000000\0" \ @@ -445,4 +451,8 @@ #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ #endif +/* pass open firmware flat tree */ +#define CONFIG_OF_LIBFDT 1 +#define CONFIG_OF_BOARD_SETUP 1 + #endif /* __CONFIG_H */ |