mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
17 lines
345 B
Python
Executable File
17 lines
345 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
import common
|
|
|
|
parser = self.get_argparse(
|
|
default_args={'gem5':True},
|
|
argparse_args={'description':'Connect a terminal to a running gem5 instance'}
|
|
)
|
|
args = self.setup(parser)
|
|
sys.exit(self.sh.run_cmd([
|
|
kwargs['gem5_m5term'], LF,
|
|
'localhost', LF,
|
|
str(kwargs['gem5_telnet_port']), LF,
|
|
]))
|