Commit 515761902275777bbde9158af1f87bbb80a2e915
Committed by
Tim Gover
1 parent
42a4ebd8
Update issue templates
Showing
2 changed files
with
79 additions
and
1 deletions
.github/ISSUE_TEMPLATE/bug_report.yml
0 → 100644
| 1 | +name: "Bug report" | |
| 2 | +description: Create a report to help us fix your issue | |
| 3 | +body: | |
| 4 | +- type: markdown | |
| 5 | + attributes: | |
| 6 | + value: | | |
| 7 | + **Is this the right place for my bug report?** | |
| 8 | + | |
| 9 | + This repository contains the host tools for booting a Raspberry Pi computer into mass-storage device mode. It also provides tools for updating the bootloader EEPROM and enabling secure-boot on CM4. | |
| 10 | + | |
| 11 | + * Please check the [rpiboot troubleshooting guide](https://github.com/raspberrypi/usbboot#troubleshooting) for advice about diagnosing problems with rpiboot. | |
| 12 | + * If you simply have a question, then [the Raspberry Pi forums](https://www.raspberrypi.org/forums) are the best place to ask it. | |
| 13 | + | |
| 14 | +- type: textarea | |
| 15 | + id: description | |
| 16 | + attributes: | |
| 17 | + label: Describe the bug | |
| 18 | + description: | | |
| 19 | + Add a clear and concise description of what you think the bug is. | |
| 20 | + validations: | |
| 21 | + required: true | |
| 22 | + | |
| 23 | +- type: textarea | |
| 24 | + id: reproduce | |
| 25 | + attributes: | |
| 26 | + label: Steps to reproduce the behaviour | |
| 27 | + description: | | |
| 28 | + List the steps required to reproduce the issue. | |
| 29 | + validations: | |
| 30 | + required: true | |
| 31 | + | |
| 32 | +- type: dropdown | |
| 33 | + id: model | |
| 34 | + attributes: | |
| 35 | + label: Device(s) | |
| 36 | + description: On which device(s) you are facing the bug? Please see the ["Product Information Portal"](https://pip.raspberrypi.com/) for information about products and hardware revisions. | |
| 37 | + | |
| 38 | + multiple: true | |
| 39 | + options: | |
| 40 | + - Raspberry Pi CM1 | |
| 41 | + - Raspberry Pi CM3 | |
| 42 | + - Raspberry Pi CM3+ | |
| 43 | + - Raspberry Pi CM4 | |
| 44 | + - Raspberry Pi CM4 Lite | |
| 45 | + - Raspberry Pi CM4 Revision 5 | |
| 46 | + - Raspberry Pi CM4 Revision 5 Lite | |
| 47 | + - Raspberry Pi CM4S | |
| 48 | + - Other | |
| 49 | + validations: | |
| 50 | + required: true | |
| 51 | + | |
| 52 | +- type: textarea | |
| 53 | + id: io_board | |
| 54 | + attributes: | |
| 55 | + label: Compute Module IO board. | |
| 56 | + description: | | |
| 57 | + For Compute Module issues please specify the type of the IO board. | |
| 58 | + validations: | |
| 59 | + required: false | |
| 60 | + | |
| 61 | +- type: textarea | |
| 62 | + id: rpiboot_logs | |
| 63 | + attributes: | |
| 64 | + label: RPIBOOT logs | |
| 65 | + description: | | |
| 66 | + Please paste the output of the rpiboot command here. | |
| 67 | + validations: | |
| 68 | + required: false | |
| 69 | + | |
| 70 | +- type: textarea | |
| 71 | + id: kernel_logs | |
| 72 | + attributes: | |
| 73 | + label: Kernel logs | |
| 74 | + description: | | |
| 75 | + In order to diagnose USB connection issues please check the Linux `dmesg` log for USB messages | |
| 76 | + * `sudo dmesg | grep -i usb` | |
| 77 | + validations: | |
| 78 | + required: false | ... | ... |