##// END OF EJS Templates
RPI3B+...
RPI3B+ Added RPI_MODEL=3B for Raspberry Pi 3 B+ Model If RPI_MODEL=3B is set rpi23-gen-image will use brcmfmac43455-sdio (bin, txt and clm_blob) instead of brcmfmac43430-sdio WLAN-firmware blob With Model=3 - rpi23-gen-image.sh will not copy brcmfmac43455-sdio.txt and brcmfmac43455-sdio.clm_blob file from firmware_dir. Package firmware-brcm80211 also does not include these files.

Fichier de la dernière révision:

r120:15fff1eef3a5
r250:824dff766aec
Show More
30-security.sh
29 lines | 821 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