]> git.ozlabs.org Git - yaboot.git/blobdiff - Makefile
Allocate malloc region with prom_claim_chunk_top
[yaboot.git] / Makefile
index d975e4ed9b2b2f8fe191e433f229d116a684a9c9..78184a0ccc6b701c537fbe4f258cdb2df1b150dd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,7 @@ GETROOT = fakeroot
 
 # Load the bootstrap at 2Mb
 TEXTADDR       = 0x200000
-# Malloc block at 3Mb -> 4Mb
-MALLOCADDR     = 0x300000
+# 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
@@ -83,7 +82,8 @@ HOSTCFLAGS = -O2 $(CFLAGS) -Wall -I/usr/include
 
 OBJS = second/crt0.o second/yaboot.o second/cache.o second/prom.o second/file.o \
        second/partition.o second/fs.o second/cfg.o second/setjmp.o second/cmdline.o \
-       second/fs_of.o second/fs_ext2.o second/fs_iso.o second/iso_util.o \
+       second/fs_of.o second/fs_ext2.o second/fs_iso.o second/fs_swap.o \
+       second/iso_util.o \
        lib/nosys.o lib/string.o lib/strtol.o lib/vsprintf.o lib/ctype.o lib/malloc.o lib/strstr.o
 
 ifeq ($(USE_MD5_PASSWORDS),y)