]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
kbuild/mkspec: support 'update-bootloader'-based systems
authorJiri Kosina <jkosina@suse.cz>
Thu, 7 Apr 2016 13:00:54 +0000 (15:00 +0200)
committerMichal Marek <mmarek@suse.com>
Wed, 20 Apr 2016 08:01:30 +0000 (10:01 +0200)
When uninstalling kernel RPM, we're unconditionally calling
"new-kernel-pkg --remove". This is useless on systems which are based on
'update-bootloader' script instead.

Support update-bootloader removal method as well in case the script is
present; contrary to new-kernel-pkg, this needs to be done in %postun,
otherwise update-bootloader will refuse to remove entry for kernel for
which the binary still exists.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Michal Marek <mmarek@suse.com>
scripts/package/mkspec

index b6de63cb3f231e1203cfa00eccd35edd3aee456a..57673bae5597ab9a5078fe9527825aa4456086c9 100755 (executable)
@@ -143,6 +143,11 @@ echo "if [ -x /sbin/new-kernel-pkg ]; then"
 echo "new-kernel-pkg --remove $KERNELRELEASE --rminitrd --initrdfile=/boot/initramfs-$KERNELRELEASE.img"
 echo "fi"
 echo ""
+echo "%postun"
+echo "if [ -x /sbin/update-bootloader ]; then"
+echo "/sbin/update-bootloader --remove $KERNELRELEASE"
+echo "fi"
+echo ""
 echo "%files"
 echo '%defattr (-, root, root)'
 echo "/lib/modules/$KERNELRELEASE"