diff options
author | joerg <joerg@FreeBSD.org> | 1996-01-06 23:37:10 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-01-06 23:37:10 +0000 |
commit | eb5b9625ce3bce7f01cdda685359d465115855f3 (patch) | |
tree | 4695d98bd67888a92ea1068798af97d00fa5b000 /sys/i386 | |
parent | 434ea57220c62fef2d449d5b77dd5afaf57f5256 (diff) | |
download | FreeBSD-src-eb5b9625ce3bce7f01cdda685359d465115855f3.zip FreeBSD-src-eb5b9625ce3bce7f01cdda685359d465115855f3.tar.gz |
Document the ``BOOT_HD'' make option for the bootblocks.
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/boot/biosboot/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/i386/boot/biosboot/Makefile b/sys/i386/boot/biosboot/Makefile index e609527..5db09d7 100644 --- a/sys/i386/boot/biosboot/Makefile +++ b/sys/i386/boot/biosboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.33 1995/10/10 21:11:06 ache Exp $ +# $Id: Makefile,v 1.34 1996/01/05 19:28:55 ache Exp $ # PROG= boot @@ -13,9 +13,14 @@ CFLAGS= -O2 \ CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK} CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../.. -# force usage of serial console instead of keyboard probing +# Force usage of serial console instead of keyboard probing. #CFLAGS+= -DFORCE_COMCONSOLE +# Assume hd(*,a) instead of wd(*,a) if the boot seems to happen from +# a hard disk. +# This can be useful for people booting in a mixed IDE/SCSI environment. +#CFLAGS+= -DBOOT_HD + CLEANFILES+= boot.nohdr boot.strip boot1 boot2 sizetest DPADD= ${LIBC} LDFLAGS+= -N -T 0 -nostdlib |