mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
11 lines
329 B
Python
11 lines
329 B
Python
'''
|
|
https://cirosantilli.com/linux-kernel-module-cheat#default-command-line-arguments
|
|
'''
|
|
|
|
def set_args(args, script_name):
|
|
args['arch'] = 'aarch64'
|
|
args['emulators'] = ['gem5']
|
|
if script_name == 'build-gem5':
|
|
# This argument is defined only for ./build-gem5.
|
|
args['extra_scons_args'] = ['ADSF=qwer']
|