##// END OF EJS Templates
Bluetooth and serial...
Bluetooth and serial reworked bluetooth and serial for RPI3,3P,0 ENABLE_PRINTK prints kernel messages to the console ENABLE_BLUETOOTH enables bluetooth on RPI0,3,3P ENABLE_MINIUART_OVERLAY sets the dtoverlay "pi3-miniuart-bt" switching console to ttyAMA0 (full uart) while using bluetooth over ttyS0 (miniuart). sets cpu to fixed lowest speed. Use ENABLE_TURBO to set CPU to fixed max speed. Can be used with ENABLE_CONSOLE or ENABLE_MINIUART_OVERLAY to supress fixed low speed and use fixed high speed instead - install bluetooth packages

Fichier de la dernière révision:

r420:0a810af45a73
r451:7dc74afc7302
Show More
30-security.sh
29 lines | 829 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
# Enable serial console systemd style
if [ "$ENABLE_CONSOLE" = true ] ; then
chroot_exec systemctl enable serial-getty\@ttyAMA0.service
fi