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

r403:c99e540b9c7c
r443:c6c99c428cd2
Show More
11-apt.sh
33 lines | 872 B | application/x-sh | BashLexer
#
# Setup APT repositories
#
# Load utility functions
. ./functions.sh
# Install and setup APT proxy configuration
if [ -z "$APT_PROXY" ] ; then
install_readonly files/apt/10proxy "${ETC_DIR}/apt/apt.conf.d/10proxy"
sed -i "s/\"\"/\"${APT_PROXY}\"/" "${ETC_DIR}/apt/apt.conf.d/10proxy"
fi
# Upgrade package index and update all installed packages and changed dependencies
chroot_exec apt-get -qq -y update
chroot_exec apt-get -qq -y -u dist-upgrade
# Install additional packages
if [ "$APT_INCLUDES_LATE" ] ; then
chroot_exec apt-get -qq -y install "$(echo "$APT_INCLUDES_LATE" |tr , ' ')"
fi
# Install Debian custom packages
if [ -d packages ] ; then
for package in packages/*.deb ; do
cp "$package" "${R}"/tmp
chroot_exec dpkg --unpack /tmp/"$(basename "$package")"
done
fi
chroot_exec apt-get -qq -y -f install
chroot_exec apt-get -qq -y check