##// END OF EJS Templates
Better Bluetooth and serial...
Better Bluetooth and serial - ENABLE_BLUETOOTH to enable bluetooth - ENABLE_MINIUART_OVERLAY to enable bluetooth with full serial console - ENABLE_PRINTK to print kernel messages - ENABLE_MINIUART_OVERLAY to get slow bt and fast serial console on RPI0,3,3P - ENABLE_TURBO to set cpu to max speed. helpfull if used with - - ENABLE_MINIUART_OVERLAY as RPI would be otherwise set to lowest clock possible - install serial alias by default. some projcets need them as they are a default package on raspian -

Fichier de la dernière révision:

r443:c6c99c428cd2
r443:c6c99c428cd2
Show More
30-security.sh
24 lines | 687 B | application/x-sh | BashLexer
#
# Setup users and security settings
#
# Load utility functions
. ./functions.sh
# Generate crypt(3) password string
ENCRYPTED_PASSWORD=$(mkpasswd -m sha-512 "${PASSWORD}")
ENCRYPTED_USER_PASSWORD=$(mkpasswd -m sha-512 "${USER_PASSWORD}")
# Setup default user
if [ "$ENABLE_USER" = true ] ; then
chroot_exec adduser --gecos "$USER_NAME" --add_extra_groups --disabled-password "$USER_NAME"
chroot_exec usermod -a -G sudo -p "${ENCRYPTED_USER_PASSWORD}" "$USER_NAME"
fi
# Setup root password or not
if [ "$ENABLE_ROOT" = true ] ; then
chroot_exec usermod -p "${ENCRYPTED_PASSWORD}" root
else
# Set no root password to disable root login
chroot_exec usermod -p \'!\' root
fi