Mon Nov 30 21:40:35 2009 UTC ()
Move relocation address to lower memory (0x1000) further away from the
BIOS 40:0 segment than previously but giving more room for heap that 0x8800.


(dsl)
diff -r1.37 -r1.38 src/sys/arch/i386/stand/bootxx/Makefile.bootxx

cvs diff -r1.37 -r1.38 src/sys/arch/i386/stand/bootxx/Makefile.bootxx (expand / switch to unified diff)

--- src/sys/arch/i386/stand/bootxx/Makefile.bootxx 2009/11/20 17:28:19 1.37
+++ src/sys/arch/i386/stand/bootxx/Makefile.bootxx 2009/11/30 21:40:35 1.38
@@ -1,26 +1,26 @@ @@ -1,26 +1,26 @@
1# $NetBSD: Makefile.bootxx,v 1.37 2009/11/20 17:28:19 dsl Exp $ 1# $NetBSD: Makefile.bootxx,v 1.38 2009/11/30 21:40:35 dsl Exp $
2 2
3S= ${.CURDIR}/../../../../.. 3S= ${.CURDIR}/../../../../..
4 4
5PIE_CFLAGS= 5PIE_CFLAGS=
6PIE_LDFLAGS= 6PIE_LDFLAGS=
7PIE_AFLAGS= 7PIE_AFLAGS=
8NOMAN= 8NOMAN=
9PROG?= bootxx_${FS} 9PROG?= bootxx_${FS}
10BINDIR= /usr/mdec 10BINDIR= /usr/mdec
11BINMODE= 0444 11BINMODE= 0444
12 12
13PRIMARY_LOAD_ADDRESS=0x8800 13PRIMARY_LOAD_ADDRESS=0x1000
14SECONDARY_LOAD_ADDRESS=0x10000 14SECONDARY_LOAD_ADDRESS=0x10000
15 15
16# We ought (need?) to fit into track 0 of a 1.2M floppy. 16# We ought (need?) to fit into track 0 of a 1.2M floppy.
17# This restricts us to 15 sectors (including pbr and label) 17# This restricts us to 15 sectors (including pbr and label)
18BOOTXX_SECTORS?=15 18BOOTXX_SECTORS?=15
19BOOTXX_MAXSIZE?= $$(( ${BOOTXX_SECTORS} * 512 )) 19BOOTXX_MAXSIZE?= $$(( ${BOOTXX_SECTORS} * 512 ))
20 20
21SRCS= pbr.S label.S bootxx.S boot1.c 21SRCS= pbr.S label.S bootxx.S boot1.c
22 22
23.include <bsd.own.mk> 23.include <bsd.own.mk>
24 24
25STRIPFLAG= # nothing 25STRIPFLAG= # nothing
26 26