fs.py (9408:10a84dceab25) fs.py (9539:0ac00d9a8aaf)
1# Copyright (c) 2010-2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 87 unchanged lines hidden (view full) ---

96 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0])
97elif buildEnv['TARGET_ISA'] == "mips":
98 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0])
99elif buildEnv['TARGET_ISA'] == "sparc":
100 test_sys = makeSparcSystem(test_mem_mode, bm[0])
101elif buildEnv['TARGET_ISA'] == "x86":
102 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
103elif buildEnv['TARGET_ISA'] == "arm":
1# Copyright (c) 2010-2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 87 unchanged lines hidden (view full) ---

96 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0])
97elif buildEnv['TARGET_ISA'] == "mips":
98 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0])
99elif buildEnv['TARGET_ISA'] == "sparc":
100 test_sys = makeSparcSystem(test_mem_mode, bm[0])
101elif buildEnv['TARGET_ISA'] == "x86":
102 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
103elif buildEnv['TARGET_ISA'] == "arm":
104 test_sys = makeArmSystem(test_mem_mode,
105 options.machine_type, bm[0],
106 bare_metal=options.bare_metal)
104 test_sys = makeArmSystem(test_mem_mode, options.machine_type, bm[0],
105 options.dtb_filename, bare_metal=options.bare_metal)
107else:
108 fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
109
110if options.kernel is not None:
111 test_sys.kernel = binary(options.kernel)
112
113if options.script is not None:
114 test_sys.readfile = options.script

--- 73 unchanged lines hidden ---
106else:
107 fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
108
109if options.kernel is not None:
110 test_sys.kernel = binary(options.kernel)
111
112if options.script is not None:
113 test_sys.readfile = options.script

--- 73 unchanged lines hidden ---