Lines Matching +full:- +full:- +full:no +full:- +full:verbose
5 # SPDX-License-Identifier: Apache-2.0
14 which is a link of the Zephyr kernel without various build-time
51 if not args.verbose:
66 gate_type = 0xE # 32-bit interrupt gate
79 gate_type = 0x5 # 32-bit task gate
119 # No IRQ associated; exception or software interrupt
120 if irq == -1:
140 # Pass 1: sanity check and set up hard-coded interrupt vectors
142 if vec == -1:
143 if prio == -1:
157 # Pass 2: set up priority-based interrupt vectors
159 if vec != -1:
169 if vec == -1:
230 debug("spurious handler (no code) : %s" % hex(header[1]))
237 debug("--------------------------")
242 "-" if irq[1] == -1 else irq[1],
243 "-" if irq[2] == -1 else irq[2],
244 "-" if irq[3] == -1 else irq[3],
256 parser.add_argument("-m", "--vector-map", required=True,
258 parser.add_argument("-o", "--output-idt", required=True,
260 parser.add_argument("-a", "--output-vectors-alloc", required=False,
262 parser.add_argument("-k", "--kernel", required=True,
264 parser.add_argument("-v", "--verbose", action="store_true",
267 if "VERBOSE" in os.environ:
268 args.verbose = 1