14 lines
461 B
Bash
Executable File
14 lines
461 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
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"
|
|
|
|
on_chroot << EOF
|
|
if ! id -u ${RPI_USERNAME} >/dev/null 2>&1; then
|
|
adduser --disabled-password --gecos "" ${RPI_USERNAME}
|
|
fi
|
|
echo "${RPI_USERNAME}:${RPI_USERPASS}" | chpasswd
|
|
echo "root:${RPI_ROOTPASS}" | chpasswd
|
|
EOF
|