diff options
author | Marian Balakowicz <m8@semihalf.com> | 2007-11-15 13:24:43 +0100 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2007-11-15 13:24:43 +0100 |
commit | f23cb34c367bb27585a4fdb8a75277370e7d0596 (patch) | |
tree | 26a10f15499e1c1a6a6bafc30d14dc5f838d5159 /include/configs | |
parent | 992742a5b09d9040adbd156fb90756af66ade310 (diff) | |
download | u-boot-imx-f23cb34c367bb27585a4fdb8a75277370e7d0596.zip u-boot-imx-f23cb34c367bb27585a4fdb8a75277370e7d0596.tar.gz u-boot-imx-f23cb34c367bb27585a4fdb8a75277370e7d0596.tar.bz2 |
[INKA4x0] NG hardware: platform code update
- Cleanup compile warnings.
- Add missing '\0' in default environment.
- Increase CFG_MONITOR_LEN to 256 KiB.
- Add required CFG_USE_PPCENV.
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/inka4x0.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/configs/inka4x0.h b/include/configs/inka4x0.h index 0fac28f..af8fb21 100644 --- a/include/configs/inka4x0.h +++ b/include/configs/inka4x0.h @@ -142,7 +142,7 @@ "cp.l 100000 f0000b28 1\0" \ "ideargs=setenv bootargs root=/dev/hda1 rw\0" \ "ide_boot=ext2load ide 0:1 200000 uImage;" \ - "run ideargs addip addcons enable_disp;bootm" \ + "run ideargs addip addcons enable_disp;bootm\0" \ "brightness=255\0" \ "" @@ -174,6 +174,7 @@ #define CFG_ENV_SIZE 0x2000 #define CFG_ENV_SECT_SIZE 0x2000 #define CONFIG_ENV_OVERWRITE 1 +#define CFG_USE_PPCENV /* Environment embedded in sect .ppcenv */ /* * Memory map @@ -203,7 +204,7 @@ # define CFG_RAMBOOT 1 #endif -#define CFG_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */ +#define CFG_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */ #define CFG_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */ #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |