Options.py (9520:ea7c03ae2d5e) Options.py (9539:0ac00d9a8aaf)
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

168 help="Stores changed frame buffers from the VNC server to compressed "\
169 "files in the gem5 output directory")
170
171 if buildEnv['TARGET_ISA'] == "arm":
172 parser.add_option("--bare-metal", action="store_true",
173 help="Provide the raw system without the linux specific bits")
174 parser.add_option("--machine-type", action="store", type="choice",
175 choices=ArmMachineType.map.keys(), default="RealView_PBX")
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

168 help="Stores changed frame buffers from the VNC server to compressed "\
169 "files in the gem5 output directory")
170
171 if buildEnv['TARGET_ISA'] == "arm":
172 parser.add_option("--bare-metal", action="store_true",
173 help="Provide the raw system without the linux specific bits")
174 parser.add_option("--machine-type", action="store", type="choice",
175 choices=ArmMachineType.map.keys(), default="RealView_PBX")
176 parser.add_option("--dtb-filename", action="store", type="string",
177 help="Specifies device tree blob file to use with device-tree-"\
178 "enabled kernels")
176 # Benchmark options
177 parser.add_option("--dual", action="store_true",
178 help="Simulate two systems attached with an ethernet link")
179 parser.add_option("-b", "--benchmark", action="store", type="string",
180 dest="benchmark",
181 help="Specify the benchmark to run. Available benchmarks: %s"\
182 % DefinedBenchmarks)
183

--- 12 unchanged lines hidden ---
179 # Benchmark options
180 parser.add_option("--dual", action="store_true",
181 help="Simulate two systems attached with an ethernet link")
182 parser.add_option("-b", "--benchmark", action="store", type="string",
183 dest="benchmark",
184 help="Specify the benchmark to run. Available benchmarks: %s"\
185 % DefinedBenchmarks)
186

--- 12 unchanged lines hidden ---