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.
1 parent 3b73fab commit e42c918Copy full SHA for e42c918
src/ugrd/kmod/kmod.py
@@ -1,5 +1,5 @@
1
__author__ = 'desultory'
2
-__version__ = '2.16.0'
+__version__ = '2.16.1'
3
4
from pathlib import Path
5
from subprocess import run
@@ -290,6 +290,11 @@ def process_modules(self) -> None:
290
_process_kmod_dependencies(self, kmod)
291
continue
292
except BuiltinModuleError:
293
+ if kmod in self['kmod_init']:
294
+ self.logger.debug("Removing built-in module from kmod_init: %s" % kmod)
295
+ self['kmod_init'].remove(kmod)
296
+ self.logger.debug("Removing built-in module from kernel_modules: %s" % kmod)
297
+ self['kernel_modules'].remove(kmod)
298
continue # Don't add built-in modules to the ignore list
299
except IgnoredModuleError as e:
300
self.logger.info(e)
0 commit comments