Add backports
This commit is contained in:
parent
548a6149c5
commit
0142ddf9c8
|
@ -619,6 +619,17 @@ function configure_user_interface {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! $DEBIAN_REPO ]; then
|
||||||
|
DEBIAN_REPO='ftp.de.debian.org'
|
||||||
|
fi
|
||||||
|
if [ ! $DEBIAN_VERSION ]; then
|
||||||
|
DEBIAN_VERSION='jessie'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# install backports
|
||||||
|
echo "deb http://${DEBIAN_REPO}/debian/ ${DEBIAN_VERSION}-backports main" >> $rootdir/etc/apt/sources.list
|
||||||
|
chroot "$rootdir" apt-get -y update
|
||||||
|
|
||||||
# desktop
|
# desktop
|
||||||
chroot "$rootdir" apt-get -y install mate-desktop-environment
|
chroot "$rootdir" apt-get -y install mate-desktop-environment
|
||||||
|
|
||||||
|
@ -628,6 +639,9 @@ function configure_user_interface {
|
||||||
# for tomb
|
# for tomb
|
||||||
chroot "$rootdir" apt-get -y install pinentry-gtk2
|
chroot "$rootdir" apt-get -y install pinentry-gtk2
|
||||||
|
|
||||||
|
# for tox video
|
||||||
|
chroot "$rootdir" apt-get -y install ffmpeg
|
||||||
|
|
||||||
if [[ $VARIANT != "usb" ]]; then
|
if [[ $VARIANT != "usb" ]]; then
|
||||||
# log in automatically
|
# log in automatically
|
||||||
chroot "$rootdir" apt-get -y install nodm xinit
|
chroot "$rootdir" apt-get -y install nodm xinit
|
||||||
|
|
Loading…
Reference in New Issue