##// 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:

r341:c71b9798972e
r443:c6c99c428cd2
Show More
31-logging.sh
13 lines | 301 B | application/x-sh | BashLexer
#
# Setup Logging
#
# Load utility functions
. ./functions.sh
# Disable rsyslog
if [ "$ENABLE_RSYSLOG" = false ] ; then
sed -i "s|[#]*ForwardToSyslog=yes|ForwardToSyslog=no|g" "${ETC_DIR}/systemd/journald.conf"
chroot_exec systemctl disable rsyslog
chroot_exec apt-get -qq -y purge rsyslog
fi