summaryrefslogtreecommitdiff
path: root/configs/example/fs.py
diff options
context:
space:
mode:
Diffstat (limited to 'configs/example/fs.py')
-rw-r--r--configs/example/fs.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py
index abfd3cc47..5b5d26c90 100644
--- a/configs/example/fs.py
+++ b/configs/example/fs.py
@@ -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)