Commit 24c22009 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

experiments: fix exception when adding mqnic kernel module

parent e41360ad
...@@ -105,7 +105,7 @@ class CorundumLinuxNode(LinuxNode): ...@@ -105,7 +105,7 @@ class CorundumLinuxNode(LinuxNode):
self.drivers.append('/tmp/guest/mqnic.ko') self.drivers.append('/tmp/guest/mqnic.ko')
def config_files(self): def config_files(self):
m = {'mqnic.ko': open('../images/mqnic/mqnic.ko', 'r')} m = {'mqnic.ko': open('../images/mqnic/mqnic.ko', 'rb')}
return {**m, **super().config_files()} return {**m, **super().config_files()}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment