Makefile revision 104412
1# $FreeBSD: head/sys/boot/pc98/boot2/Makefile 104412 2002-10-03 16:20:14Z nyan $
2#
3
4PROG=	boot
5# Order is very important on the SRCS line for this prog
6SRCS=	start.S table.c boot2.S boot.c asm.S bios.S serial.S
7SRCS+=	probe_keyboard.c io.c disk.c sys.c
8
9BINDIR=		/boot
10BINMODE=	444
11CFLAGS=		-elf -Os -mrtd \
12		-ffreestanding -fno-builtin -fno-guess-branch-probability \
13		-D_KERNEL -DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}
14CFLAGS+=	-DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}
15CFLAGS+=	${CWARNFLAGS}
16CFLAGS+=	-I${.CURDIR}/../../.. -I.
17
18
19# By default, if a serial port is going to be used as console, use COM1
20# (aka /dev/ttyd0).
21#BOOT_COMCONSOLE_PORT?=0x30
22BOOT_COMCONSOLE_PORT?=0x238
23BOOT_COMCONSOLE_CLK?=16
24BOOT_COMCONSOLE_MODE=0x0c
25CFLAGS+=	-DCOMCONSOLE=${BOOT_COMCONSOLE_PORT} \
26		-DCOMCONSOLE_CLK=${BOOT_COMCONSOLE_CLK} \
27		-DCOMCONSOLE_MODE=${BOOT_COMCONSOLE_MODE}
28
29# feature not implemented
30BOOT_COMCONSOLE_SPEED?=9600
31CFLAGS+=	-DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
32
33# Enable code to take the default boot string from a fixed location on the
34# disk.  See nextboot(8) and README.386BSD for more info.
35#CFLAGS+=	-DNAMEBLOCK
36#CFLAGS+=	-DNAMEBLOCK_WRITEBACK
37
38# Bias the conversion from the BIOS drive number to the FreeBSD unit number
39# for hard disks.  This may be useful for people booting in a mixed IDE/SCSI
40# environment (set BOOT_HD_BIAS to the number of IDE drives).
41#CFLAGS+=	-DBOOT_HD_BIAS=1
42#
43# Details: this only applies if BOOT_HD_BIAS > 0.  If the BIOS drive number
44# for the boot drive is >= BOOT_HD_BIAS, then the boot drive is assumed to
45# be SCSI and have unit number (BIOS_drive_number - BOOT_HD_BIAS).  E.g.,
46# BOOT_HD_BIAS=1 makes BIOS drive 1 correspond to 1:da(0,a) instead of
47# 1:wd(1,a).  If `da' is given explicitly, then the drive is assumed to be
48# SCSI and have BIOS drive number (da_unit_number + BOOT_HD_BIAS).  E.g.,
49# BOOT_HD_BIAS=1 makes da(0,a) correspond to 1:da(0,a) instead of 0:da(0,a).
50
51CLEANFILES+=	boot.nohdr boot.strip boot1 boot2 sizetest
52LDFLAGS+=	-N -Ttext 0 -nostdlib -e start
53NOSHARED=	YES
54NOMAN=
55STRIP=
56
57# tunable timeout parameter, waiting for keypress, calibrated in ms
58BOOTWAIT?=	5000
59# tunable timeout during string input, calibrated in ms
60#TIMEOUT?=	30000
61
62# Location that boot2 is loaded at
63BOOTSEG=	0x1000
64
65# Offset in BOOTSEG for the top of the stack, keep this 16 byte aligned
66BOOTSTACK=	0xFFF0
67
68boot.nohdr:	boot
69	objcopy -S -O binary boot boot.nohdr
70	ls -l boot.nohdr
71
72boot1:		boot.nohdr
73	dd if=boot.nohdr of=boot1 bs=512 count=1
74
75boot2:		boot.nohdr
76	dd if=boot.nohdr of=boot2 bs=512 skip=1
77	@dd if=boot2 skip=14 of=sizetest 2> /dev/null
78	@if [ -s sizetest ] ; then \
79		echo "boot2 is too big" >&2 ; \
80		rm boot2 ; \
81		exit 2 ; \
82	fi
83
84all:		boot1 boot2
85
86install:
87	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
88		boot1 boot2 ${DESTDIR}${BINDIR}
89
90# If it's not there, don't consider it a target
91.if exists(${.CURDIR}/../../../i386/include)
92beforedepend ${OBJS}: machine
93
94machine:
95	ln -sf ${.CURDIR}/../../../i386/include machine
96
97.endif
98
99CLEANFILES+=	machine
100
101.include <bsd.kern.mk>
102.include <bsd.prog.mk>
103