Options.py (9909:0679c3554ba3) Options.py (9935:cc9dc514036e)
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

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

227 if buildEnv['TARGET_ISA'] == "arm":
228 parser.add_option("--bare-metal", action="store_true",
229 help="Provide the raw system without the linux specific bits")
230 parser.add_option("--machine-type", action="store", type="choice",
231 choices=ArmMachineType.map.keys(), default="RealView_PBX")
232 parser.add_option("--dtb-filename", action="store", type="string",
233 help="Specifies device tree blob file to use with device-tree-"\
234 "enabled kernels")
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

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

227 if buildEnv['TARGET_ISA'] == "arm":
228 parser.add_option("--bare-metal", action="store_true",
229 help="Provide the raw system without the linux specific bits")
230 parser.add_option("--machine-type", action="store", type="choice",
231 choices=ArmMachineType.map.keys(), default="RealView_PBX")
232 parser.add_option("--dtb-filename", action="store", type="string",
233 help="Specifies device tree blob file to use with device-tree-"\
234 "enabled kernels")
235 parser.add_option("--enable-context-switch-stats-dump", \
236 action="store_true", help="Enable stats dump at context "\
237 "switches and dump tasks file (required for Streamline)")
238
235 # Benchmark options
236 parser.add_option("--dual", action="store_true",
237 help="Simulate two systems attached with an ethernet link")
238 parser.add_option("-b", "--benchmark", action="store", type="string",
239 dest="benchmark",
240 help="Specify the benchmark to run. Available benchmarks: %s"\
241 % DefinedBenchmarks)
242
243 # Metafile options
244 parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
245 help="Specify the filename to dump a pcap capture of the" \
246 "ethernet traffic")
247
248 # Disk Image Options
249 parser.add_option("--disk-image", action="store", type="string", default=None,
250 help="Path to the disk image to use.")
239 # Benchmark options
240 parser.add_option("--dual", action="store_true",
241 help="Simulate two systems attached with an ethernet link")
242 parser.add_option("-b", "--benchmark", action="store", type="string",
243 dest="benchmark",
244 help="Specify the benchmark to run. Available benchmarks: %s"\
245 % DefinedBenchmarks)
246
247 # Metafile options
248 parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
249 help="Specify the filename to dump a pcap capture of the" \
250 "ethernet traffic")
251
252 # Disk Image Options
253 parser.add_option("--disk-image", action="store", type="string", default=None,
254 help="Path to the disk image to use.")