Mark kernel related packages on hold in live images

debian-cd
Raphaël Hertzog 6 years ago
parent ea8c33a64b
commit 43c0daa0e8

@ -37,3 +37,10 @@ update-initramfs -u
if [ -x "$(which updatedb 2>/dev/null)" ]; then
updatedb
fi
# Mark kernel related packages on hold so that they are not upgraded in
# the live system
for pkg in $(dpkg-query -W -f'${binary:Package}\n' 'linux-image-*' 'linux-headers-*' 'linux-kbuild-*')
do
apt-mark hold $pkg
done

@ -0,0 +1,8 @@
#!/bin/sh
set -e
# Remove the "hold" mark on any package, in Kali we put kernel packages
# on hold because upgrading them hurts more than it helps and because
# we want to ensure they are not removed by a routine dist-upgrade.
in-target sh -c 'apt-mark showhold | while read pkg; do apt-mark unhold $pkg; done'
Loading…
Cancel
Save