From b4feeb4e8a1d9124bae39985a97b99d08e06186d Mon Sep 17 00:00:00 2001 From: Graeme Russ Date: Tue, 24 Nov 2009 20:04:13 +1100 Subject: i386: Fix malloc initialization Signed-off-by: Graeme Russ --- include/configs/eNET.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/configs/eNET.h') diff --git a/include/configs/eNET.h b/include/configs/eNET.h index 243a5541785..54c34fa6728 100644 --- a/include/configs/eNET.h +++ b/include/configs/eNET.h @@ -61,7 +61,7 @@ /* * Size of malloc() pool */ -#define CONFIG_MALLOC_SIZE (CONFIG_SYS_ENV_SIZE + 128*1024) +#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024) #define CONFIG_BAUDRATE 9600 -- cgit v1.2.3 From 141a62cc12bfbab49f0f44a394518a360dcddad8 Mon Sep 17 00:00:00 2001 From: Graeme Russ Date: Tue, 24 Nov 2009 20:04:16 +1100 Subject: i386: Fix global label in inline asm compile error Signed-off-by: Graeme Russ --- include/configs/eNET.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/configs/eNET.h') diff --git a/include/configs/eNET.h b/include/configs/eNET.h index 54c34fa6728..0a86550861a 100644 --- a/include/configs/eNET.h +++ b/include/configs/eNET.h @@ -234,8 +234,8 @@ #ifndef __ASSEMBLER__ extern unsigned long ip; -#define PRINTIP asm ("call next_line\n" \ - "next_line:\n" \ +#define PRINTIP asm ("call 0\n" \ + "0:\n" \ "pop %%eax\n" \ "movl %%eax, %0\n" \ :"=r"(ip) \ -- cgit v1.2.3 From 1c409bc7101a24ecd47a13a4e851845d66dc23ce Mon Sep 17 00:00:00 2001 From: Graeme Russ Date: Tue, 24 Nov 2009 20:04:21 +1100 Subject: i386: Final Relocation Signed-off-by: Graeme Russ --- include/configs/eNET.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/configs/eNET.h') diff --git a/include/configs/eNET.h b/include/configs/eNET.h index 0a86550861a..6a68bf4938f 100644 --- a/include/configs/eNET.h +++ b/include/configs/eNET.h @@ -28,6 +28,8 @@ #ifndef __CONFIG_H #define __CONFIG_H +#define CONFIG_RELOC_FIXUP_WORKS + /* * Stuff still to be dealt with - */ -- cgit v1.2.3