Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/common/bootimage bootimage: allow appending addition...



details:   https://anonhg.NetBSD.org/src/rev/f400ad4ad256
branches:  trunk
changeset: 1022533:f400ad4ad256
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Sat Jul 24 13:59:28 2021 +0000

description:
bootimage: allow appending additional rc.conf options

If RC_CONF_EXTRA is defined, append the contents of this file to the
target file-system's rc.conf

diffstat:

 distrib/common/bootimage/Makefile.bootimage |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r 4d66a527a705 -r f400ad4ad256 distrib/common/bootimage/Makefile.bootimage
--- a/distrib/common/bootimage/Makefile.bootimage       Sat Jul 24 13:42:05 2021 +0000
+++ b/distrib/common/bootimage/Makefile.bootimage       Sat Jul 24 13:59:28 2021 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.bootimage,v 1.27 2021/06/04 17:09:36 tsutsui Exp $
+#      $NetBSD: Makefile.bootimage,v 1.28 2021/07/24 13:59:28 jmcneill Exp $
 #
 # Copyright (c) 2009, 2010, 2011 Izumi Tsutsui.  All rights reserved.
 #
@@ -366,6 +366,10 @@
        @echo Setting savecore=NO in /etc/rc.conf ...
        echo "savecore=NO" >> ${WORKRCCONF}
 .endif
+.if defined(RC_CONF_EXTRA)
+       @echo Adding contents of ${RC_CONF_EXTRA} to /etc/rc.conf ...
+       cat ${RC_CONF_EXTRA} >> ${WORKRCCONF}
+.endif
        ${INSTALL} ${COPY} -m 0644 ${WORKRCCONF} ${WORKDIR}/etc/rc.conf
 .if defined(IMGDIR_EXTRA)
        @echo Copying extra dirs...



Home | Main Index | Thread Index | Old Index