Scripts: Check for the appropriate build type as soon as possible.

This commit is contained in:
Ali Saidi 2008-06-13 01:09:06 -04:00
parent 907b28cc62
commit 7e6728450f
2 changed files with 8 additions and 3 deletions

View file

@ -29,6 +29,10 @@
import optparse, os, sys
import m5
if not m5.build_env['FULL_SYSTEM']:
m5.panic("This script requires full-system mode (*_FS).")
from m5.objects import *
m5.AddToPath('../common')
from FSConfig import *
@ -37,9 +41,6 @@ from Benchmarks import *
import Simulation
from Caches import *
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)

View file

@ -31,6 +31,10 @@
# "m5 test.py"
import m5
if m5.build_env['FULL_SYSTEM']:
m5.panic("This script requires syscall emulation mode (*_SE).")
from m5.objects import *
import os, optparse, sys
m5.AddToPath('../common')