
The current load address of 0 seems to cause problems when driver model is used. There doesn't seem to be any reason why the script needs to load to 0, so move it.
Signed-off-by: Simon Glass sjg@chromium.org ---
Changes in v2: - Add new patch to move script load address to 0x8000
include/configs/rpi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/rpi.h b/include/configs/rpi.h index bef6062..deef450 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -171,7 +171,7 @@ * for the FDT/DTB to be up to 1M, which is hopefully plenty. */ #define ENV_MEM_LAYOUT_SETTINGS \ - "scriptaddr=0x00000000\0" \ + "scriptaddr=0x00008000\0" \ "pxefile_addr_r=0x00100000\0" \ "kernel_addr_r=0x01000000\0" \ "fdt_addr_r=0x02000000\0" \