1 # $FreeBSD: src/sys/boot/i386/boot2/Makefile,v 1.47 2003/06/26 03:51:57 peter Exp $
2 # $DragonFly: src/sys/boot/i386/boot2/Attic/Makefile,v 1.10 2004/07/27 19:37:17 dillon Exp $
9 CLEANFILES= boot boot1 boot1.out boot1.o \
10 boot2.ldr boot2.bin boot2.ld boot2.out boot2.o boot2.h \
19 # A value of 0x80 enables LBA support.
22 BOOT_COMCONSOLE_PORT?= 0x3f8
23 BOOT_COMCONSOLE_SPEED?= 9600
26 .if exists(${.OBJDIR}/../btx)
27 BTX= ${.OBJDIR}/../btx
29 BTX= ${.CURDIR}/../btx
32 # These origins are taken from bootasm.h.
34 REL1 = `${.OBJDIR}/bootasmdef.nx BOOT1_ORIGIN`
35 REL1D = `${.OBJDIR}/bootasmdef.nx -d BOOT1_ORIGIN`
36 ORG1 = `${.OBJDIR}/bootasmdef.nx MEM_BIOS_LADDR`
37 ORG1D = `${.OBJDIR}/bootasmdef.nx -d MEM_BIOS_LADDR`
39 # WARNING! The ORG2 calculation is the origin of boot2.bin relative to
40 # the start of the BTX *USER* address space, not the start of physical
43 ORG2= `${.OBJDIR}/bootasmdef.nx BOOT2_VORIGIN`
45 # Decide Level of UFS support. UFS1_AND_UFS2 doesn't fit.
47 # BOOT2_UFS?= UFS2_ONLY
48 #BOOT2_UFS?= UFS1_AND_UFS2
52 # -fno-guess-branch-probability
53 # -mno-align-long-strings
55 CFLAGS= -elf -ffreestanding -Os -fno-builtin -fno-stack-protector \
56 -fomit-frame-pointer \
59 -I${.CURDIR}/../../common \
60 -I${.CURDIR}/../btx/lib -I. \
61 -Wall -Waggregate-return -Wbad-function-cast -Wcast-align \
62 -Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
63 -Wpointer-arith -Wshadow -Wstrict-prototypes -Wwrite-strings
65 LDFLAGS=-nostdlib -static -N --gc-sections
70 cat boot1 boot2 > boot
73 objcopy -S -O binary boot1.out ${.TARGET}
75 boot1.out: boot1.o bootasmdef.nx
76 ${LD} ${LDFLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} boot1.o
79 ${CC} ${CFLAGS} -DFLAGS=${B1FLAGS} ${AFLAGS} \
80 ${.IMPSRC} -o ${.TARGET} -c
82 boot2.o: boot2.c ${.CURDIR}/../../common/ufsread.c
83 ${CC} ${CFLAGS} -S -o boot2.s.tmp ${.IMPSRC}
84 sed -e '/align/d' -e '/nop/d' < boot2.s.tmp > boot2.s
86 ${AS} ${AFLAGS} -o boot2.o boot2.s
88 boot2.h: boot1.out bootasmdef.nx
89 @echo "NOTE: boot2 using xread from boot1 at ${REL1}"
90 ${NM} -t d ${.ALLSRC} | awk '/([0-9])+ T xread/ \
92 printf("#define XREADORG %#x\n", REL1 + x) }' \
93 ORG1=${ORG1D} REL1=${REL1D} > boot2.h
95 boot2: boot2.ldr boot2.bin ${BTX}/btx/btx
96 btxld -v -E ${ORG2} -f bin -b ${BTX}/btx/btx -l boot2.ldr \
97 -o boot2.ld -P 1 boot2.bin
98 @ls -l boot2.ld | awk '{ x = 7680 - $$5; \
99 print x " bytes available"; if (x < 0) exit 1 }'
100 dd if=boot2.ld of=${.TARGET} obs=7680 conv=osync 2>/dev/null
103 dd if=/dev/zero of=${.TARGET} bs=512 count=1 2>/dev/null
106 objcopy -S -O binary boot2.out ${.TARGET}
108 boot2.out: boot2.o sio.o
109 ${LD} ${LDFLAGS} -Ttext ${ORG2} -o ${.TARGET} \
110 ${BTX}/lib/crt0.o ${.ALLSRC}
115 ${CC} -DSIOPRT=${BOOT_COMCONSOLE_PORT} -DSIOFMT=${B2SIOFMT} \
116 -DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
117 ${AFLAGS} ${.IMPSRC} -o ${.TARGET} -c
120 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
121 boot ${DESTDIR}${BINDIR}/boot
122 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
123 boot1 ${DESTDIR}${BINDIR}/boot1
124 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
125 boot2 ${DESTDIR}${BINDIR}/boot2
127 .include <bsd.prog.mk>
129 .if defined(REALLY_AMD64)
132 beforedepend ${OBJS}: machine
135 ln -sf ${.CURDIR}/../../../i386/include machine
140 CLEANFILES+= bootasmdef.nx