feat(actions): add optional 6.1 Gunyah fix patch bundle from kernel_p…#54
Open
lateautumn233 wants to merge 1 commit intoXiaomichael:Buildfrom
Open
feat(actions): add optional 6.1 Gunyah fix patch bundle from kernel_p…#54lateautumn233 wants to merge 1 commit intoXiaomichael:Buildfrom
lateautumn233 wants to merge 1 commit intoXiaomichael:Buildfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds a new optional workflow input to apply a pair of Gunyah-related fix patches when building 6.1 kernels, wiring the option into multiple GitHub Actions build workflows.
Changes:
- Add a new
workflow_dispatchinputGUNYAH_FIX(On/Off) to several build workflows. - When
GUNYAH_FIX=OnandKERNEL_VERSION=6.1, copy two patch files from the clonedkernel_patchesrepo intokernel_platform/commonand apply them withpatch -p1.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/Build SukiSU Ultra_40129.yml | Adds GUNYAH_FIX input and applies two Gunyah fix patches for 6.1 builds. |
| .github/workflows/Build SukiSU Ultra.yml | Adds GUNYAH_FIX input and applies two Gunyah fix patches for 6.1 builds. |
| .github/workflows/Build ReSukiSU.yml | Adds GUNYAH_FIX input and applies two Gunyah fix patches for 6.1 builds. |
| .github/workflows/Build KernelSU.yml | Adds GUNYAH_FIX input and applies two Gunyah fix patches for 6.1 builds. |
| .github/workflows/Build KernelSU Next.yml | Adds GUNYAH_FIX input and applies two Gunyah fix patches for 6.1 builds. |
| .github/workflows/Build Kernel Only.yml | Adds GUNYAH_FIX input and applies two Gunyah fix patches for 6.1 builds. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| fi | ||
| fi | ||
|
|
||
| if [ "${{ github.event.inputs.GUNYAH_FIX }}" = "On" ] && [ "${{ github.event.inputs.KERNEL_VERSION }}" = "6.1" ]; then |
Comment on lines
+328
to
+329
| cp ../kernel_patches/common/gunyah_large_memory_access_fix.patch ./common/ | ||
| cp ../kernel_patches/common/gunyah_scm_vmid_fix.patch ./common/ |
Comment on lines
+332
to
+333
| cp ../kernel_patches/common/gunyah_large_memory_access_fix.patch ./common/ | ||
| cp ../kernel_patches/common/gunyah_scm_vmid_fix.patch ./common/ |
Comment on lines
+343
to
+344
| cp ../kernel_patches/common/gunyah_large_memory_access_fix.patch ./common/ | ||
| cp ../kernel_patches/common/gunyah_scm_vmid_fix.patch ./common/ |
Comment on lines
+347
to
+348
| cp ../kernel_patches/common/gunyah_large_memory_access_fix.patch ./common/ | ||
| cp ../kernel_patches/common/gunyah_scm_vmid_fix.patch ./common/ |
Comment on lines
+334
to
+335
| cp ../kernel_patches/common/gunyah_large_memory_access_fix.patch ./common/ | ||
| cp ../kernel_patches/common/gunyah_scm_vmid_fix.patch ./common/ |
Owner
|
不好意思刚上号才看见 可以问一下这个补丁是干什么的嘛 |
Author
8gen3使用gunyah虚拟化创建虚拟机会出现内存分配问题 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…atches
需要以下补丁
https://github.com/Xiaomichael/kernel_patches/pull/1