mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-30 13:24:27 +01:00
args -> kwargs
This commit is contained in:
@@ -9,9 +9,9 @@ import common
|
||||
def main():
|
||||
return self.sh.run_cmd(
|
||||
[
|
||||
os.path.join(common.qemu_src_dir, 'scripts/simpletrace.py'), common.Newline,
|
||||
os.path.join(common.qemu_build_dir, 'trace-events-all'), common.Newline,
|
||||
os.path.join(common.qemu_trace_file), common.Newline,
|
||||
os.path.join(common.qemu_src_dir, 'scripts/simpletrace.py'), LF,
|
||||
os.path.join(common.qemu_build_dir, 'trace-events-all'), LF,
|
||||
os.path.join(common.qemu_trace_file), LF,
|
||||
],
|
||||
cmd_file=os.path.join(common.run_dir, 'qemu-trace2txt'),
|
||||
out_file=common.qemu_trace_txt_file,
|
||||
|
||||
Reference in New Issue
Block a user