0x50000000 is not a valid address on boards which only 256M of RAM and our standard environment scripts use 0x48000000.
Signed-off-by: Hans de Goede <[email protected]> --- include/configs/sunxi-common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h index 37e71b8..8d21119 100644 --- a/include/configs/sunxi-common.h +++ b/include/configs/sunxi-common.h @@ -114,10 +114,10 @@ /* Boot Argument Buffer Size */ #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE -#define CONFIG_SYS_LOAD_ADDR 0x50000000 /* default load address */ +#define CONFIG_SYS_LOAD_ADDR 0x48000000 /* default load address */ /* standalone support */ -#define CONFIG_STANDALONE_LOAD_ADDR 0x50000000 +#define CONFIG_STANDALONE_LOAD_ADDR 0x48000000 #define CONFIG_SYS_HZ 1000 -- 1.9.0 -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
