Options.py (10159:ca6f1407f8f8) Options.py (10512:b423e1d0735e)
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

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

236 parser.add_option("--frame-capture", action="store_true",
237 help="Stores changed frame buffers from the VNC server to compressed "\
238 "files in the gem5 output directory")
239
240 if buildEnv['TARGET_ISA'] == "arm":
241 parser.add_option("--bare-metal", action="store_true",
242 help="Provide the raw system without the linux specific bits")
243 parser.add_option("--machine-type", action="store", type="choice",
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

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

236 parser.add_option("--frame-capture", action="store_true",
237 help="Stores changed frame buffers from the VNC server to compressed "\
238 "files in the gem5 output directory")
239
240 if buildEnv['TARGET_ISA'] == "arm":
241 parser.add_option("--bare-metal", action="store_true",
242 help="Provide the raw system without the linux specific bits")
243 parser.add_option("--machine-type", action="store", type="choice",
244 choices=ArmMachineType.map.keys(), default="RealView_PBX")
244 choices=ArmMachineType.map.keys(), default="VExpress_EMM")
245 parser.add_option("--dtb-filename", action="store", type="string",
246 help="Specifies device tree blob file to use with device-tree-"\
247 "enabled kernels")
248 parser.add_option("--enable-context-switch-stats-dump", \
249 action="store_true", help="Enable stats dump at context "\
250 "switches and dump tasks file (required for Streamline)")
251
252 # Benchmark options

--- 15 unchanged lines hidden ---
245 parser.add_option("--dtb-filename", action="store", type="string",
246 help="Specifies device tree blob file to use with device-tree-"\
247 "enabled kernels")
248 parser.add_option("--enable-context-switch-stats-dump", \
249 action="store_true", help="Enable stats dump at context "\
250 "switches and dump tasks file (required for Streamline)")
251
252 # Benchmark options

--- 15 unchanged lines hidden ---