this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Issue Templates (#832)

* Add Some Issue Templates

* Improve

* Improve Templates

* Add Code Blocks

* Reword

* Reword LKM Bug Description

* Add dmesg Output

authored by

TheBrokenRail and committed by
GitHub
69a3b397 77da61ee

+165
+21
.github/ISSUE_TEMPLATE/build_issue.md
··· 1 + --- 2 + name: Build Issue 3 + about: An issue building Darling 4 + labels: 'build' 5 + --- 6 + 7 + **Build Log** 8 + What is the build error? 9 + ``` 10 + Put the build log here! 11 + ``` 12 + 13 + **System Information** 14 + What system are you building with? 15 + 16 + | Software | Version | 17 + | --- | --- | 18 + | Clang | X.Y.Z | 19 + | CMake | X.Y.Z | 20 + | Linux Kernel | X.Y.Z | 21 + | Darling | Git Commit Hash |
+28
.github/ISSUE_TEMPLATE/lkm_bug.md
··· 1 + --- 2 + name: LKM Bug 3 + about: An issue with the Linux kernel module 4 + labels: 'bug, linux kernel module' 5 + --- 6 + 7 + **Expected Result** 8 + What did you expect to happen? 9 + 10 + **Actual Result** 11 + What did happen? 12 + 13 + **Steps To Reproduce** 14 + 1. If possible, what steps can you take to reproduce the issue? 15 + 16 + **``dmesg`` Output** 17 + Run ```dmesg | grep 'overlay\|darling'``` 18 + ``` 19 + Put the command output here! 20 + ``` 21 + 22 + **System Information** 23 + What system are you using? 24 + 25 + | Software | Version | 26 + | --- | --- | 27 + | Linux Kernel | X.Y.Z | 28 + | Darling | Git Commit Hash |
+22
.github/ISSUE_TEMPLATE/misc_bug.md
··· 1 + --- 2 + name: Miscellaneous Bug 3 + about: A miscellaneous bug in Darling 4 + labels: 'bug' 5 + --- 6 + 7 + **Expected Result** 8 + What did you expect to happen? 9 + 10 + **Actual Result** 11 + What did happen? 12 + 13 + **Steps To Reproduce** 14 + 1. If possible, what steps can you take to reproduce the issue? 15 + 16 + **System Information** 17 + What system are you using? 18 + 19 + | Software | Version | 20 + | --- | --- | 21 + | Linux Kernel | X.Y.Z | 22 + | Darling | Git Commit Hash |
+21
.github/ISSUE_TEMPLATE/missing_framework.md
··· 1 + --- 2 + name: Missing Framework 3 + about: An application requires a missing framework 4 + labels: 'frameworks, application compatibility' 5 + --- 6 + 7 + **Framework** 8 + What framework is required? What does Apple's developer documentation say about it? Is it open-source? 9 + 10 + **Test Application** 11 + What application requires this framework? 12 + 13 + **Steps To Reproduce** 14 + 1. If possible, what steps can you take to reproduce the issue? 15 + 16 + **System Information** 17 + What system are you running? 18 + 19 + | Software | Version | 20 + | --- | --- | 21 + | Darling | Git Commit Hash |
+21
.github/ISSUE_TEMPLATE/missing_library.md
··· 1 + --- 2 + name: Missing Library 3 + about: An application requires a missing library 4 + labels: 'libraries, application compatibility' 5 + --- 6 + 7 + **Library** 8 + What library is required? What does Apple's developer documentation say about it? Is it open-source? 9 + 10 + **Test Application** 11 + What application requires this library? 12 + 13 + **Steps To Reproduce** 14 + 1. If possible, what steps can you take to reproduce the issue? 15 + 16 + **System Information** 17 + What system are you running? 18 + 19 + | Software | Version | 20 + | --- | --- | 21 + | Darling | Git Commit Hash |
+18
.github/ISSUE_TEMPLATE/missing_tool.md
··· 1 + --- 2 + name: Missing Built-In Tool 3 + about: MacOS contains a command-line tool that Darling does not 4 + labels: 'enhancement' 5 + --- 6 + 7 + **Tool** 8 + What tool is missing? What is it supposed to do? Is it or a variant open-source? 9 + 10 + **Example Command** 11 + What is an example command for this tool? 12 + 13 + **System Information** 14 + What system are you running? 15 + 16 + | Software | Version | 17 + | --- | --- | 18 + | Darling | Git Commit Hash |
+34
.github/ISSUE_TEMPLATE/startup_bug.md
··· 1 + --- 2 + name: Startup Bug 3 + about: An issue with Darling's startup 4 + labels: 'bug, container' 5 + --- 6 + 7 + **Expected Result** 8 + What did you expect to happen? 9 + 10 + **Actual Result** 11 + What did happen? 12 + 13 + **Steps To Reproduce** 14 + 1. If possible, what steps can you take to reproduce the issue? 15 + 16 + **```strace``` Output** 17 + Run ```sudo strace -f -u $USER darling shell```, what is the output? 18 + ``` 19 + Put the command output here! 20 + ``` 21 + 22 + **``dmesg`` Output** 23 + Run ```dmesg | grep 'overlay\|darling'``` 24 + ``` 25 + Put the command output here! 26 + ``` 27 + 28 + **System Information** 29 + What system are you running? 30 + 31 + | Software | Version | 32 + | --- | --- | 33 + | Linux Kernel | X.Y.Z | 34 + | Darling | Git Commit Hash |