diff --git a/configs/bb.org-debian-stretch-lxqt-v4.4.conf b/configs/bb.org-debian-stretch-lxqt-v4.4.conf index 132e3bde5361155c4d803172423b8c59a7c6d6c2..1364a9981a24aa595b0eef6e4619057763de3654 100644 --- a/configs/bb.org-debian-stretch-lxqt-v4.4.conf +++ b/configs/bb.org-debian-stretch-lxqt-v4.4.conf @@ -174,6 +174,9 @@ repo_rcnee_pkg_list=" \ xserver-xorg-video-armada-etnaviv \ " +## +chroot_manual_deborphan_list="xscreensaver" + ## ##nodejs: https://github.com/nodesource/distributions #repo_nodesource="node_0.12" diff --git a/configs/bb.org-debian-stretch-lxqt-v4.9.conf b/configs/bb.org-debian-stretch-lxqt-v4.9.conf index 7981b1ba8c919cb02ee4f33d17c7755126b36f0e..aa526b2e28737faa31a064d18144746c6aac0cd6 100644 --- a/configs/bb.org-debian-stretch-lxqt-v4.9.conf +++ b/configs/bb.org-debian-stretch-lxqt-v4.9.conf @@ -175,6 +175,9 @@ repo_rcnee_pkg_list=" \ xserver-xorg-video-armada-etnaviv \ " +## +chroot_manual_deborphan_list="xscreensaver" + ## ##nodejs: https://github.com/nodesource/distributions #repo_nodesource="node_0.12" diff --git a/configs/bb.org-debian-stretch-lxqt-xm.conf b/configs/bb.org-debian-stretch-lxqt-xm.conf index 84f0d5c6e5e95851091d1586e5c3890bcf288e95..23842a845ff22ecdfccfd9afa32a7d2aa8ed3fac 100644 --- a/configs/bb.org-debian-stretch-lxqt-xm.conf +++ b/configs/bb.org-debian-stretch-lxqt-xm.conf @@ -162,6 +162,9 @@ repo_rcnee_pkg_list=" \ roboticscape \ " +## +chroot_manual_deborphan_list="xscreensaver" + ## ##nodejs: https://github.com/nodesource/distributions #repo_nodesource="node_0.12" diff --git a/scripts/chroot.sh b/scripts/chroot.sh index 7985ae7817da40d52f8641b87c36378925cb4fc3..d2de1b5172024575e1bd698942844848042bd260 100755 --- a/scripts/chroot.sh +++ b/scripts/chroot.sh @@ -715,6 +715,7 @@ cat > "${DIR}/chroot_script.sh" <<-__EOF__ if [ ! "x${chroot_manual_deborphan_list}" = "x" ] ; then echo "Log: (chroot): cleanup: [${chroot_manual_deborphan_list}]" apt-get -y remove ${chroot_manual_deborphan_list} --purge + apt-get autoremove --purge apt-get clean fi }