Deleted Added
sdiff udiff text old ( 11251:a15c86af004a ) new ( 11291:9d2364203316 )
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

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

292 "enabled kernels")
293 parser.add_option("--enable-context-switch-stats-dump", \
294 action="store_true", help="Enable stats dump at context "\
295 "switches and dump tasks file (required for Streamline)")
296
297 # Benchmark options
298 parser.add_option("--dual", action="store_true",
299 help="Simulate two systems attached with an ethernet link")
300 parser.add_option("-b", "--benchmark", action="store", type="string",
301 dest="benchmark",
302 help="Specify the benchmark to run. Available benchmarks: %s"\
303 % DefinedBenchmarks)
304
305 # Metafile options
306 parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
307 help="Specify the filename to dump a pcap capture of the" \
308 "ethernet traffic")
309
310 # Disk Image Options
311 parser.add_option("--disk-image", action="store", type="string", default=None,
312 help="Path to the disk image to use.")
313 parser.add_option("--root-device", action="store", type="string", default=None,
314 help="OS device name for root partition")
315
316 # Command line options
317 parser.add_option("--command-line", action="store", type="string",
318 default=None,
319 help="Template for the kernel command line.")
320 parser.add_option("--command-line-file", action="store",
321 default=None, type="string",
322 help="File with a template for the kernel command line")