From 79dac89552e7ef0fa4376ba028b10ad7d2f1ca69 Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Wed, 23 Feb 2011 15:10:48 -0600 Subject: ARM: Clarifies creation of Linux and baremetal ARM systems. makeArmSystem creates both bare-metal and Linux systems more cleanly. machine_type was never optional though listed as an optional argument; a system such as "RealView_PBX" must now be explicitly specified. Now that it is a required argument, the placement of the arguments has changed slightly requiring some changes to calls that create ARM systems. --- tests/configs/realview-simple-atomic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/configs/realview-simple-atomic.py') diff --git a/tests/configs/realview-simple-atomic.py b/tests/configs/realview-simple-atomic.py index c20a67df7..ab6d612d4 100644 --- a/tests/configs/realview-simple-atomic.py +++ b/tests/configs/realview-simple-atomic.py @@ -68,7 +68,7 @@ class IOCache(BaseCache): #cpu cpu = AtomicSimpleCPU(cpu_id=0) #the system -system = FSConfig.makeLinuxArmSystem('atomic', None, False, "RealView_PBX") +system = FSConfig.makeArmSystem('atomic', "RealView_PBX", None, False) system.bridge.filter_ranges_a=[AddrRange(0, Addr.max)] system.bridge.filter_ranges_b=[AddrRange(0, size='128MB')] system.iocache = IOCache() -- cgit v1.2.3