summaryrefslogtreecommitdiff
path: root/configs/example/se.py
diff options
context:
space:
mode:
authorTushar Krishna <tushar@ece.gatech.edu>2016-10-06 14:35:17 -0400
committerTushar Krishna <tushar@ece.gatech.edu>2016-10-06 14:35:17 -0400
commitb9e23a6d741cdcdf0ffb7364c6aae36a487335ef (patch)
treed81337a49324e0aa1829308aa76a93e8b3144997 /configs/example/se.py
parent0f68b50ff11a957a9c8d31b592c75e659f8a1023 (diff)
downloadgem5-b9e23a6d741cdcdf0ffb7364c6aae36a487335ef.tar.xz
config: add a separate config file for the network.
This patch adds a new file configs/network/Network.py to setup the network, instead of doing that within Ruby.py.
Diffstat (limited to 'configs/example/se.py')
-rw-r--r--configs/example/se.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/example/se.py b/configs/example/se.py
index 1b3458709..238aa9e64 100644
--- a/configs/example/se.py
+++ b/configs/example/se.py
@@ -53,9 +53,11 @@ from m5.util import addToPath, fatal
addToPath('../common')
addToPath('../ruby')
+addToPath('../network')
import Options
import Ruby
+import Network
import Simulation
import CacheConfig
import CpuConfig
@@ -127,6 +129,7 @@ Options.addSEOptions(parser)
if '--ruby' in sys.argv:
Ruby.define_options(parser)
+ Network.define_options(parser)
(options, args) = parser.parse_args()