mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-28 12:34:26 +01:00
gem5-shell: fix after removal of --gem5
This commit is contained in:
committed by
Ciro Santilli 六四事件 法轮功
parent
46bf33fb4e
commit
22e26aa002
@@ -16,7 +16,7 @@ parser = self.get_argparse(
|
|||||||
More information at: https://github.com/cirosantilli/linux-kernel-module-cheat#bisection
|
More information at: https://github.com/cirosantilli/linux-kernel-module-cheat#bisection
|
||||||
'''},
|
'''},
|
||||||
default_args={
|
default_args={
|
||||||
'gem5': True,
|
'emulators': ['gem5'],
|
||||||
'linux_build_id': 'bisect',
|
'linux_build_id': 'bisect',
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
def set_args(args, script_name):
|
def set_args(args, script_name):
|
||||||
args['arch'] = 'aarch64'
|
args['arch'] = 'aarch64'
|
||||||
args['gem5'] = True
|
args['emulators'] = ['gem5']
|
||||||
if script_name == 'build-gem5':
|
if script_name == 'build-gem5':
|
||||||
# This argument is defined only for ./build-gem5.
|
# This argument is defined only for ./build-gem5.
|
||||||
args['extra_scons_args'] = ['ADSF=qwer']
|
args['extra_scons_args'] = ['ADSF=qwer']
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ class Main(common.LkmcCliFunction):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__(
|
super().__init__(
|
||||||
defaults={
|
defaults={
|
||||||
'gem5': True,
|
'emulators': ['gem5'],
|
||||||
},
|
},
|
||||||
description='Connect a terminal to a running gem5 instance',
|
description='Connect a terminal to a running gem5 instance',
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user