2016-04-11 06:29:41 +00:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
2018-03-02 20:08:24 +00:00
|
|
|
install -m 755 files/resize2fs_once "${ROOTFS_DIR}/etc/init.d/"
|
2016-04-11 06:29:41 +00:00
|
|
|
|
2018-03-02 20:08:24 +00:00
|
|
|
install -d "${ROOTFS_DIR}/etc/systemd/system/rc-local.service.d"
|
|
|
|
install -m 644 files/ttyoutput.conf "${ROOTFS_DIR}/etc/systemd/system/rc-local.service.d/"
|
2016-04-11 06:29:41 +00:00
|
|
|
|
2018-03-02 20:08:24 +00:00
|
|
|
install -m 644 files/50raspi "${ROOTFS_DIR}/etc/apt/apt.conf.d/"
|
2016-04-11 06:29:41 +00:00
|
|
|
|
2018-03-02 20:08:24 +00:00
|
|
|
install -m 644 files/console-setup "${ROOTFS_DIR}/etc/default/"
|
2016-04-11 06:29:41 +00:00
|
|
|
|
2018-03-02 20:08:24 +00:00
|
|
|
install -m 755 files/rc.local "${ROOTFS_DIR}/etc/"
|
2017-07-17 13:15:48 +00:00
|
|
|
|
2016-11-14 23:55:45 +00:00
|
|
|
on_chroot << EOF
|
2016-04-11 06:29:41 +00:00
|
|
|
systemctl disable hwclock.sh
|
|
|
|
systemctl disable nfs-common
|
|
|
|
systemctl disable rpcbind
|
2018-12-18 18:32:06 +00:00
|
|
|
if [ "${ENABLE_SSH}" == "1" ]; then
|
|
|
|
systemctl enable ssh
|
|
|
|
else
|
|
|
|
systemctl disable ssh
|
|
|
|
fi
|
2016-04-11 06:29:41 +00:00
|
|
|
systemctl enable regenerate_ssh_host_keys
|
2017-09-07 21:47:35 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
if [ "${USE_QEMU}" = "1" ]; then
|
|
|
|
echo "enter QEMU mode"
|
2018-03-02 20:08:24 +00:00
|
|
|
install -m 644 files/90-qemu.rules "${ROOTFS_DIR}/etc/udev/rules.d/"
|
2017-09-07 21:47:35 +00:00
|
|
|
on_chroot << EOF
|
|
|
|
systemctl disable resize2fs_once
|
|
|
|
EOF
|
|
|
|
echo "leaving QEMU mode"
|
|
|
|
else
|
|
|
|
on_chroot << EOF
|
2016-04-11 06:29:41 +00:00
|
|
|
systemctl enable resize2fs_once
|
|
|
|
EOF
|
2017-09-07 21:47:35 +00:00
|
|
|
fi
|
2016-04-11 06:29:41 +00:00
|
|
|
|
2018-12-09 22:52:03 +00:00
|
|
|
on_chroot <<EOF
|
2016-04-11 06:29:41 +00:00
|
|
|
for GRP in input spi i2c gpio; do
|
2018-12-09 22:52:03 +00:00
|
|
|
groupadd -f -r "\$GRP"
|
2016-04-11 06:29:41 +00:00
|
|
|
done
|
|
|
|
for GRP in adm dialout cdrom audio users sudo video games plugdev input gpio spi i2c netdev; do
|
2018-12-09 22:52:03 +00:00
|
|
|
adduser $FIRST_USER_NAME \$GRP
|
2016-04-11 06:29:41 +00:00
|
|
|
done
|
|
|
|
EOF
|
|
|
|
|
2016-11-14 23:55:45 +00:00
|
|
|
on_chroot << EOF
|
2016-04-11 06:29:41 +00:00
|
|
|
setupcon --force --save-only -v
|
|
|
|
EOF
|
|
|
|
|
2016-11-14 23:55:45 +00:00
|
|
|
on_chroot << EOF
|
2016-04-11 06:29:41 +00:00
|
|
|
usermod --pass='*' root
|
|
|
|
EOF
|
|
|
|
|
2018-03-02 20:08:24 +00:00
|
|
|
rm -f "${ROOTFS_DIR}/etc/ssh/"ssh_host_*_key*
|