Options.py (13606:2ad4449e6cb4) Options.py (13731:67cd980cb20f)
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

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

334
335 # Simulation options
336 parser.add_option("--timesync", action="store_true",
337 help="Prevent simulated time from getting ahead of real time")
338
339 # System options
340 parser.add_option("--kernel", action="store", type="string")
341 parser.add_option("--os-type", action="store", type="choice",
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

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

334
335 # Simulation options
336 parser.add_option("--timesync", action="store_true",
337 help="Prevent simulated time from getting ahead of real time")
338
339 # System options
340 parser.add_option("--kernel", action="store", type="string")
341 parser.add_option("--os-type", action="store", type="choice",
342 choices=os_types[buildEnv['TARGET_ISA']], default="linux",
343 help="Specifies type of OS to boot")
342 choices=os_types[str(buildEnv['TARGET_ISA'])],
343 default="linux",
344 help="Specifies type of OS to boot")
344 parser.add_option("--script", action="store", type="string")
345 parser.add_option("--frame-capture", action="store_true",
346 help="Stores changed frame buffers from the VNC server to compressed "\
347 "files in the gem5 output directory")
348
349 if buildEnv['TARGET_ISA'] == "arm":
350 parser.add_option("--bare-metal", action="store_true",
351 help="Provide the raw system without the linux specific bits")

--- 41 unchanged lines hidden ---
345 parser.add_option("--script", action="store", type="string")
346 parser.add_option("--frame-capture", action="store_true",
347 help="Stores changed frame buffers from the VNC server to compressed "\
348 "files in the gem5 output directory")
349
350 if buildEnv['TARGET_ISA'] == "arm":
351 parser.add_option("--bare-metal", action="store_true",
352 help="Provide the raw system without the linux specific bits")

--- 41 unchanged lines hidden ---