Re-enable arm_create_user(), and pass the '-V DESTDIR/etc' to

pw(8) to set the correct /etc directory for the user/group
files.

Provided by:	ian (thanks!)
MFC after:	3 days
X-MFC-with:	r283894
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2015-06-01 20:59:18 +00:00
parent b506d010c2
commit f3ca4d9170
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283895

View File

@ -80,11 +80,14 @@ arm_create_disk() {
arm_create_user() {
# Create a default user account 'freebsd' with the password 'freebsd',
# and set the default password for the 'root' user to 'root'.
chroot ${CHROOTDIR} /usr/sbin/pw groupadd freebsd -g 1001
chroot ${CHROOTDIR} /usr/sbin/pw useradd freebsd \
chroot ${CHROOTDIR} /usr/sbin/pw -V ${DESTDIR}/etc \
groupadd freebsd -g 1001
chroot ${CHROOTDIR} /usr/sbin/pw -V ${DESTDIR}/etc \
useradd freebsd \
-m -M 0755 -w yes -n freebsd -u 1001 -g 1001 -G 0 \
-c 'FreeBSD User' -d '/home/freebsd' -s '/bin/csh'
chroot ${CHROOTDIR} /usr/sbin/pw usermod root -w yes
chroot ${CHROOTDIR} /usr/sbin/pw -V ${DESTDIR}/etc \
usermod root -w yes
return 0
}
@ -98,7 +101,7 @@ arm_install_base() {
installworld installkernel distribution
chroot ${CHROOTDIR} mkdir -p ${DESTDIR}/boot/msdos
#arm_create_user
arm_create_user
echo '# Custom /etc/fstab for FreeBSD embedded images' \
> ${CHROOTDIR}/${DESTDIR}/etc/fstab