File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def _get_kmod_info(self, module: str):
8484 module_info ['softdep' ] = line .split ()[2 ::2 ]
8585 elif line .startswith ('firmware:' ):
8686 # Firmware is a list, so append to it, making sure it exists first
87- oh wait i think i imssed if 'firmware' not in module_info :
87+ if 'firmware' not in module_info :
8888 module_info ['firmware' ] = []
8989 module_info ['firmware' ] += line .split ()[1 :]
9090
@@ -208,6 +208,7 @@ def _process_kmod_dependencies(self, kmod: str) -> None:
208208 _process_kmod_dependencies (self , dependency )
209209 except BuiltinModuleError as e :
210210 self .logger .debug (e )
211+ continue
211212 self ['kernel_modules' ] = dependency
212213
213214 if self ['_kmod_modinfo' ][kmod ]['filename' ] == '(builtin)' :
You can’t perform that action at this time.
0 commit comments