config.py 336 B

1234567891011
  1. '''
  2. https://github.com/cirosantilli/linux-kernel-module-cheat#default-command-line-arguments
  3. '''
  4. def set_args(args, script_name):
  5. args['arch'] = 'aarch64'
  6. args['emulators'] = ['gem5']
  7. if script_name == 'build-gem5':
  8. # This argument is defined only for ./build-gem5.
  9. args['extra_scons_args'] = ['ADSF=qwer']