]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/i386/gptzfsboot/Makefile
loader: support com.delphix:removing
[FreeBSD/FreeBSD.git] / stand / i386 / gptzfsboot / Makefile
1 # $FreeBSD$
2
3 .include <bsd.init.mk>
4
5 .PATH:          ${BOOTSRC}/i386/boot2 ${BOOTSRC}/i386/gptboot \
6                 ${BOOTSRC}/i386/zfsboot ${BOOTSRC}/i386/common \
7                 ${SASRC}
8
9 FILES=          gptzfsboot
10 MAN=            gptzfsboot.8
11
12 BOOT_COMCONSOLE_PORT?= 0x3f8
13 BOOT_COMCONSOLE_SPEED?= 9600
14 B2SIOFMT?=      0x3
15
16 REL1=   0x700
17 ORG1=   0x7c00
18 ORG2=   0x0
19
20 CFLAGS+=-DBOOTPROG=\"gptzfsboot\" \
21         -O1 \
22         -DGPT -DZFS -DBOOT2 \
23         -DSIOPRT=${BOOT_COMCONSOLE_PORT} \
24         -DSIOFMT=${B2SIOFMT} \
25         -DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
26         -I${LDRSRC} \
27         -I${BOOTSRC}/i386/common \
28         -I${ZFSSRC} \
29         -I${SYSDIR}/crypto/skein \
30         -I${SYSDIR}/cddl/boot/zfs \
31         -I${SYSDIR}/cddl/contrib/opensolaris/uts/common \
32         -I${BOOTSRC}/i386/btx/lib \
33         -I${BOOTSRC}/i386/boot2 \
34         -Wall -Waggregate-return -Wbad-function-cast \
35         -Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
36         -Wpointer-arith -Wshadow -Wstrict-prototypes -Wwrite-strings \
37         -Wno-pointer-sign
38
39 CFLAGS.clang+=  -Wno-tentative-definition-incomplete-type
40
41 NO_WCAST_ALIGN=
42
43 CFLAGS.gcc+=    --param max-inline-insns-single=100
44
45 LD_FLAGS+=${LD_FLAGS_BIN}
46
47 CLEANFILES+=    gptzfsboot
48
49 gptzfsboot: gptldr.bin gptzfsboot.bin ${BTXKERN}
50         btxld -v -E ${ORG2} -f bin -b ${BTXKERN} -l gptldr.bin \
51             -o ${.TARGET} gptzfsboot.bin
52
53 CLEANFILES+=    gptldr.bin gptldr.out gptldr.o
54
55 gptldr.bin: gptldr.out
56         ${OBJCOPY} -S -O binary gptldr.out ${.TARGET}
57
58 gptldr.out: gptldr.o
59         ${LD} ${LD_FLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} gptldr.o
60
61 CLEANFILES+=    gptzfsboot.bin gptzfsboot.out zfsboot.o sio.o cons.o \
62                 drv.o gpt.o ${OPENCRYPTO_XTS}
63
64 gptzfsboot.bin: gptzfsboot.out
65         ${OBJCOPY} -S -O binary gptzfsboot.out ${.TARGET}
66
67 gptzfsboot.out: ${BTXCRT} zfsboot.o sio.o gpt.o drv.o cons.o \
68         ${OPENCRYPTO_XTS}
69         ${LD} ${LD_FLAGS} -Ttext ${ORG2} -o ${.TARGET} ${.ALLSRC} ${LIBSA32}
70
71 zfsboot.o: ${ZFSSRC}/zfsimpl.c
72
73 .include <bsd.prog.mk>
74
75 # XXX: clang integrated-as doesn't grok .codeNN directives yet
76 CFLAGS.gptldr.S=        ${CLANG_NO_IAS}