|
|
@ -817,7 +817,7 @@ class MicroHAL(object):
|
|
|
|
if proc not in self.getSupportedFileSystems():
|
|
|
|
if proc not in self.getSupportedFileSystems():
|
|
|
|
# The filesystem is not supported by the running kernel,
|
|
|
|
# The filesystem is not supported by the running kernel,
|
|
|
|
# but it might be built as module, so we try to load that.
|
|
|
|
# but it might be built as module, so we try to load that.
|
|
|
|
retval, msg = SimpleCommandRunner().run([b"/sbin/modprobe",module])
|
|
|
|
retval, msg = SimpleCommandRunner().run([b"/sbin/modprobe",module.encode('utf-8')])
|
|
|
|
if retval > 0:
|
|
|
|
if retval > 0:
|
|
|
|
print(msg)
|
|
|
|
print(msg)
|
|
|
|
print("Couldn't load driver " + module + " for filesystem " + fs)
|
|
|
|
print("Couldn't load driver " + module + " for filesystem " + fs)
|
|
|
|