]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/i386/zfsboot/Makefile
MFC r336084-r336085, r336118: Move zfs impl into libsa
[FreeBSD/FreeBSD.git] / stand / i386 / zfsboot / Makefile
1 # $FreeBSD$
2
3 HAVE_GELI=yes
4
5 .include <bsd.init.mk>
6
7 .PATH:          ${BOOTSRC}/i386/boot2 ${BOOTSRC}/i386/common ${SASRC}
8
9 FILES=          zfsboot
10 MAN=            zfsboot.8
11
12 NM?=            nm
13
14 BOOT_COMCONSOLE_PORT?= 0x3f8
15 BOOT_COMCONSOLE_SPEED?= 9600
16 B2SIOFMT?=      0x3
17
18 REL1=   0x700
19 ORG1=   0x7c00
20 ORG2=   0x2000
21
22 CFLAGS+=-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
39 CFLAGS.gcc+=    --param max-inline-insns-single=100
40
41 LD_FLAGS+=${LD_FLAGS_BIN}
42
43 CLEANFILES+=    zfsboot
44
45 zfsboot: zfsboot1 zfsboot2
46         cat zfsboot1 zfsboot2 > zfsboot
47
48 CLEANFILES+=    zfsboot1 zfsldr.out zfsldr.o
49
50 zfsboot1: zfsldr.out
51         ${OBJCOPY} -S -O binary zfsldr.out ${.TARGET}
52
53 zfsldr.out: zfsldr.o
54         ${LD} ${LD_FLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} zfsldr.o
55
56 CLEANFILES+=    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
62 BOOT2SIZE=      262144
63
64 zfsboot2: 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
69 zfsboot.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
73 zfsboot.ldr:
74         cp /dev/null ${.TARGET}
75
76 zfsboot.bin: zfsboot.out
77         ${OBJCOPY} -S -O binary zfsboot.out ${.TARGET}
78
79 zfsboot.out: ${BTXCRT} zfsboot.o sio.o drv.o cons.o
80         ${LD} ${LD_FLAGS} -Ttext ${ORG2} -o ${.TARGET} ${.ALLSRC} ${LIBSA32}
81
82 SRCS=   zfsboot.c
83
84 .include <bsd.prog.mk>
85
86 # XXX: clang integrated-as doesn't grok .codeNN directives yet
87 CFLAGS.zfsldr.S=        ${CLANG_NO_IAS}