##// END OF EJS Templates
Added: KERNEL_REDUCE - less than 128MB used space, Added: REDUCE_ parameters
Added: KERNEL_REDUCE - less than 128MB used space, Added: REDUCE_ parameters

Fichier de la dernière révision:

r75:24bd7e97cf9d
r76:50170a27d411
Show More
11-apt.sh
30 lines | 1.1 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
Jan Wagner
Added: KERNELSRC_PREBUILT, KERNELSRC_ rename, fix-quotes
r75 install_readonly files/apt/10proxy "$R/etc/apt/apt.conf.d/10proxy"
sed -i "s/\"\"/\"${APT_PROXY}\"/" "$R/etc/apt/apt.conf.d/10proxy"
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 fi
Jan Wagner
comment-cleanup, net-cleanup, size-calc-fix, split-more, menuconfig
r71 # Install APT pinning configuration for flash-kernel package
Jan Wagner
Added: KERNELSRC_PREBUILT, KERNELSRC_ rename, fix-quotes
r75 install_readonly files/apt/flash-kernel "$R/etc/apt/preferences.d/flash-kernel"
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56
# Upgrade collabora package index and install collabora keyring
Jan Wagner
Added: KERNELSRC_PREBUILT, KERNELSRC_ rename, fix-quotes
r75 echo "deb https://repositories.collabora.co.uk/debian ${RELEASE} rpi2" > "$R/etc/apt/sources.list"
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 chroot_exec apt-get -qq -y update
chroot_exec apt-get -qq -y --force-yes install collabora-obs-archive-keyring
Jan Wagner
comment-cleanup, net-cleanup, size-calc-fix, split-more, menuconfig
r71 # Install APT sources.list
Jan Wagner
Added: KERNELSRC_PREBUILT, KERNELSRC_ rename, fix-quotes
r75 install_readonly files/apt/sources.list "$R/etc/apt/sources.list"
sed -i "s/\/ftp.debian.org\//\/${APT_SERVER}\//" "$R/etc/apt/sources.list"
sed -i "s/ jessie/ ${RELEASE}/" "$R/etc/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
Jan Wagner
Added: KERNEL_SRCDIR, path-checks, code-cleanup
r72 chroot_exec apt-get -qq -y check