diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2009-08-21 16:34:38 -0500 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2009-08-21 17:11:44 -0500 |
commit | 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde (patch) | |
tree | 866af28b16c41ecccbfbb57b52a2286e929e48cf /include/configs/MPC837XERDB.h | |
parent | 8eceeb7fd656d6d071c0a8b615e178aca5775fff (diff) | |
download | u-boot-imx-79f516bccc3cff5a5cd4b3dffb7d254e746fdbde.zip u-boot-imx-79f516bccc3cff5a5cd4b3dffb7d254e746fdbde.tar.gz u-boot-imx-79f516bccc3cff5a5cd4b3dffb7d254e746fdbde.tar.bz2 |
mpc83xx: accommodate larger kernel sizes by default
linux mpc83xx_defconfig kernels are getting bigger, accommodate for
their growth by adjusting default load and fdt addresses.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'include/configs/MPC837XERDB.h')
-rw-r--r-- | include/configs/MPC837XERDB.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/MPC837XERDB.h b/include/configs/MPC837XERDB.h index ca89b9b..89fafe7 100644 --- a/include/configs/MPC837XERDB.h +++ b/include/configs/MPC837XERDB.h @@ -668,7 +668,7 @@ #define CONFIG_UBOOTPATH u-boot.bin /* U-Boot image on TFTP server */ #define CONFIG_FDTFILE mpc8379_rdb.dtb -#define CONFIG_LOADADDR 500000 /* default location for tftp and bootm */ +#define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */ #define CONFIG_BOOTDELAY 6 /* -1 disables auto-boot */ #define CONFIG_BAUDRATE 115200 @@ -684,7 +684,7 @@ "cp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize; " \ "protect on " MK_STR(TEXT_BASE) " +$filesize; " \ "cmp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize\0" \ - "fdtaddr=400000\0" \ + "fdtaddr=780000\0" \ "fdtfile=" MK_STR(CONFIG_FDTFILE) "\0" \ "ramdiskaddr=1000000\0" \ "ramdiskfile=" MK_STR(CONFIG_RAMDISKFILE) "\0" \ |