We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
linux-tools-*
1 parent b82babf commit a5ea6aeCopy full SHA for a5ea6ae
usr/lib/linuxmint/mintUpdate/kernelwindow.py
@@ -434,7 +434,11 @@ def install_kernels(self, kernels):
434
for kernel in kernels:
435
_KERNEL_PKG_NAMES = KERNEL_PKG_NAMES.copy()
436
if kernel.installed:
437
- _KERNEL_PKG_NAMES.append("linux-image-unsigned-VERSION-KERNELTYPE") # mainline, remove only
+ # also purge existing residual kernel packages
438
+ _KERNEL_PKG_NAMES.append("linux-image-unsigned-VERSION-KERNELTYPE")
439
+ _KERNEL_PKG_NAMES.append("linux-tools-VERSION")
440
+ _KERNEL_PKG_NAMES.append("linux-tools-VERSION-KERNELTYPE")
441
+
442
for name in _KERNEL_PKG_NAMES:
443
name = name.replace("VERSION", kernel.version).replace("-KERNELTYPE", kernel.type)
444
if name in self.cache:
0 commit comments