1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1999-02-03 08:39:09 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
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 serial.S
|
|
|
|
SRCS+= probe_keyboard.c io.c disk.c sys.c
|
|
|
|
|
|
|
|
BINMODE= 444
|
2004-02-07 14:35:33 +00:00
|
|
|
CFLAGS= -Os -mrtd \
|
|
|
|
-fno-guess-branch-probability \
|
2002-02-28 10:08:23 +00:00
|
|
|
-D_KERNEL -DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}
|
1999-02-03 08:39:09 +00:00
|
|
|
CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}
|
|
|
|
CFLAGS+= ${CWARNFLAGS}
|
2002-10-03 16:20:14 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../.. -I.
|
1999-02-03 08:39:09 +00:00
|
|
|
|
|
|
|
# By default, if a serial port is going to be used as console, use COM1
|
|
|
|
# (aka /dev/ttyd0).
|
|
|
|
#BOOT_COMCONSOLE_PORT?=0x30
|
|
|
|
BOOT_COMCONSOLE_PORT?=0x238
|
|
|
|
BOOT_COMCONSOLE_CLK?=16
|
|
|
|
BOOT_COMCONSOLE_MODE=0x0c
|
|
|
|
CFLAGS+= -DCOMCONSOLE=${BOOT_COMCONSOLE_PORT} \
|
|
|
|
-DCOMCONSOLE_CLK=${BOOT_COMCONSOLE_CLK} \
|
|
|
|
-DCOMCONSOLE_MODE=${BOOT_COMCONSOLE_MODE}
|
|
|
|
|
|
|
|
# feature not implemented
|
|
|
|
BOOT_COMCONSOLE_SPEED?=9600
|
2002-05-26 10:11:17 +00:00
|
|
|
CFLAGS+= -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
|
1999-02-03 08:39:09 +00:00
|
|
|
|
|
|
|
# Enable code to take the default boot string from a fixed location on the
|
|
|
|
# disk. See nextboot(8) and README.386BSD for more info.
|
|
|
|
#CFLAGS+= -DNAMEBLOCK
|
|
|
|
#CFLAGS+= -DNAMEBLOCK_WRITEBACK
|
|
|
|
|
|
|
|
# Bias the conversion from the BIOS drive number to the FreeBSD unit number
|
|
|
|
# for hard disks. This may be useful for people booting in a mixed IDE/SCSI
|
|
|
|
# environment (set BOOT_HD_BIAS to the number of IDE drives).
|
|
|
|
#CFLAGS+= -DBOOT_HD_BIAS=1
|
|
|
|
#
|
|
|
|
# Details: this only applies if BOOT_HD_BIAS > 0. If the BIOS drive number
|
|
|
|
# for the boot drive is >= BOOT_HD_BIAS, then the boot drive is assumed to
|
|
|
|
# be SCSI and have unit number (BIOS_drive_number - BOOT_HD_BIAS). E.g.,
|
|
|
|
# BOOT_HD_BIAS=1 makes BIOS drive 1 correspond to 1:da(0,a) instead of
|
|
|
|
# 1:wd(1,a). If `da' is given explicitly, then the drive is assumed to be
|
|
|
|
# SCSI and have BIOS drive number (da_unit_number + BOOT_HD_BIAS). E.g.,
|
|
|
|
# BOOT_HD_BIAS=1 makes da(0,a) correspond to 1:da(0,a) instead of 0:da(0,a).
|
|
|
|
|
2003-01-30 14:50:25 +00:00
|
|
|
CLEANFILES+= boot.nohdr boot.strip boot.ldr boot1 boot2 sizetest
|
2004-02-09 16:01:45 +00:00
|
|
|
LDFLAGS+= -N -Ttext 0 -e start
|
1999-02-03 08:39:09 +00:00
|
|
|
NOSHARED= YES
|
|
|
|
NOMAN=
|
|
|
|
STRIP=
|
|
|
|
|
|
|
|
# tunable timeout parameter, waiting for keypress, calibrated in ms
|
|
|
|
BOOTWAIT?= 5000
|
|
|
|
# tunable timeout during string input, calibrated in ms
|
|
|
|
#TIMEOUT?= 30000
|
|
|
|
|
|
|
|
# Location that boot2 is loaded at
|
|
|
|
BOOTSEG= 0x1000
|
|
|
|
|
|
|
|
# Offset in BOOTSEG for the top of the stack, keep this 16 byte aligned
|
|
|
|
BOOTSTACK= 0xFFF0
|
|
|
|
|
2001-05-24 11:18:32 +00:00
|
|
|
boot.nohdr: boot
|
|
|
|
objcopy -S -O binary boot boot.nohdr
|
1999-02-03 08:39:09 +00:00
|
|
|
ls -l boot.nohdr
|
|
|
|
|
2003-01-30 14:50:25 +00:00
|
|
|
boot.ldr: boot.nohdr
|
|
|
|
dd if=boot.nohdr of=boot.ldr bs=8192 count=1 conv=sync
|
|
|
|
|
1999-02-03 08:39:09 +00:00
|
|
|
boot1: boot.nohdr
|
|
|
|
dd if=boot.nohdr of=boot1 bs=512 count=1
|
|
|
|
|
|
|
|
boot2: boot.nohdr
|
|
|
|
dd if=boot.nohdr of=boot2 bs=512 skip=1
|
|
|
|
@dd if=boot2 skip=14 of=sizetest 2> /dev/null
|
|
|
|
@if [ -s sizetest ] ; then \
|
|
|
|
echo "boot2 is too big" >&2 ; \
|
|
|
|
rm boot2 ; \
|
|
|
|
exit 2 ; \
|
|
|
|
fi
|
|
|
|
|
2003-01-30 14:50:25 +00:00
|
|
|
all: boot.ldr boot1 boot2
|
1999-02-03 08:39:09 +00:00
|
|
|
|
|
|
|
install:
|
2003-01-30 14:50:25 +00:00
|
|
|
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
|
|
boot.ldr ${DESTDIR}${BINDIR}/boot
|
2002-07-29 09:40:17 +00:00
|
|
|
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
1999-02-03 08:39:09 +00:00
|
|
|
boot1 boot2 ${DESTDIR}${BINDIR}
|
|
|
|
|
2002-10-03 16:20:14 +00:00
|
|
|
# If it's not there, don't consider it a target
|
|
|
|
.if exists(${.CURDIR}/../../../i386/include)
|
|
|
|
beforedepend ${OBJS}: machine
|
|
|
|
|
|
|
|
machine:
|
|
|
|
ln -sf ${.CURDIR}/../../../i386/include machine
|
|
|
|
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CLEANFILES+= machine
|
|
|
|
|
2003-03-02 21:18:40 +00:00
|
|
|
.include "${.CURDIR}/../../../conf/kern.mk"
|
1999-02-03 08:39:09 +00:00
|
|
|
.include <bsd.prog.mk>
|