mpc52xx, charon: change mtd default partitions

New default partitions on nor flash:

640k   (firmware)
1408k  (kernel)
2m     (initrd)
4m     (small-fs)
24320k (big-fs)
256k   (dts)

Signed-off-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
Heiko Schocher 2010-12-17 10:11:27 +01:00 committed by Wolfgang Denk
parent 259bff7ce8
commit 5624d66a4e
2 changed files with 14 additions and 1 deletions

View File

@ -273,6 +273,11 @@
"fdt_addr=FC100000\0" \
"kernel_addr=FC140000\0" \
"ramdisk_addr=FC600000\0"
#elif defined(CONFIG_CHARON)
#define ENV_FLASH_LAYOUT \
"fdt_addr=FDFC0000\0" \
"kernel_addr=FC0A0000\0" \
"ramdisk_addr=FC200000\0"
#else /* !CONFIG_TQM5200_B */
#define ENV_FLASH_LAYOUT \
"fdt_addr=FC0A0000\0" \
@ -426,7 +431,7 @@
#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
#define MTDIDS_DEFAULT "nor0=fc000000.flash"
#if defined(CONFIG_CHARON) || defined(CONFIG_STK52XX)
#if defined(CONFIG_STK52XX)
# if defined(CONFIG_TQM5200_B)
# if defined(CONFIG_SYS_LOWBOOT)
# define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:1m(firmware)," \
@ -458,6 +463,13 @@
"1792k(kernel)," \
"5632k(rootfs)," \
"24m(home)"
#elif defined (CONFIG_CHARON)
# define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:640k(firmware),"\
"1408k(kernel)," \
"2m(initrd)," \
"4m(small-fs)," \
"24320k(big-fs)," \
"256k(dts)"
#elif defined (CONFIG_FO300)
# define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:640k(firmware),"\
"1408k(kernel)," \

View File

@ -47,6 +47,7 @@
"bootfile=/tftpboot/charon/uImage\0" \
"fdt_file=/tftpboot/charon/charon.dtb\0" \
"u-boot=/tftpboot/charon/u-boot.bin\0" \
"mtdparts=" MTDPARTS_DEFAULT "\0" \
"addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"