##// END OF EJS Templates
Added ENABLE_NONFREE support and more
Added ENABLE_NONFREE support and more

Fichier de la dernière révision:

r91:491ef8b44865
r91:491ef8b44865
Show More
11-apt.sh
51 lines | 1.7 KiB | 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 "${ETCDIR}/apt/apt.conf.d/10proxy"
sed -i "s/\"\"/\"${APT_PROXY}\"/" "${ETCDIR}/apt/apt.conf.d/10proxy"
fi
if [ "$BUILD_KERNEL" = false ] ; then
# Install APT pinning configuration for flash-kernel package
install_readonly files/apt/flash-kernel "${ETCDIR}/apt/preferences.d/flash-kernel"
# Install APT sources.list
install_readonly files/apt/sources.list "${ETCDIR}/apt/sources.list"
echo "deb ${COLLABORA_URL} ${RELEASE} rpi2" >> "${ETCDIR}/apt/sources.list"
# Upgrade collabora package index and install collabora keyring
chroot_exec apt-get -qq -y update
chroot_exec apt-get -qq -y --force-yes install collabora-obs-archive-keyring
else # BUILD_KERNEL=true
# Install APT sources.list
install_readonly files/apt/sources.list "${ETCDIR}/apt/sources.list"
# Use specified APT server and release
sed -i "s/\/ftp.debian.org\//\/${APT_SERVER}\//" "${ETCDIR}/apt/sources.list"
sed -i "s/ jessie/ ${RELEASE}/" "${ETCDIR}/apt/sources.list"
fi
# Allow the installation of non-free Debian packages
if [ "$ENABLE_NONFREE" = true ] ; then
sed -i "s/ contrib/ contrib non-free/" "${ETCDIR}/apt/sources.list"
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
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