xref: /freebsd/stand/i386/zfsboot/Makefile (revision 780fb4a2fa9a9aee5ac48a60b790f567c0dc13e9)
1# $FreeBSD$
2
3HAVE_GELI=yes
4
5.include <bsd.init.mk>
6
7.PATH:		${BOOTSRC}/i386/boot2 ${BOOTSRC}/i386/common ${SASRC}
8
9FILES=		zfsboot
10MAN=		zfsboot.8
11
12NM?=		nm
13
14BOOT_COMCONSOLE_PORT?= 0x3f8
15BOOT_COMCONSOLE_SPEED?= 9600
16B2SIOFMT?=	0x3
17
18REL1=	0x700
19ORG1=	0x7c00
20ORG2=	0x2000
21
22CFLAGS+=-DBOOTPROG=\"zfsboot\" \
23	-O1 \
24	-DZFS -DBOOT2 \
25	-DSIOPRT=${BOOT_COMCONSOLE_PORT} \
26	-DSIOFMT=${B2SIOFMT} \
27	-DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
28	-I${LDRSRC} \
29	-I${BOOTSRC}/i386/common \
30	-I${BOOTSRC}/i386 \
31	-I${ZFSSRC} \
32	-I${SYSDIR}/crypto/skein \
33	-I${SYSDIR}/cddl/boot/zfs \
34	-I${BOOTSRC}/i386/boot2 \
35	-Wall -Waggregate-return -Wbad-function-cast -Wno-cast-align \
36	-Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
37	-Wpointer-arith -Wshadow -Wstrict-prototypes -Wwrite-strings
38
39CFLAGS.gcc+=	--param max-inline-insns-single=100
40
41LD_FLAGS+=${LD_FLAGS_BIN}
42
43CLEANFILES+=	zfsboot
44
45zfsboot: zfsboot1 zfsboot2
46	cat zfsboot1 zfsboot2 > zfsboot
47
48CLEANFILES+=	zfsboot1 zfsldr.out zfsldr.o
49
50zfsboot1: zfsldr.out
51	${OBJCOPY} -S -O binary zfsldr.out ${.TARGET}
52
53zfsldr.out: zfsldr.o
54	${LD} ${LD_FLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} zfsldr.o
55
56CLEANFILES+=	zfsboot2 zfsboot.ld zfsboot.ldr zfsboot.bin zfsboot.out \
57		zfsboot.o zfsboot.s zfsboot.s.tmp sio.o cons.o drv.o
58
59# We currently allow 256k bytes for zfsboot - in practice it could be
60# any size up to 3.5Mb but keeping it fixed size simplifies zfsldr.
61#
62BOOT2SIZE=	262144
63
64zfsboot2: zfsboot.ld
65	@set -- `ls -l ${.ALLSRC}`; x=$$((${BOOT2SIZE}-$$5)); \
66	    echo "$$x bytes available"; test $$x -ge 0
67	${DD} if=${.ALLSRC} of=${.TARGET} obs=${BOOT2SIZE} conv=osync
68
69zfsboot.ld: zfsboot.ldr zfsboot.bin ${BTXKERN}
70	btxld -v -E ${ORG2} -f bin -b ${BTXKERN} -l zfsboot.ldr \
71	    -o ${.TARGET} -P 1 zfsboot.bin
72
73zfsboot.ldr:
74	cp /dev/null ${.TARGET}
75
76zfsboot.bin: zfsboot.out
77	${OBJCOPY} -S -O binary zfsboot.out ${.TARGET}
78
79zfsboot.out: ${BTXCRT} zfsboot.o sio.o drv.o cons.o
80	${LD} ${LD_FLAGS} -Ttext ${ORG2} -o ${.TARGET} ${.ALLSRC} ${LIBSA32}
81
82SRCS=	zfsboot.c
83
84.include <bsd.prog.mk>
85
86# XXX: clang integrated-as doesn't grok .codeNN directives yet
87CFLAGS.zfsldr.S=	${CLANG_NO_IAS}
88