blob: a5ceffb4f0ecd0a6a58cc6e4fc0aa8771d7a7893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
# TianoCore edk2 GitHub Bug Report Template
#
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
name: 🐛 Bug Report
description: File a bug report
title: "[Bug]: <title>"
labels: ["type:bug", "state:needs-triage"]
body:
- type: markdown
attributes:
value: |
👋 Thanks for taking the time to fill out this bug report!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: |
Please search to see if an issue already exists for the bug you encountered.
[Seach existing issues](https://github.com/tianocore/edk2/issues)
options:
- label: I have searched existing issues
required: true
- type: checkboxes
id: bug_type
attributes:
label: Bug Type
description: |
What type of code does this bug affect?
options:
- label: Firmware
- label: Tool
- label: Unit Test
- type: checkboxes
id: code_first
attributes:
label: Code first?
description: |
Is this part of a [code first](https://github.com/tianocore/tianocore.github.io/wiki/EDK-II-Code-First-Process) change?
options:
- label: "Yes"
- type: dropdown
id: packages_impacted
attributes:
label: What packages are impacted?
description: |
*Select all that apply*
multiple: true
options:
- ArmPkg
- ArmPlatformPkg
- ArmVirtPkg
- BaseTools
- Build or CI Code
- CryptoPkg
- DynamicTablesPkg
- EmbeddedPkg
- EmulatorPkg
- FatPkg
- FmpDevicePkg
- IntelFsp2Pkg
- IntelFsp2WrapperPkg
- MdeModulePkg
- MdePkg
- NetworkPkg
- OvmfPkg
- PcAtChipsetPkg
- PrmPkg
- RedfishPkg
- SecurityPkg
- ShellPkg
- SignedCapsulePkg
- SourceLevelDebugPkg
- StandaloneMmPkg
- UefiCpuPkg
- UefiPayloadPkg
- UnitTestFrameworkPkg
- Other
validations:
required: true
- type: dropdown
id: targets_impacted
attributes:
label: Which targets are impacted by this bug?
description: |
*Select all that apply*
multiple: true
options:
- DEBUG
- NO-TARGET
- NOOPT
- RELEASE
- type: textarea
id: current_behavior
attributes:
label: Current Behavior
description: A concise description of the bug that you're experiencing.
validations:
required: true
- type: textarea
id: expected_behavior
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: true
- type: textarea
id: steps_to_reproduce
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
<example>
1. In this environment (OS, toolchain, platform info, etc.)...
2. Acquire the source code using these commands...
3. Build the code using these commands...
4. Flash the image using these commands...
5. Boot using this process...
6. Change option(s)...
7. See error...
validations:
required: true
- type: textarea
id: build_environment
attributes:
label: Build Environment
description: |
Examples:
- **OS**: Ubuntu 24.04 or Windows 11...
- **Tool Chain**: GCC5 or VS2022 or CLANGPDB...
value: |
- OS(s):
- Tool Chain(s):
render: markdown
validations:
required: true
- type: textarea
id: version_info
attributes:
label: Version Information
description: >
What version of this repo is known to reproduce the problem?
The problem is assumed to be present from this version and later. If an earlier version is not known other than
the latest commit, indicate that and put the current *edk2/master* commit SHA.
placeholder: |
Commit: <SHA>
-or-
Tag: <Tag>
render: text
validations:
required: true
- type: markdown
attributes:
value: |
**Urgency Key**
- 🟢 **Low**
- A minor change with little to no important functional impact
- It is not important to fix this in a specific time frame
- 🟡 **Medium**
- An important change with a functional impact
- Will be prioritized above *low* issues in the normal course of development
- 🔥 **High**
- A critical change that has a significant functional impact
- Must be fixed immediately
- type: dropdown
id: urgency
attributes:
label: Urgency
description: How urgent is it to fix this bug?
multiple: false
options:
- Low
- Medium
- High
validations:
required: true
- type: dropdown
id: fix_owner
attributes:
label: Are you going to fix this?
description: Indicate if you are going to fix this or requesting someone else fix it.
multiple: false
options:
- I will fix it
- Someone else needs to fix it
validations:
required: true
- type: dropdown
id: needs_maintainer_feedback
attributes:
label: Do you need maintainer feedback?
description: Indicate if you would like a maintainer to provide feedback on this submission.
multiple: false
options:
- No maintainer feedback needed
- Maintainer feedback requested
validations:
required: true
- type: textarea
id: anything_else
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering.
Serial debug logs and/or debugger logs are especially helpful!
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
|