diff options
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/FSConfig.py | 3 | ||||
-rw-r--r-- | configs/common/Simulation.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index 05888b10b..7ba1b001c 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -72,7 +72,8 @@ def makeLinuxAlphaSystem(mem_mode, mdesc = None): self.mem_mode = mem_mode self.sim_console = SimConsole(listener=ConsoleListener(port=3456)) self.kernel = binary('vmlinux') - self.pal = binary('ts_osfpal') +## self.pal = binary('ts_osfpal') + self.pal = '/z/hsul/work/m5/alpha-system/palcode/ts_osfpal' self.console = binary('console') self.boot_osflags = 'root=/dev/hda1 console=ttyS0' diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index a2d045a5e..5e9c1d339 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -30,7 +30,7 @@ from os import getcwd import m5 from m5.objects import * m5.AddToPath('../common') -from Caches import * +from Caches import L1Cache def run(options, root, testsys): if options.maxtick: |