Deleted Added
full compact
Makefile (185562) Makefile (185579)
1# $FreeBSD: head/sys/boot/i386/boot0/Makefile 185562 2008-12-02 14:57:48Z luigi $
1# $FreeBSD: head/sys/boot/i386/boot0/Makefile 185579 2008-12-03 14:53:59Z luigi $
2
3PROG?= boot0
4STRIP=
5BINMODE=${NOBINMODE}
6NO_MAN=
7SRCS= ${PROG}.S
8
9# Additional options that you can specify with make OPTS="..."
10# (these only apply to boot0.S)
11#
2
3PROG?= boot0
4STRIP=
5BINMODE=${NOBINMODE}
6NO_MAN=
7SRCS= ${PROG}.S
8
9# Additional options that you can specify with make OPTS="..."
10# (these only apply to boot0.S)
11#
12# -DVOLUME_SERIAL support volume serial number (NT, XP, Vista)
12# -DSIO do I/O using COM1:
13# -DPXE fallback to INT18/PXE with F6
14# -DCHECK_DRIVE enable checking drive number
15# -DONLY_F_KEYS accept only Fx keys in console
16# -DTEST print drive number on entry
17#
13# -DSIO do I/O using COM1:
14# -DPXE fallback to INT18/PXE with F6
15# -DCHECK_DRIVE enable checking drive number
16# -DONLY_F_KEYS accept only Fx keys in console
17# -DTEST print drive number on entry
18#
19OPTS ?= -DVOLUME_SERIAL -DPXE
18CFLAGS += ${OPTS}
19
20# Flags used in the boot0.S code:
21# 0x0f all valid partitions enabled.
22# 0x80 'packet', use BIOS EDD (LBA) extensions instead of CHS
23# to read from disk. boot0.S does not check that the extensions
24# are supported, but all modern BIOSes should have them.
25# 0x40 'noupdate', disable writing boot0 back to disk so that

--- 52 unchanged lines hidden ---
20CFLAGS += ${OPTS}
21
22# Flags used in the boot0.S code:
23# 0x0f all valid partitions enabled.
24# 0x80 'packet', use BIOS EDD (LBA) extensions instead of CHS
25# to read from disk. boot0.S does not check that the extensions
26# are supported, but all modern BIOSes should have them.
27# 0x40 'noupdate', disable writing boot0 back to disk so that

--- 52 unchanged lines hidden ---