Options.py (10512:b423e1d0735e) Options.py (10594:4fdc929c0aaa)
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

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

260 # Metafile options
261 parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
262 help="Specify the filename to dump a pcap capture of the" \
263 "ethernet traffic")
264
265 # Disk Image Options
266 parser.add_option("--disk-image", action="store", type="string", default=None,
267 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

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

260 # Metafile options
261 parser.add_option("--etherdump", action="store", type="string", dest="etherdump",
262 help="Specify the filename to dump a pcap capture of the" \
263 "ethernet traffic")
264
265 # Disk Image Options
266 parser.add_option("--disk-image", action="store", type="string", default=None,
267 help="Path to the disk image to use.")
268
269 # Command line options
270 parser.add_option("--command-line", action="store", type="string",
271 default=None,
272 help="Template for the kernel command line.")
273 parser.add_option("--command-line-file", action="store",
274 default=None, type="string",
275 help="File with a template for the kernel command line")