##// END OF EJS Templates
Preconfigure Wifi...
Preconfigure Wifi Added Options to add ssid and psk Added Options to configure static and dhcp wlan0 Added wpasupplicant to wifi requirements Updated README rename config files to new interface names, if ENABLE_IFNAMES=true Added default metric and IPV6 PrivacyExtensions

Fichier de la dernière révision:

r692:c6ca5a90e063
r698:1d5e72bc7aa0
Show More
11-apt.sh
50 lines | 1.4 KiB | application/x-sh | BashLexer
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 #
# Setup APT repositories
#
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
Jan Wagner
comment-cleanup, net-cleanup, size-calc-fix, split-more, menuconfig
r71 # Install and setup APT proxy configuration
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 if [ -z "$APT_PROXY" ] ; then
drtyhlpr
Added Raspberry Pi 3 model support
r94 install_readonly files/apt/10proxy "${ETC_DIR}/apt/apt.conf.d/10proxy"
sed -i "s/\"\"/\"${APT_PROXY}\"/" "${ETC_DIR}/apt/apt.conf.d/10proxy"
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 fi
drtyhlpr
quick fix: broken sources.list generation
r536 # Install APT sources.list
install_readonly files/apt/sources.list "${ETC_DIR}/apt/sources.list"
# Use specified APT server and release
sed -i "s/\/ftp.debian.org\//\/${APT_SERVER}\//" "${ETC_DIR}/apt/sources.list"
Unknown
0
r691
#Fix for changing path for security updates in testing/bullseye
Unknown
bullseye fix...
r666 if [ "$RELEASE" = "testing" ] ; then
burnbabyburn
bullseye
r648 sed -i "s,stretch\\/updates,testing-security," "${ETC_DIR}/apt/sources.list"
Unknown
a
r692 sed -i "s/ stretch/ ${RELEASE}/" "${ETC_DIR}/apt/sources.list"
Unknown
0
r691 fi
if [ -z "$RELEASE" ] ; then
# Change release in sources list
drtyhlpr
Added: KEEP_APT_PROXY
r538 sed -i "s/ stretch/ ${RELEASE}/" "${ETC_DIR}/apt/sources.list"
burnbabyburn
bullseye
r648 fi
drtyhlpr
quick fix: broken sources.list generation
r536
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 # 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
Stephen A. Brandli
Added ability to install custom packages
r86
drtyhlpr
fix: various fixes
r398 # Install additional packages
Petter Reinholdtsen
Added new option APT_INCLUDES_LATE for installing packages using apt....
r173 if [ "$APT_INCLUDES_LATE" ] ; then
burnbabyburn
Update 11-apt.sh
r649 chroot_exec apt-get -qq -y install "$(echo "$APT_INCLUDES_LATE" |tr , ' ')"
Petter Reinholdtsen
Added new option APT_INCLUDES_LATE for installing packages using apt....
r173 fi
drtyhlpr
fix: various fixes
r398 # Install Debian custom packages
Stephen A. Brandli
Added ability to install custom packages
r86 if [ -d packages ] ; then
for package in packages/*.deb ; do
Unknown
https://www.shellcheck.net/...
r336 cp "$package" "${R}"/tmp
chroot_exec dpkg --unpack /tmp/"$(basename "$package")"
Stephen A. Brandli
Added ability to install custom packages
r86 done
fi
drtyhlpr
fix: various fixes
r398
Stephen A. Brandli
Added ability to install custom packages
r86 chroot_exec apt-get -qq -y -f install
Jan Wagner
Added: KERNEL_SRCDIR, path-checks, code-cleanup
r72 chroot_exec apt-get -qq -y check