Options.py (11995:d3dbd5a6b19a) Options.py (12079:a5cc6df83fcf)
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

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

333 action="callback", callback=_listPlatformTypes,
334 help="List available platform types")
335 parser.add_option("--machine-type", action="store", type="choice",
336 choices=PlatformConfig.platform_names(),
337 default="VExpress_EMM")
338 parser.add_option("--dtb-filename", action="store", type="string",
339 help="Specifies device tree blob file to use with device-tree-"\
340 "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

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

333 action="callback", callback=_listPlatformTypes,
334 help="List available platform types")
335 parser.add_option("--machine-type", action="store", type="choice",
336 choices=PlatformConfig.platform_names(),
337 default="VExpress_EMM")
338 parser.add_option("--dtb-filename", action="store", type="string",
339 help="Specifies device tree blob file to use with device-tree-"\
340 "enabled kernels")
341 parser.add_option("--enable-security-extensions", action="store_true",
342 help="Turn on the ARM Security Extensions")
341 parser.add_option("--enable-context-switch-stats-dump", \
342 action="store_true", help="Enable stats dump at context "\
343 "switches and dump tasks file (required for Streamline)")
344
345 # Benchmark options
346 parser.add_option("--dual", action="store_true",
347 help="Simulate two systems attached with an ethernet link")
348 parser.add_option("-b", "--benchmark", action="store", type="string",

--- 22 unchanged lines hidden ---
343 parser.add_option("--enable-context-switch-stats-dump", \
344 action="store_true", help="Enable stats dump at context "\
345 "switches and dump tasks file (required for Streamline)")
346
347 # Benchmark options
348 parser.add_option("--dual", action="store_true",
349 help="Simulate two systems attached with an ethernet link")
350 parser.add_option("-b", "--benchmark", action="store", type="string",

--- 22 unchanged lines hidden ---