Deleted Added
full compact
Makefile (185579) Makefile (186598)
1# $FreeBSD: head/sys/boot/i386/boot0/Makefile 185579 2008-12-03 14:53:59Z luigi $
1# $FreeBSD: head/sys/boot/i386/boot0/Makefile 186598 2008-12-30 09:40:50Z luigi $
2
3PROG?= boot0
4STRIP=
5BINMODE=${NOBINMODE}
6NO_MAN=
7SRCS= ${PROG}.S
8
9# Additional options that you can specify with make OPTS="..."

--- 15 unchanged lines hidden (view full) ---

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
28# the current selection is not preserved across reboots.
29# 0x20 'setdrv', override the drive number supplied by the bios
30# with the one in the boot sector.
31
32# Default boot flags:
2
3PROG?= boot0
4STRIP=
5BINMODE=${NOBINMODE}
6NO_MAN=
7SRCS= ${PROG}.S
8
9# Additional options that you can specify with make OPTS="..."

--- 15 unchanged lines hidden (view full) ---

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
28# the current selection is not preserved across reboots.
29# 0x20 'setdrv', override the drive number supplied by the bios
30# with the one in the boot sector.
31
32# Default boot flags:
33BOOT_BOOT0_FLAGS?= 0xcf
33BOOT_BOOT0_FLAGS?= 0x8f
34
35# The number of timer ticks to wait for a keypress before assuming the default
36# selection. Since there are 18.2 ticks per second, the default value of
37# 0xb6 (182d) corresponds to 10 seconds.
38BOOT_BOOT0_TICKS?= 0xb6
39
40# The base address that we the boot0 code to to run it. Don't change this
41# unless you are glutton for punishment.

--- 38 unchanged lines hidden ---
34
35# The number of timer ticks to wait for a keypress before assuming the default
36# selection. Since there are 18.2 ticks per second, the default value of
37# 0xb6 (182d) corresponds to 10 seconds.
38BOOT_BOOT0_TICKS?= 0xb6
39
40# The base address that we the boot0 code to to run it. Don't change this
41# unless you are glutton for punishment.

--- 38 unchanged lines hidden ---