41 lines
1.1 KiB
Bash
Executable file
41 lines
1.1 KiB
Bash
Executable file
#!/bin/bash -e
|
|
|
|
install -m 755 files/regenerate_ssh_host_keys ${ROOTFS_DIR}/etc/init.d/
|
|
install -m 755 files/apply_noobs_os_config ${ROOTFS_DIR}/etc/init.d/
|
|
install -m 755 files/resize2fs_once ${ROOTFS_DIR}/etc/init.d/
|
|
|
|
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/
|
|
|
|
install -m 644 files/50raspi ${ROOTFS_DIR}/etc/apt/apt.conf.d/
|
|
install -m 644 files/98-rpi.conf ${ROOTFS_DIR}/etc/sysctl.d/
|
|
|
|
|
|
on_chroot sh -e - <<EOF
|
|
systemctl disable hwclock.sh
|
|
systemctl disable nfs-common
|
|
systemctl disable rpcbind
|
|
systemctl disable ssh
|
|
systemctl enable regenerate_ssh_host_keys
|
|
systemctl enable apply_noobs_os_config
|
|
systemctl enable resize2fs_once
|
|
EOF
|
|
|
|
on_chroot sh -e - << \EOF
|
|
for GRP in input spi i2c gpio; do
|
|
groupadd -f -r $GRP
|
|
done
|
|
for GRP in adm dialout cdrom audio users sudo video games plugdev input gpio spi i2c netdev; do
|
|
adduser pi $GRP
|
|
done
|
|
EOF
|
|
|
|
on_chroot sh -e - <<EOF
|
|
setupcon --force --save-only -v
|
|
EOF
|
|
|
|
on_chroot sh -e - <<EOF
|
|
usermod --pass='*' root
|
|
EOF
|
|
|
|
rm -f ${ROOTFS_DIR}/etc/ssh/ssh_host_*_key*
|