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

r142:14de70396904
r451:7dc74afc7302
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