burrow-pi-img/stage1/01-sys-tweaks/00-run.sh

16 lines
407 B
Bash
Raw Normal View History

2016-04-11 06:29:41 +00:00
#!/bin/bash -e
2018-03-02 20:08:24 +00:00
install -d "${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d"
install -m 644 files/noclear.conf "${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d/noclear.conf"
install -v -m 644 files/fstab "${ROOTFS_DIR}/etc/fstab"
2016-04-11 06:29:41 +00:00
on_chroot << EOF
2016-04-11 06:29:41 +00:00
if ! id -u pi >/dev/null 2>&1; then
adduser --disabled-password --gecos "" pi
fi
echo "pi:raspberry" | chpasswd
echo "root:root" | chpasswd
EOF