wip manager upgrades

This commit is contained in:
Sagar Karandikar 2020-02-07 06:30:44 +00:00
parent 5816d9e51f
commit 3f92592e1d
2 changed files with 6 additions and 1 deletions

View File

@ -217,7 +217,7 @@ def launch_run_instances(instancetype, count, fsimclustertag, instancemarket, sp
{
'DeviceName': '/dev/sda1',
'Ebs': {
'VolumeSize': 300,
'VolumeSize': 300, # TODO: make this configurable from .ini?
'VolumeType': 'gp2',
},
},

View File

@ -325,6 +325,11 @@ class FireSimServerNode(FireSimNode):
all_paths.append([self.server_hardware_config.get_local_driver_path(), ''])
all_paths.append([self.server_hardware_config.get_local_runtime_conf_path(), ''])
all_paths.append([self.server_hardware_config.get_local_assert_def_path(), ''])
# shared libraries
all_paths.append(["$RISCV/lib/libdwarf.so", "libdwarf.so.1"])
all_paths.append(["$RISCV/lib/libelf.so", "libelf.so.1"])
all_paths += self.get_job().get_siminputs()
return all_paths