From 252a463b6beadd6c12afdaa4650fde08ee82067a Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sun, 23 Nov 2014 18:00:47 -0800 Subject: Backed out prior changeset f9fb64a72259 Back out use of importlib to avoid implicitly creating dependency on Python 2.7. --- configs/ruby/Ruby.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'configs/ruby') diff --git a/configs/ruby/Ruby.py b/configs/ruby/Ruby.py index 98df027dc..44d6bdfcc 100644 --- a/configs/ruby/Ruby.py +++ b/configs/ruby/Ruby.py @@ -39,7 +39,6 @@ # # Authors: Brad Beckmann -import importlib import math import m5 from m5.objects import * @@ -183,15 +182,15 @@ def create_system(options, full_system, system, piobus = None, dma_ports = []): routers = [], ext_links = [], int_links = [], netifs = []) ruby.network = network - protocol_name = buildEnv['PROTOCOL'] - protocol = importlib.import_module(protocol_name) + protocol = buildEnv['PROTOCOL'] + exec "import %s" % protocol try: (cpu_sequencers, dir_cntrls, topology) = \ - protocol.create_system(options, full_system, system, dma_ports, - ruby) + eval("%s.create_system(options, full_system, system, dma_ports,\ + ruby)" + % protocol) except: - print "Error: could not create sytem for ruby protocol %s" % \ - protocol_name + print "Error: could not create sytem for ruby protocol %s" % protocol raise # Create a port proxy for connecting the system port. This is -- cgit v1.2.3