1 # $NetBSD: Makefile.inc,v 1.2 2021/10/01 10:38:03 jmcneill Exp $ 2 # 3 # etc.riscv/Makefile.inc -- riscv-specific etc Makefile targets 4 # 5 6 KERNEL_SETS= GENERIC 7 EXTRA_KERNELS= INSTALL 8 9 .if ${MACHINE_ARCH} == "riscv64" && ${HAVE_UEFI} == "yes" 10 INSTALLATION_DIRS+= installation/misc 11 .endif 12 13 snap_md_post: 14 .if ${MACHINE_ARCH} == "riscv64" && ${HAVE_UEFI} == "yes" 15 cd ${KERNSRCDIR}/stand/efiboot/bootriscv64 && ${MAKE} release 16 ${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/misc '*.efi' 17 .endif 18 19 .include <bsd.own.mk> 20