Skip to content
This repository was archived by the owner on Feb 18, 2022. It is now read-only.

Commit 294846f

Browse files
committed
Merge branch 'release/5.12'
2 parents 666d761 + 87af247 commit 294846f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ jobs:
5151
path: /tmp/artifacts/*
5252

5353
- name: Release
54-
if: github.ref == 'refs/heads/master'
54+
if: |
55+
github.ref == 'refs/heads/master' ||
56+
github.ref == 'release/*'
5557
uses: softprops/action-gh-release@v1
5658
with:
5759
files: |

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -eu -o pipefail
44

5-
KERNEL_VERSION=5.10.52
5+
KERNEL_VERSION=5.12.15
66
KERNEL_REPOSITORY=https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
77
REPO_PATH=$(pwd)
88
WORKING_PATH=/root/work

patch_driver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ BUILD_PATH=/tmp/build-kernel
88
# Patches
99
APPLE_SMC_DRIVER_GIT_URL=https://github.com/aunali1/linux-mbp-arch.git
1010
APPLE_SMC_DRIVER_BRANCH_NAME=master
11-
APPLE_SMC_DRIVER_COMMIT_HASH=1faa37d704798bc04104a88f620e4f55b3466de0
11+
APPLE_SMC_DRIVER_COMMIT_HASH=6386a7ff0871b9ec7101a0f6d92eee0b4307a859
1212

1313

1414
rm -rf "${BUILD_PATH}"

0 commit comments

Comments
 (0)