1020003cc6
MFC after: 3 days Sponsored by: Dell EMC Isilon
105 lines
2.7 KiB
Makefile
105 lines
2.7 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../boot2 ${.CURDIR}/../gptboot \
|
|
${.CURDIR}/../zfsboot ${.CURDIR}/../common \
|
|
${.CURDIR}/../../common ${.CURDIR}/../../../crypto/skein
|
|
|
|
FILES= gptzfsboot
|
|
MAN= gptzfsboot.8
|
|
|
|
NM?= nm
|
|
|
|
BOOT_COMCONSOLE_PORT?= 0x3f8
|
|
BOOT_COMCONSOLE_SPEED?= 9600
|
|
B2SIOFMT?= 0x3
|
|
|
|
REL1= 0x700
|
|
ORG1= 0x7c00
|
|
ORG2= 0x0
|
|
|
|
CFLAGS= -DBOOTPROG=\"gptzfsboot\" \
|
|
-O1 \
|
|
-DGPT -DZFS -DBOOT2 \
|
|
-DSIOPRT=${BOOT_COMCONSOLE_PORT} \
|
|
-DSIOFMT=${B2SIOFMT} \
|
|
-DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
|
|
-I${.CURDIR}/../../common \
|
|
-I${.CURDIR}/../common \
|
|
-I${.CURDIR}/../../zfs \
|
|
-I${.CURDIR}/../../../cddl/boot/zfs \
|
|
-I${.CURDIR}/../../../crypto/skein \
|
|
-I${.CURDIR}/../btx/lib -I. \
|
|
-I${.CURDIR}/../boot2 \
|
|
-I${.CURDIR}/../../.. \
|
|
-Wall -Waggregate-return -Wbad-function-cast \
|
|
-Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
|
|
-Wpointer-arith -Wshadow -Wstrict-prototypes -Wwrite-strings \
|
|
-Winline -Wno-pointer-sign
|
|
|
|
NO_WCAST_ALIGN=
|
|
|
|
.if ${COMPILER_TYPE} == "clang" || \
|
|
(${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} > 40201)
|
|
CFLAGS+= -Wno-tentative-definition-incomplete-type
|
|
.endif
|
|
|
|
# Do not unroll skein loops, reduce code size
|
|
CFLAGS+= -DSKEIN_LOOP=111
|
|
|
|
.if !defined(LOADER_NO_GELI_SUPPORT)
|
|
CFLAGS+= -DLOADER_GELI_SUPPORT
|
|
CFLAGS+= -I${.CURDIR}/../../geli
|
|
LIBGELIBOOT= ${.OBJDIR}/../../geli/libgeliboot.a
|
|
.PATH: ${.CURDIR}/../../../opencrypto
|
|
OPENCRYPTO_XTS= xform_aes_xts.o
|
|
.endif
|
|
|
|
CFLAGS.gcc+= --param max-inline-insns-single=100
|
|
|
|
LD_FLAGS=${LD_FLAGS_BIN}
|
|
|
|
LIBSTAND= ${.OBJDIR}/../../libstand32/libstand.a
|
|
|
|
# Pick up ../Makefile.inc early.
|
|
.include <bsd.init.mk>
|
|
|
|
CLEANFILES= gptzfsboot
|
|
|
|
gptzfsboot: gptldr.bin gptzfsboot.bin ${BTXKERN}
|
|
btxld -v -E ${ORG2} -f bin -b ${BTXKERN} -l gptldr.bin \
|
|
-o ${.TARGET} gptzfsboot.bin
|
|
|
|
CLEANFILES+= gptldr.bin gptldr.out gptldr.o
|
|
|
|
gptldr.bin: gptldr.out
|
|
${OBJCOPY} -S -O binary gptldr.out ${.TARGET}
|
|
|
|
gptldr.out: gptldr.o
|
|
${LD} ${LD_FLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} gptldr.o
|
|
|
|
CLEANFILES+= gptzfsboot.bin gptzfsboot.out zfsboot.o sio.o cons.o \
|
|
drv.o gpt.o util.o skein.o skein_block.o ${OPENCRYPTO_XTS}
|
|
|
|
gptzfsboot.bin: gptzfsboot.out
|
|
${OBJCOPY} -S -O binary gptzfsboot.out ${.TARGET}
|
|
|
|
gptzfsboot.out: ${BTXCRT} zfsboot.o sio.o gpt.o drv.o cons.o util.o \
|
|
skein.o skein_block.o ${OPENCRYPTO_XTS}
|
|
${LD} ${LD_FLAGS} -Ttext ${ORG2} -o ${.TARGET} ${.ALLSRC} ${LIBGELIBOOT} ${LIBSTAND}
|
|
|
|
zfsboot.o: ${.CURDIR}/../../zfs/zfsimpl.c
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
beforedepend zfsboot.o: machine
|
|
CLEANFILES+= machine
|
|
machine: .NOMETA
|
|
ln -sf ${.CURDIR}/../../../i386/include machine
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
# XXX: clang integrated-as doesn't grok .codeNN directives yet
|
|
CFLAGS.gptldr.S= ${CLANG_NO_IAS}
|