Make the installer more useful, by allowing it to create a bootable installation. Also, enable the menu option for ZFS-on-root. Like arm64, RISC-V boots by UEFI only, so arm64's partedit implementation is renamed and shared among the two platforms. Reviewed by: gjb MFC after: 5 days Differential Revision: https://reviews.freebsd.org/D28180
27 lines
642 B
Makefile
27 lines
642 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR= ${LIBEXECDIR}/bsdinstall
|
|
PROG= partedit
|
|
LINKS= ${BINDIR}/partedit ${BINDIR}/autopart \
|
|
${BINDIR}/partedit ${BINDIR}/scriptedpart
|
|
SYMLINKS= ../libexec/bsdinstall/partedit /usr/sbin/sade
|
|
LIBADD+= geom ncursesw util dialog m
|
|
|
|
PARTEDIT_ARCH= ${MACHINE}
|
|
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
|
|
PARTEDIT_ARCH= x86
|
|
.elif ${MACHINE} == "arm64" || ${MACHINE} == "riscv"
|
|
PARTEDIT_ARCH= efi
|
|
.endif
|
|
.if !exists(partedit_${PARTEDIT_ARCH}.c)
|
|
PARTEDIT_ARCH= generic
|
|
.endif
|
|
|
|
SRCS= diskeditor.c partedit.c gpart_ops.c partedit_${PARTEDIT_ARCH}.c \
|
|
part_wizard.c scripted.c
|
|
|
|
WARNS?= 3
|
|
MAN= sade.8
|
|
|
|
.include <bsd.prog.mk>
|