diff options
author | kato <kato@FreeBSD.org> | 1998-11-23 07:34:37 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1998-11-23 07:34:37 +0000 |
commit | a1a55c022da765eac693df358d86873517de778f (patch) | |
tree | 834eecefc461b587a841eb8ef8d7918ced6d7d30 /sys/pc98 | |
parent | b8628da9ab78733475d199dbf3489a840f9ab882 (diff) | |
download | FreeBSD-src-a1a55c022da765eac693df358d86873517de778f.zip FreeBSD-src-a1a55c022da765eac693df358d86873517de778f.tar.gz |
Sync with sys/i386/boot/biosboot/Makefile revision 1.67.
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/boot/biosboot/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/boot/biosboot/Makefile b/sys/pc98/boot/biosboot/Makefile index cef96e0f..1d6430e 100644 --- a/sys/pc98/boot/biosboot/Makefile +++ b/sys/pc98/boot/biosboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.18 1998/05/28 13:46:04 kato Exp $ +# $Id: Makefile,v 1.19 1998/09/15 14:08:34 kato Exp $ # PROG= boot @@ -8,7 +8,7 @@ SRCS+= probe_keyboard.c io.c disk.c sys.c BINDIR= /usr/mdec BINMODE= 444 -CFLAGS= -O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 \ +CFLAGS= -aout -O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 \ -mno-486 \ -DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT} CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK} @@ -64,8 +64,8 @@ BOOTSTACK= 0xFFF0 boot.strip: boot cp -p boot boot.strip - strip boot.strip - size boot.strip + strip -aout boot.strip + size -aout boot.strip boot.nohdr: boot.strip dd if=boot.strip of=boot.nohdr ibs=32 skip=1 obs=1024b |