KB9202 compile fix Problem observed with CodeSourcery EABI toolchain (arm-2007q3-51-arm-none-linux-gnueabi) make -C cpu/arm920t start.o ... start.S: Assembler messages: start.S:205: Error: invalid constant (20200) after fixup start.S:378: Error: invalid constant (28200) after fixup start.S:379: Error: invalid constant (28200) after fixup start.S:384: Error: invalid constant (28200) after fixup start.S:385: Error: invalid constant (28200) after fixup start.S:390: Error: invalid constant (28200) after fixup start.S:391: Error: invalid constant (28200) after fixup start.S:396: Error: invalid constant (28200) after fixup start.S:397: Error: invalid constant (28200) after fixup start.S:402: Error: invalid constant (28200) after fixup start.S:403: Error: invalid constant (28200) after fixup start.S:427: Error: invalid constant (28200) after fixup start.S:428: Error: invalid constant (28200) after fixup start.S:433: Error: invalid constant (28200) after fixup start.S:434: Error: invalid constant (28200) after fixup Signed-off-by: Johannes Stezenbach diff -r e53ef89e46dd -r 1f24112792e7 include/configs/kb9202.h --- a/include/configs/kb9202.h Fri Oct 19 18:22:38 2007 +0200 +++ b/include/configs/kb9202.h Fri Oct 19 18:34:12 2007 +0200 @@ -57,7 +57,7 @@ /* * Size of malloc() pool */ -#define CFG_MALLOC_LEN (CFG_ENV_SIZE + 128*1024) +#define CFG_MALLOC_LEN (128*1024) #define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */ #define CONFIG_BAUDRATE 115200 --