##// 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
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 #
Jan Wagner
spliting more files, fix-uboot, fix-fbturbo, fix-locale
r67 # Setup Logging
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 #
Jan Wagner
spliting more files, fix-uboot, fix-fbturbo, fix-locale
r67 # Load utility functions
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 . ./functions.sh
# Disable rsyslog
Jan Wagner
Added: KERNEL_SRCDIR, path-checks, code-cleanup
r72 if [ "$ENABLE_RSYSLOG" = false ] ; then
drtyhlpr
Added Raspberry Pi 3 model support
r94 sed -i "s|[#]*ForwardToSyslog=yes|ForwardToSyslog=no|g" "${ETC_DIR}/systemd/journald.conf"
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 chroot_exec systemctl disable rsyslog
drtyhlpr
Updated: Dropping privileges, chroot compiler install, dropbear sshd config
r142 chroot_exec apt-get -qq -y purge rsyslog
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 fi