##// END OF EJS Templates
fixes
fixes

Fichier de la dernière révision:

r321:8d65dbaf659e
r321:8d65dbaf659e
Show More
11-apt.sh
58 lines | 1.7 KiB | application/x-sh | BashLexer
burnbabyburn
enhancment thx to spellcheck.net
r312 #!/bin/bash
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
Jan Wagner
Added: ENABLE_CRYPTFS - encrypted rootfs, use-latest-bootloader, cp-cleanup
r77 if [ "$BUILD_KERNEL" = false ] ; then
burnbabyburn
massive refactor and bugfes
r310 echo "Downloading precompiled kernel"
echo "error: not configured"
exit 1;
Unknown
move locales to defaults instead of set alternative iptables- save and -restore need to be installed
r315 # BUILD_KERNEL=true
else
echo "No precompiled kernel repositories were added"
fi
#autconfigure best apt server to not spam ftp.debian.org
#rm files/apt/sources.list
#netselect-apt does not know buster yet
if [ "$RELEASE" = "buster" ] ; then
burnbabyburn
fixes
r321 RELEASE=testing
Unknown
move locales to defaults instead of set alternative iptables- save and -restore need to be installed
r315 fi
if [ "$ENABLE_NONFREE" = true ] ; then
Unknown
0
r320 netselect-apt --arch "$RELEASE_ARCH" --tests 10 --sources --nonfree --outfile "${ETC_DIR}/apt/sources.list" -d "$RELEASE"
Unknown
move locales to defaults instead of set alternative iptables- save and -restore need to be installed
r315 else
Unknown
0
r320 netselect-apt --arch "$RELEASE_ARCH" --tests 10 --sources --outfile "${ETC_DIR}/apt/sources.list" -d "$RELEASE"
drtyhlpr
Added ENABLE_NONFREE support and more
r91 fi
Unknown
0
r320 #ipinfo=$(curl ipinfo.io | grep country )
#grep -o '\"[^"]*\"' $ipinfo | tr -d '"'
#grep -Po '"country":.*?[^\\]",' $(curl ipinfo.io | grep country )
#sed -i "s,http:,https:,g" "${ETC_DIR}/apt/sources.list"
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
Petter Reinholdtsen
Added new option APT_INCLUDES_LATE for installing packages using apt....
r173 if [ "$APT_INCLUDES_LATE" ] ; then
burnbabyburn
massive refactor and bugfes
r310 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
Stephen A. Brandli
Added ability to install custom packages
r86 if [ -d packages ] ; then
for package in packages/*.deb ; do
burnbabyburn
massive refactor and bugfes
r310 cp "$package" "${R}"/tmp
chroot_exec dpkg --unpack /tmp/"$(basename "$package")"
Stephen A. Brandli
Added ability to install custom packages
r86 done
fi
chroot_exec apt-get -qq -y -f install
burnbabyburn
fixes
r321 chroot_exec apt-get -qq -y check