Options.py (10613:9d0aef7a9b2e) Options.py (10620:74834c49fbbe)
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

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

85 parser.add_option("--list-mem-types",
86 action="callback", callback=_listMemTypes,
87 help="List available memory types")
88 parser.add_option("--mem-type", type="choice", default="ddr3_1600_x64",
89 choices=MemConfig.mem_names(),
90 help = "type of memory to use")
91 parser.add_option("--mem-channels", type="int", default=1,
92 help = "number of memory channels")
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

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

85 parser.add_option("--list-mem-types",
86 action="callback", callback=_listMemTypes,
87 help="List available memory types")
88 parser.add_option("--mem-type", type="choice", default="ddr3_1600_x64",
89 choices=MemConfig.mem_names(),
90 help = "type of memory to use")
91 parser.add_option("--mem-channels", type="int", default=1,
92 help = "number of memory channels")
93 parser.add_option("--mem-ranks", type="int", default=None,
94 help = "number of memory ranks per channel")
93 parser.add_option("--mem-size", action="store", type="string",
94 default="512MB",
95 help="Specify the physical memory size (single memory)")
96
97 parser.add_option("-l", "--lpae", action="store_true")
98 parser.add_option("-V", "--virtualisation", action="store_true")
99
100 parser.add_option("--memchecker", action="store_true")

--- 182 unchanged lines hidden ---
95 parser.add_option("--mem-size", action="store", type="string",
96 default="512MB",
97 help="Specify the physical memory size (single memory)")
98
99 parser.add_option("-l", "--lpae", action="store_true")
100 parser.add_option("-V", "--virtualisation", action="store_true")
101
102 parser.add_option("--memchecker", action="store_true")

--- 182 unchanged lines hidden ---