Module Name: src
Committed By: jmcneill
Date: Sat Oct 16 14:05:48 UTC 2021
Modified Files:
src/distrib/utils/embedded/conf: arm64.conf
Log Message:
Background dhcpcd if ec2_init is not enabled to speed up boot.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/distrib/utils/embedded/conf/arm64.conf
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/utils/embedded/conf/arm64.conf
diff -u src/distrib/utils/embedded/conf/arm64.conf:1.13 src/distrib/utils/embedded/conf/arm64.conf:1.14
--- src/distrib/utils/embedded/conf/arm64.conf:1.13 Thu Jul 1 17:32:07 2021
+++ src/distrib/utils/embedded/conf/arm64.conf Sat Oct 16 14:05:48 2021
@@ -1,4 +1,4 @@
-# $NetBSD: arm64.conf,v 1.13 2021/07/01 17:32:07 jmcneill Exp $
+# $NetBSD: arm64.conf,v 1.14 2021/10/16 14:05:48 jmcneill Exp $
# ARM64 customization script used by mkimage
#
board=arm64
@@ -31,6 +31,8 @@ wscons=\$(dev_exists wsdisplay0)
ec2_init=\$(dev_exists ena0)
if checkyesno ec2_init ; then
dhcpcd_flags="\$dhcpcd_flags -w"
+else
+ dhcpcd_flags="\$dhcpcd_flags -b"
fi
EOF
}