mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-28 12:34:26 +01:00
give up on trac2line full porting, just call sh script for now
This commit is contained in:
8
runtc
8
runtc
@@ -1,5 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
@@ -30,4 +31,9 @@ parser.add_argument(
|
||||
nargs='*'
|
||||
)
|
||||
args = common.setup(parser)
|
||||
sys.exit(subprocess.Popen([common.get_toolchain_tool(args.tool)] + args.extra_args).wait())
|
||||
sys.exit(common.run_cmd(
|
||||
[common.get_toolchain_tool(args.tool)] + args.extra_args,
|
||||
cmd_file=os.path.join(common.run_dir, 'runtc.sh'),
|
||||
cwd=common.linux_variant_dir,
|
||||
show_cmd=False,
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user