From: Anton Blanchard Date: Thu, 8 Jul 2010 19:03:44 +0000 (+0000) Subject: Link yaboot at 1MB X-Git-Tag: yaboot-1.3.17-rc1~3 X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=commitdiff_plain;h=f7a364631f2a8975ecca56668a19ee0a66c1ddcd;ds=sidebyside Link yaboot at 1MB Give ourselves another 1MB of available space by moving yaboot down to 1MB. With load-base at 0x4000, our yaboot image would have to be 1MB-0x4000 before we should encounter problems (because firmware would have issues relocating us from 0x4000 to 1MB). Signed-off-by: Anton Blanchard Signed-off-by: Tony Breeds --- diff --git a/Makefile b/Makefile index e8f62ad..f549977 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ GETROOT = fakeroot # We use fixed addresses to avoid overlap when relocating # and other trouble with initrd -# Load the bootstrap at 2Mb -TEXTADDR = 0x200000 +# Load the bootstrap at 1Mb +TEXTADDR = 0x100000 # Malloc block of 1MB MALLOCSIZE = 0x100000 # Load kernel and ramdisk at as low as possible