mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 19:51:35 +01:00
start porting build
This commit is contained in:
4
run
4
run
@@ -351,7 +351,7 @@ Run QEMU with VNC instead of the default SDL. Connect to it with:
|
||||
if self.env['gem5_script'] == 'fs':
|
||||
# TODO port
|
||||
if self.env['gem5_restore'] is not None:
|
||||
cpt_dirs = self.gem_list_checkpoint_dirs()
|
||||
cpt_dirs = self.gem5_list_checkpoint_dirs()
|
||||
cpt_dir = cpt_dirs[-self.env['gem5_restore']]
|
||||
extra_emulator_args.extend(['-r', str(sorted(cpt_dirs).index(cpt_dir) + 1)])
|
||||
cmd.extend([
|
||||
@@ -401,7 +401,7 @@ Run QEMU with VNC instead of the default SDL. Connect to it with:
|
||||
else:
|
||||
cpu_type = 'atomic'
|
||||
if self.env['gem5_restore'] is not None:
|
||||
cpt_dir = self.gem_list_checkpoint_dirs()[-self.env['gem5_restore']]
|
||||
cpt_dir = self.gem5_list_checkpoint_dirs()[-self.env['gem5_restore']]
|
||||
extra_emulator_args.extend(['--restore-from', os.path.join(self.env['m5out_dir'], cpt_dir)])
|
||||
cmd.extend([
|
||||
os.path.join(self.env['gem5_source_dir'], 'configs', 'example', 'arm', 'fs_bigLITTLE.py'), LF,
|
||||
|
||||
Reference in New Issue
Block a user