7ab68eeadb
Several people reported having hardware that struggles booting the mix EFI+BIOS image, and it's better to offer them a working image. Keeping the EFI image as having the obvious name, this is going to become more likely to work by default as newer hardware may not support BIOS boot. (XXX pullup-9)
31 lines
562 B
Makefile
31 lines
562 B
Makefile
# $NetBSD: Makefile,v 1.15 2021/10/08 20:24:06 maya Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR=
|
|
SUBDIR+= ramdisks
|
|
SUBDIR+= .WAIT
|
|
SUBDIR+= instkernel
|
|
.if ${MKKMOD} != "no"
|
|
SUBDIR+= kmod
|
|
SUBDIR+= kmod-cgdroot
|
|
.endif
|
|
SUBDIR+= .WAIT
|
|
SUBDIR+= cdroms
|
|
SUBDIR+= liveimage
|
|
SUBDIR+= installimage
|
|
SUBDIR+= installimage-bios
|
|
TARGETS+= release
|
|
|
|
iso_image:
|
|
${MAKEDIRTARGET} cdroms iso_image
|
|
|
|
live_image:
|
|
${MAKEDIRTARGET} liveimage live_image
|
|
|
|
install_image:
|
|
${MAKEDIRTARGET} installimage install_image
|
|
${MAKEDIRTARGET} installimage-bios install_image
|
|
|
|
.include <bsd.subdir.mk>
|