Module Name: src
Committed By: jmcneill
Date: Thu May 28 15:12:03 UTC 2020
Modified Files:
src/distrib/common/bootimage: Makefile.installimage
Log Message:
Default USE_MBR to no
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/distrib/common/bootimage/Makefile.installimage
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/common/bootimage/Makefile.installimage
diff -u src/distrib/common/bootimage/Makefile.installimage:1.6 src/distrib/common/bootimage/Makefile.installimage:1.7
--- src/distrib/common/bootimage/Makefile.installimage:1.6 Thu Nov 21 22:29:03 2019
+++ src/distrib/common/bootimage/Makefile.installimage Thu May 28 15:12:03 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.installimage,v 1.6 2019/11/21 22:29:03 joerg Exp $
+# $NetBSD: Makefile.installimage,v 1.7 2020/05/28 15:12:03 jmcneill Exp $
#
# Common Makefile to create a bootable installation image for USB flash etc.
#
@@ -36,6 +36,8 @@ SETS?= modules base etc
FSTAB_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/fstab.install.in
+USE_MBR?= no
+
.if ${USE_MBR} != "no"
DISKPROTO_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/diskproto.noswap.mbr.in
.else