Use some python os.path stuff to make it more flexible where we can execute this...
authorKevin Lim <ktlim@umich.edu>
Mon, 30 Oct 2006 19:01:34 +0000 (14:01 -0500)
committerKevin Lim <ktlim@umich.edu>
Mon, 30 Oct 2006 19:01:34 +0000 (14:01 -0500)
--HG--
extra : convert_revision : a76861a0f2669a7cd3bf3a34177739c69a913545

configs/example/fs.py
configs/example/se.py

index ec3be835a4b99a56092866436f40045ec126a1b1..aefa261691d488f210f07c85a7873c2e2d225ebe 100644 (file)
@@ -39,6 +39,10 @@ import Simulation
 if not m5.build_env['FULL_SYSTEM']:
     m5.panic("This script requires full-system mode (ALPHA_FS).")
 
+# Get paths we might need.  It's expected this file is in m5/configs/example.
+config_path = os.path.dirname(os.path.abspath(__file__))
+config_root = os.path.dirname(config_path)
+
 parser = optparse.OptionParser()
 
 # Benchmark options
@@ -54,8 +58,7 @@ parser.add_option("--etherdump", action="store", type="string", dest="etherdump"
                   help="Specify the filename to dump a pcap capture of the" \
                   "ethernet traffic")
 
-
-execfile("Options.py")
+execfile(os.path.join(config_root, "common", "Options.py"))
 
 (options, args) = parser.parse_args()
 
index e4fe9329477d9e5619d19d25ed1be1a5c3ebe4f3..1afeaf39189d03c19e5cd4dae6629b9047ecc706 100644 (file)
@@ -36,11 +36,16 @@ import os, optparse, sys
 m5.AddToPath('../common')
 import Simulation
 
+# Get paths we might need.  It's expected this file is in m5/configs/example.
+config_path = os.path.dirname(os.path.abspath(__file__))
+config_root = os.path.dirname(config_path)
+m5_root = os.path.dirname(config_root)
+
 parser = optparse.OptionParser()
 
 # Benchmark options
 parser.add_option("-c", "--cmd",
-                  default="../../tests/test-progs/hello/bin/alpha/linux/hello",
+                  default=os.path.join(m5_root, "tests/test-progs/hello/bin/alpha/linux/hello"),
                   help="The binary to run in syscall emulation mode.")
 parser.add_option("-o", "--options", default="",
                   help="The options to pass to the binary, use \" \" around the entire\
@@ -48,7 +53,7 @@ parser.add_option("-o", "--options", default="",
 parser.add_option("-i", "--input", default="",
                   help="A file of input to give to the binary.")
 
-execfile("Options.py")
+execfile(os.path.join(config_root, "common", "Options.py"))
 
 (options, args) = parser.parse_args()