Move creation of rc.conf to earlier so it winds up in /conf/boot/etc

With this change we mostly boot w/o errors on RPi-B for an
image cross built w/o privs. Other systems to follow.

Release Notes: Yes
This commit is contained in:
Warner Losh 2015-12-24 01:48:40 +00:00
parent d3ee0a15a4
commit 6e0601e970
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292677

View File

@ -431,6 +431,24 @@ $var=$val"
fi
done
typical_embedded ( ) (
# Need to create rc.conf before we copy over /etc to /conf/base/etc
# so now's a good time.
local rc=${NANO_WORLDDIR}/etc/rc.conf
echo "hostname=nanobsd-${NANO_NAME}" > $rc
echo "growfs_enable=YES" >> $rc
echo "growfs_type=nanobsd-pingpong" >> $rc
echo "ntpdate_enable=YES" >> $rc
echo "ifconfig_DEFAULT=DHCP" >> $rc
echo "ntpdate_hosts=0.freebsd.pool.ntp.org 1.freebsd.pool.ntp.org" >> $rc
# Make sure that firstboot scripts run so growfs works.
# Note: still some issues remvoing this XXX
touch ${NANO_WORLDDIR}/firstboot
)
customize_cmd typical_embedded
save_build ( ) (
VERSION_FILE=${NANO_WORLDDIR}/etc/version
if [ "${SVNREVISION}" = "${REVISION}" ]; then
@ -502,14 +520,6 @@ product_custom ( ) (
chown root:wheel ${NANO_WORLDDIR}/
chown root:wheel ${NANO_WORLDDIR}/usr
fi
local rc=${NANO_WORLDDIR}/etc/rc.conf
echo "hostname=nanobsd-${NANO_NAME}" > $rc
echo "growfs_enable=YES" >> $rc
echo "growfs_type=nanobsd-pingpong" >> $rc
echo "ntpdate_enable=YES" >> $rc
echo "ntpdate_hosts=0.freebsd.pool.ntp.org 1.freebsd.pool.ntp.org" >> $rc
# Make sure that firstboot scripts run so growfs works.
touch ${NANO_WORLDDIR}/firstboot
)
late_customize_cmd product_custom