[ general ] add tiny debug option to track installed packages per each rootfs cache (internal feature), htop bugfix, sunxi upstream patch

This commit is contained in:
Igor Pecovnik 2019-06-12 21:20:03 +02:00
parent 4bc4923f06
commit 7e66e95962
3 changed files with 2074 additions and 1 deletions

View File

@ -234,6 +234,9 @@ create_rootfs_cache()
# stage: remove downloaded packages
chroot $SDCARD /bin/bash -c "apt-get clean"
# create list of installed packages for debug purposes
chroot $SDCARD /bin/bash -c "dpkg --get-selections" | grep -v deinstall | awk '{print $1}' | cut -f1 -d':' > ${cache_fname}.list 2>&1
# this is needed for the build process later since resolvconf generated file in /run is not saved
rm $SDCARD/etc/resolv.conf
echo "nameserver $NAMESERVER" >> $SDCARD/etc/resolv.conf

View File

@ -10,7 +10,7 @@ local package_component="${release}-utils"
package_checkbuild()
{
[[ $release != stretch && $release != bionic ]]
[[ $release != stretch && $release != bionic && $release != jessie ]]
}
package_checkinstall()

File diff suppressed because it is too large Load Diff