Options.py (10620:74834c49fbbe) Options.py (10697:71c40e5c8bd4)
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

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

269 # Metafile options
270 parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
271 help="Specify the filename to dump a pcap capture of the" \
272 "ethernet traffic")
273
274 # Disk Image Options
275 parser.add_option("--disk-image", action="store", type="string", default=None,
276 help="Path to the disk image to use.")
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

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

269 # Metafile options
270 parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
271 help="Specify the filename to dump a pcap capture of the" \
272 "ethernet traffic")
273
274 # Disk Image Options
275 parser.add_option("--disk-image", action="store", type="string", default=None,
276 help="Path to the disk image to use.")
277 parser.add_option("--root-device", action="store", type="string", default=None,
278 help="OS device name for root partition")
277
278 # Command line options
279 parser.add_option("--command-line", action="store", type="string",
280 default=None,
281 help="Template for the kernel command line.")
282 parser.add_option("--command-line-file", action="store",
283 default=None, type="string",
284 help="File with a template for the kernel command line")
279
280 # Command line options
281 parser.add_option("--command-line", action="store", type="string",
282 default=None,
283 help="Template for the kernel command line.")
284 parser.add_option("--command-line-file", action="store",
285 default=None, type="string",
286 help="File with a template for the kernel command line")