23b2c929a2
* Stretch base system working W/O DRIDE - Currently removed Dride edits/software to get base OS working * Enabled Ether over USB I slightly rearranged a few startups in stage2 to give us room for more expansion later. Boot files update important to come prior to Dride software. Stretch base system working W/O DRIDE * Dride+Stretch working - wifi works with specific Dride network - usb0 interface also works if you need to debug/hack All Dride network items have been separated into this step * DrideOS gets Dride software added back in on Debian Stretch - software base; testing commencing * Added new dride partition, clean, updated README - updated README to explain how this has been modified vs. upstream - removed and cleaned unused scripts - added dride partition creation on startup (runonce) - drideOS conditional renamed to dride-plus * Use the /dride path and provide soft links during software installation - updated README
61 lines
1.5 KiB
Bash
Executable File
61 lines
1.5 KiB
Bash
Executable File
#!/bin/bash -e
|
|
|
|
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/console-setup ${ROOTFS_DIR}/etc/default/
|
|
|
|
install -m 755 files/rc.local ${ROOTFS_DIR}/etc/
|
|
|
|
on_chroot << EOF
|
|
systemctl disable hwclock.sh
|
|
systemctl disable nfs-common
|
|
systemctl disable rpcbind
|
|
systemctl enable ssh
|
|
systemctl enable regenerate_ssh_host_keys
|
|
EOF
|
|
|
|
if [ "${USE_QEMU}" = "1" ]; then
|
|
echo "enter QEMU mode"
|
|
install -m 644 files/90-qemu.rules ${ROOTFS_DIR}/etc/udev/rules.d/
|
|
if [ -e ${ROOTFS_DIR}/etc/ld.so.preload.disabled ]; then
|
|
rm ${ROOTFS_DIR}/etc/ld.so.preload.disabled
|
|
touch ${ROOTFS_DIR}/etc/ld.so.preload.disabled
|
|
fi
|
|
if [ -e ${ROOTFS_DIR}/etc/ld.so.preload ]; then
|
|
rm ${ROOTFS_DIR}/etc/ld.so.preload
|
|
touch ${ROOTFS_DIR}/etc/ld.so.preload
|
|
fi
|
|
on_chroot << EOF
|
|
systemctl disable resize2fs_once
|
|
EOF
|
|
echo "leaving QEMU mode"
|
|
else
|
|
on_chroot << EOF
|
|
systemctl enable resize2fs_once
|
|
EOF
|
|
fi
|
|
|
|
on_chroot << \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 << EOF
|
|
setupcon --force --save-only -v
|
|
EOF
|
|
|
|
on_chroot << EOF
|
|
usermod --pass='*' root
|
|
EOF
|
|
|
|
rm -f ${ROOTFS_DIR}/etc/ssh/ssh_host_*_key*
|