mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 19:21:35 +01:00
7 lines
229 B
Python
7 lines
229 B
Python
def set_args(args, script_name):
|
|
args['arch'] = 'aarch64'
|
|
args['gem5'] = True
|
|
if script_name == 'build-gem5':
|
|
# This argument is defined only for ./build-gem5.
|
|
args['extra_scons_args'] = ['ADSF=qwer']
|