diff options
author | wpaul <wpaul@FreeBSD.org> | 1995-01-20 07:48:27 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1995-01-20 07:48:27 +0000 |
commit | 1875d75ad14b7e1e30810e2caa90e11f404fd9f2 (patch) | |
tree | a551b89627e6c0f432e7ce4339805e8d158a7ec7 /sys/i386/boot/biosboot/Makefile | |
parent | 7a6a5253caf293944cabff9f7679f6bf2d51b9dd (diff) | |
download | FreeBSD-src-1875d75ad14b7e1e30810e2caa90e11f404fd9f2.zip FreeBSD-src-1875d75ad14b7e1e30810e2caa90e11f404fd9f2.tar.gz |
Submitted by: Bill Paul (wpaul@ctr.columbia.edu)
Obtained from:
bios boot block changed to allow booting from both the attached graphics
display and from a serial port. (A specially compiled serial boot block
is no longer necessary.) The boot block should detect the presence or
absence of a keyboard: if there is no keyboard, COM1 is turned into the
console. This simulates the behavior of the Sun boot PROMs. Unplug your
keyboard, attach a terminal to COM1 and you should be ready to go. :)
Diffstat (limited to 'sys/i386/boot/biosboot/Makefile')
-rw-r--r-- | sys/i386/boot/biosboot/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/i386/boot/biosboot/Makefile b/sys/i386/boot/biosboot/Makefile index d147e75..ed1ab3a 100644 --- a/sys/i386/boot/biosboot/Makefile +++ b/sys/i386/boot/biosboot/Makefile @@ -1,15 +1,16 @@ -# $Id: Makefile,v 1.22 1994/11/05 21:06:16 ache Exp $ +# $Id: Makefile,v 1.23 1994/12/18 19:14:08 bde Exp $ # PROG= boot # Order is very important on the SRCS line for this prog -SRCS= start.S table.c boot2.S boot.c asm.S bios.S io.c disk.c sys.c +SRCS= start.S table.c boot2.S boot.c asm.S bios.S serial.S +SRCS+= probe_keyboard.c io.c disk.c sys.c BINDIR= /usr/mdec BINMODE= 444 -CFLAGS= -O -DDO_BAD144 -DBOOTWAIT=${BOOTWAIT} +CFLAGS= -O2 -DDO_BAD144 -DBOOTWAIT=${BOOTWAIT} -DCOMCONSOLE=0x3F8 CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK} -CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../.. +CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../.. -DRB_SERIAL=0x1000 CLEANFILES+= boot.nohdr boot.strip boot1 boot2 DPADD= ${LIBC} LDFLAGS+= -N -T 0 -nostdlib |