Deleted Added
sdiff udiff text old ( 10697:71c40e5c8bd4 ) new ( 10747:3fe41011333d )
full compact
1# Copyright (c) 2013 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

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

41import m5
42from m5.defines import buildEnv
43from m5.objects import *
44from Benchmarks import *
45
46import CpuConfig
47import MemConfig
48
49def _listCpuTypes(option, opt, value, parser):
50 CpuConfig.print_cpu_list()
51 sys.exit(0)
52
53def _listMemTypes(option, opt, value, parser):
54 MemConfig.print_mem_list()
55 sys.exit(0)
56

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

236
237def addFSOptions(parser):
238 # Simulation options
239 parser.add_option("--timesync", action="store_true",
240 help="Prevent simulated time from getting ahead of real time")
241
242 # System options
243 parser.add_option("--kernel", action="store", type="string")
244 parser.add_option("--script", action="store", type="string")
245 parser.add_option("--frame-capture", action="store_true",
246 help="Stores changed frame buffers from the VNC server to compressed "\
247 "files in the gem5 output directory")
248
249 if buildEnv['TARGET_ISA'] == "arm":
250 parser.add_option("--bare-metal", action="store_true",
251 help="Provide the raw system without the linux specific bits")

--- 35 unchanged lines hidden ---