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 afa341f commit c16ca62Copy full SHA for c16ca62
usr/lib/linuxmint/mintUpdate/kernelwindow.py
@@ -429,7 +429,11 @@ def install_kernels(self, kernels):
429
for kernel in kernels:
430
_KERNEL_PKG_NAMES = KERNEL_PKG_NAMES.copy()
431
if kernel.installed:
432
- _KERNEL_PKG_NAMES.append("linux-image-unsigned-VERSION-KERNELTYPE") # mainline, remove only
+ # also purge existing residual kernel packages
433
+ _KERNEL_PKG_NAMES.append("linux-image-unsigned-VERSION-KERNELTYPE")
434
+ _KERNEL_PKG_NAMES.append("linux-tools-VERSION")
435
+ _KERNEL_PKG_NAMES.append("linux-tools-VERSION-KERNELTYPE")
436
+
437
for name in _KERNEL_PKG_NAMES:
438
name = name.replace("VERSION", kernel.version).replace("-KERNELTYPE", kernel.type)
439
if name in self.cache:
0 commit comments