Module Name: src
Committed By: jmmv
Date: Tue Dec 31 06:58:00 UTC 2024
Modified Files:
src/distrib/common/bootimage: Makefile.bootimage
Log Message:
Do not include tests in boot images if MKATF=no
To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/distrib/common/bootimage/Makefile.bootimage
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.bootimage
diff -u src/distrib/common/bootimage/Makefile.bootimage:1.41 src/distrib/common/bootimage/Makefile.bootimage:1.42
--- src/distrib/common/bootimage/Makefile.bootimage:1.41 Wed Jun 26 09:13:47 2024
+++ src/distrib/common/bootimage/Makefile.bootimage Tue Dec 31 06:58:00 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.bootimage,v 1.41 2024/06/26 09:13:47 martin Exp $
+# $NetBSD: Makefile.bootimage,v 1.42 2024/12/31 06:58:00 jmmv Exp $
#
# Copyright (c) 2009, 2010, 2011 Izumi Tsutsui. All rights reserved.
#
@@ -244,7 +244,10 @@ SWAPDISK_UUID=`${TOOL_GPT} ${GPT_TIMESTA
#
# definitions to create root fs
#
-SETS_DEFAULT= modules base etc comp games gpufw man misc rescue tests text
+SETS_DEFAULT= modules base etc comp games gpufw man misc rescue text
+.if ${MKATF} != "no"
+SETS_DEFAULT+= tests
+.endif
.if ${MKCOMPAT} != "no"
SETS_DEFAULT+= base32
.endif