Makefile revision 275030
150477Speter# $FreeBSD: head/sys/boot/i386/boot2/Makefile 272249 2014-09-28 12:12:54Z nyan $
240269Srnordier
3211571Srpaulo.include <bsd.own.mk>
4211571Srpaulo
5125537SruFILES=		boot boot1 boot2
640326Srnordier
780751SjhbNM?=		nm
880751Sjhb
948919Srnordier# A value of 0x80 enables LBA support.
10134382SyarBOOT_BOOT1_FLAGS?=	0x80
1148919Srnordier
1242480SrnordierBOOT_COMCONSOLE_PORT?= 0x3f8
1342480SrnordierBOOT_COMCONSOLE_SPEED?= 9600
1440541SrnordierB2SIOFMT?=	0x3
1540541Srnordier
16104673SgreenREL1=	0x700
1740269SrnordierORG1=	0x7c00
18104683SjhbORG2=	0x2000
1940269Srnordier
20125537Sru# Decide level of UFS support.
21108000SimpBOOT2_UFS?=	UFS1_AND_UFS2
22125537Sru#BOOT2_UFS?=	UFS2_ONLY
23125537Sru#BOOT2_UFS?=	UFS1_ONLY
24104635Sphk
25125566SruCFLAGS=	-Os \
26132870Skan	-fomit-frame-pointer \
2796327Sjhb	-mrtd \
28220337Srdivacky	-mregparm=3 \
29221177Sjhb	-DUSE_XREAD \
30107879Sphk	-D${BOOT2_UFS} \
31134382Syar	-DFLAGS=${BOOT_BOOT1_FLAGS} \
32125932Sru	-DSIOPRT=${BOOT_COMCONSOLE_PORT} \
33125932Sru	-DSIOFMT=${B2SIOFMT} \
34125932Sru	-DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
3597860Sphk	-I${.CURDIR}/../../common \
3696306Sobrien	-I${.CURDIR}/../btx/lib -I. \
3740269Srnordier	-Wall -Waggregate-return -Wbad-function-cast -Wcast-align \
3840269Srnordier	-Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
39169732Skan	-Wpointer-arith -Wshadow -Wstrict-prototypes -Wwrite-strings \
40272249Snyan	-Winline
4140269Srnordier
42259913SdimCFLAGS.gcc+=	-fno-guess-branch-probability \
43259913Sdim		-fno-unit-at-a-time \
44259913Sdim		-mno-align-long-strings \
45260334Sdim		--param max-inline-insns-single=100
46259913Sdim
47265400SimpCFLAGS.clang+=${CLANG_OPT_SMALL}
48265400Simp
49260095SdimLD_FLAGS=-static -N --gc-sections
5040269Srnordier
51125537Sru# Pick up ../Makefile.inc early.
52125537Sru.include <bsd.init.mk>
5340269Srnordier
54125537SruCLEANFILES=	boot
55125537Sru
56109886Sphkboot: boot1 boot2
57109886Sphk	cat boot1 boot2 > boot
58109886Sphk
59125537SruCLEANFILES+=	boot1 boot1.out boot1.o
60125537Sru
6140269Srnordierboot1: boot1.out
6240308Srnordier	objcopy -S -O binary boot1.out ${.TARGET}
6340269Srnordier
6440269Srnordierboot1.out: boot1.o
65260095Sdim	${LD} ${LD_FLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} boot1.o
6640269Srnordier
67125537SruCLEANFILES+=	boot2 boot2.ld boot2.ldr boot2.bin boot2.out boot2.o \
68125537Sru		boot2.s boot2.s.tmp boot2.h sio.o
6996424Speter
70125537Sruboot2: boot2.ld
71125537Sru	@set -- `ls -l boot2.ld`; x=$$((7680-$$5)); \
72125537Sru	    echo "$$x bytes available"; test $$x -ge 0
73125537Sru	dd if=boot2.ld of=${.TARGET} obs=7680 conv=osync
7480751Sjhb
75125537Sruboot2.ld: boot2.ldr boot2.bin ${BTXKERN}
76125537Sru	btxld -v -E ${ORG2} -f bin -b ${BTXKERN} -l boot2.ldr \
77125537Sru	    -o ${.TARGET} -P 1 boot2.bin
7840269Srnordier
7940269Srnordierboot2.ldr:
80189500Smarcel	dd if=/dev/zero of=${.TARGET} bs=512 count=1
8140269Srnordier
8240269Srnordierboot2.bin: boot2.out
8340308Srnordier	objcopy -S -O binary boot2.out ${.TARGET}
8440269Srnordier
85125537Sruboot2.out: ${BTXCRT} boot2.o sio.o
86260095Sdim	${LD} ${LD_FLAGS} -Ttext ${ORG2} -o ${.TARGET} ${.ALLSRC}
8740269Srnordier
88125537Sruboot2.o: boot2.s
89224131Sdim	${CC} ${ACFLAGS} -c boot2.s
9080751Sjhb
91125564SruSRCS=	boot2.c boot2.h
92125564Sru
93125537Sruboot2.s: boot2.c boot2.h ${.CURDIR}/../../common/ufsread.c
94125537Sru	${CC} ${CFLAGS} -S -o boot2.s.tmp ${.CURDIR}/boot2.c
95125537Sru	sed -e '/align/d' -e '/nop/d' < boot2.s.tmp > boot2.s
96125537Sru	rm -f boot2.s.tmp
9740404Srnordier
98125537Sruboot2.h: boot1.out
99125537Sru	${NM} -t d ${.ALLSRC} | awk '/([0-9])+ T xread/ \
100125537Sru	    { x = $$1 - ORG1; \
101125537Sru	    printf("#define XREADORG %#x\n", REL1 + x) }' \
102125537Sru	    ORG1=`printf "%d" ${ORG1}` \
103125537Sru	    REL1=`printf "%d" ${REL1}` > ${.TARGET}
10440326Srnordier
105211677Simp.if ${MACHINE_CPUARCH} == "amd64"
106125581Srubeforedepend boot2.s: machine
107125556SruCLEANFILES+=	machine
108116864Spetermachine:
109116864Speter	ln -sf ${.CURDIR}/../../../i386/include machine
110116864Speter.endif
111116864Speter
112125537Sru.include <bsd.prog.mk>
113232263Sdim
114232263Sdim# XXX: clang integrated-as doesn't grok .codeNN directives yet
115232263SdimCFLAGS.boot1.S=		${CLANG_NO_IAS}
116232263SdimCFLAGS+=		${CFLAGS.${.IMPSRC:T}}
117