X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=Makefile;h=f54997782d5a6ff1189b4177ef4c0eff911ae125;hp=4c35c6758111650976534d149e67210da48fa205;hb=f7a364631f2a8975ecca56668a19ee0a66c1ddcd;hpb=a01ba048668c5a7e5efa2aa41eeb0a3ed374a63a diff --git a/Makefile b/Makefile index 4c35c67..f549977 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ include Config -VERSION = 1.3.14 +VERSION = 1.3.16 # Debug mode (spam/verbose) DEBUG = 0 # make install vars @@ -15,13 +15,12 @@ GETROOT = fakeroot # We use fixed addresses to avoid overlap when relocating # and other trouble with initrd -# Load the bootstrap at 2Mb -TEXTADDR = 0x200000 -# Malloc block at 3Mb -> 4Mb -MALLOCADDR = 0x300000 +# Load the bootstrap at 1Mb +TEXTADDR = 0x100000 +# Malloc block of 1MB MALLOCSIZE = 0x100000 -# Load kernel and ramdisk at real-base. If there is overlap, will retry until find open space -KERNELADDR = 0x00C00000 +# Load kernel and ramdisk at as low as possible +KERNELADDR = 0x00000000 # Set this to the prefix of your cross-compiler, if you have one. # Else leave it empty.