Skip to content

Commit

Permalink
Merge branch 'legacy' of https://github.com/backslashxx/KernelSU into…
Browse files Browse the repository at this point in the history
… nongki

* 'legacy' of https://github.com/backslashxx/KernelSU: (113 commits)
  manager: unofficial build
  dummy.keystore
  workflows: debloat
  treewide: adjust version counting
  Revert "[1.0] Drop Non-GKI Support (tiann#1483)"
  Revert "Drop some legacy codes (tiann#1981)"
  build(deps): bump the crates group across 1 directory with 38 updates (tiann#2163)
  build(deps): bump the npm group across 1 directory with 35 updates (tiann#2161)
  Translations update from Hosted Weblate (tiann#2065)
  Renewed rmx3511 kernel source git repo link (tiann#2164)
  manager: Add action.sh for user to manually trigger modules' functionality from manager (tiann#2156)
  manager: Bump dependencies, Adjust pull refresh UI, Add transitions back (tiann#2139)
  manager: detect init_boot with Android version in uname (tiann#2142)
  add device to unofficial supported list (tiann#2136)
  [add device]: (tiann#2117)
  manager: Refactor the click logic of ModuleItem (tiann#2105)
  build(deps): bump the npm group across 1 directory with 28 updates (tiann#2097)
  build(deps): bump the crates group across 1 directory with 32 updates (tiann#2098)
  manager: Insets stuffs for Android 15 (tiann#2100)
  api: spawn CallbackList use UiThreadHandler::runAndWait executor (tiann#2096)
  ...
  • Loading branch information
whyakari committed Oct 31, 2024
2 parents 358768e + cd25996 commit 3634f24
Show file tree
Hide file tree
Showing 134 changed files with 3,792 additions and 2,594 deletions.
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Feature Request
url: https://github.com/tiann/KernelSU/issues/1705
about: "We do not accept external Feature Requests, see this link for more details."
39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE/feature_request.yml

This file was deleted.

23 changes: 20 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,35 @@ updates:
directory: /
schedule:
interval: daily

groups:
actions:
patterns:
- "*"
- package-ecosystem: cargo
directory: userspace/ksud
schedule:
interval: daily

allow:
- dependency-type: "all"
groups:
crates:
patterns:
- "*"
- package-ecosystem: gradle
directory: manager
schedule:
interval: daily

groups:
maven:
patterns:
- "*"
- package-ecosystem: npm
directory: website
schedule:
interval: daily
allow:
- dependency-type: "all"
groups:
npm:
patterns:
- "*"
3 changes: 2 additions & 1 deletion .github/workflows/add-device.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Make pull request
if: steps.handle-add-device.outputs.success == 'true'
id: cpr
uses: peter-evans/create-pull-request@v6
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "[add device]: ${{ steps.handle-add-device.outputs.device }}"
Expand All @@ -37,6 +37,7 @@ jobs:
branch: "add-device-${{ github.event.issue.number }}"
labels: add-device
delete-branch: true
sign-commits: true
- name: Check outputs
if: ${{ steps.cpr.outputs.pull-request-number }}
run: |
Expand Down
36 changes: 25 additions & 11 deletions .github/workflows/build-debug-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
uses: ./.github/workflows/gki-kernel.yml
with:
version: android12-5.10
version_name: android12-5.10.209
tag: android12-5.10-2024-05
os_patch_level: 2024-05
version_name: android12-5.10.218
tag: android12-5.10-2024-08
os_patch_level: 2024-08
patch_path: "5.10"
debug: true
build-debug-kernel-a13:
strategy:
matrix:
include:
- version: "5.10"
sub_level: 209
os_patch_level: 2024-05
sub_level: 218
os_patch_level: 2024-08
- version: "5.15"
sub_level: 148
os_patch_level: 2024-05
sub_level: 151
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
with:
version: android13-${{ matrix.version }}
Expand All @@ -34,15 +34,29 @@ jobs:
matrix:
include:
- version: "5.15"
sub_level: 148
os_patch_level: 2024-05
sub_level: 158
os_patch_level: 2024-08
- version: "6.1"
sub_level: 75
os_patch_level: 2024-05
sub_level: 90
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
with:
version: android14-${{ matrix.version }}
version_name: android14-${{ matrix.version }}.${{ matrix.sub_level }}
tag: android14-${{ matrix.version }}-${{ matrix.os_patch_level }}
patch_path: ${{ matrix.version }}
debug: true
build-debug-kernel-a15:
strategy:
matrix:
include:
- version: "6.6"
sub_level: 30
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
with:
version: android15-${{ matrix.version }}
version_name: android15-${{ matrix.version }}.${{ matrix.sub_level }}
tag: android15-${{ matrix.version }}-${{ matrix.os_patch_level }}
patch_path: ${{ matrix.version }}
debug: true
10 changes: 6 additions & 4 deletions .github/workflows/build-kernel-a12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
os_patch_level: 2024-03
- sub_level: 209
os_patch_level: 2024-05
- sub_level: 218
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
secrets: inherit
with:
Expand Down Expand Up @@ -63,7 +65,7 @@ jobs:
- name: Download prebuilt toolchain
run: |
AOSP_MIRROR=https://android.googlesource.com
BRANCH=main-kernel-build-2023
BRANCH=main-kernel-build-2024
git clone $AOSP_MIRROR/platform/prebuilts/build-tools -b $BRANCH --depth 1 build-tools
git clone $AOSP_MIRROR/kernel/prebuilts/build-tools -b $BRANCH --depth 1 kernel-build-tools
git clone $AOSP_MIRROR/platform/system/tools/mkbootimg -b $BRANCH --depth 1
Expand Down Expand Up @@ -112,7 +114,7 @@ jobs:
uses: ./.github/workflows/gki-kernel.yml
with:
version: android12-5.10
version_name: android12-5.10.209
tag: android12-5.10-2024-05
os_patch_level: 2024-05
version_name: android12-5.10.218
tag: android12-5.10-2024-08
os_patch_level: 2024-08
patch_path: "5.10"
25 changes: 20 additions & 5 deletions .github/workflows/build-kernel-a13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ jobs:
- version: "5.10"
sub_level: 209
os_patch_level: 2024-05
- version: "5.10"
sub_level: 210
os_patch_level: 2024-06
- version: "5.10"
sub_level: 214
os_patch_level: 2024-07
- version: "5.10"
sub_level: 218
os_patch_level: 2024-08
- version: "5.15"
sub_level: 123
os_patch_level: 2023-11
Expand All @@ -45,6 +54,12 @@ jobs:
- version: "5.15"
sub_level: 148
os_patch_level: 2024-05
- version: "5.15"
sub_level: 149
os_patch_level: 2024-07
- version: "5.15"
sub_level: 151
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
secrets: inherit
with:
Expand Down Expand Up @@ -81,7 +96,7 @@ jobs:
- name: Download prebuilt toolchain
run: |
AOSP_MIRROR=https://android.googlesource.com
BRANCH=main-kernel-build-2023
BRANCH=main-kernel-build-2024
git clone $AOSP_MIRROR/platform/prebuilts/build-tools -b $BRANCH --depth 1 build-tools
git clone $AOSP_MIRROR/kernel/prebuilts/build-tools -b $BRANCH --depth 1 kernel-build-tools
git clone $AOSP_MIRROR/platform/system/tools/mkbootimg -b $BRANCH --depth 1
Expand Down Expand Up @@ -131,11 +146,11 @@ jobs:
matrix:
include:
- version: "5.10"
sub_level: 209
os_patch_level: 2024-05
sub_level: 218
os_patch_level: 2024-08
- version: "5.15"
sub_level: 148
os_patch_level: 2024-05
sub_level: 151
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
with:
version: android13-${{ matrix.version }}
Expand Down
28 changes: 23 additions & 5 deletions .github/workflows/build-kernel-a14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ jobs:
- version: "5.15"
sub_level: 148
os_patch_level: 2024-05
- version: "5.15"
sub_level: 149
os_patch_level: 2024-06
- version: "5.15"
sub_level: 153
os_patch_level: 2024-07
- version: "5.15"
sub_level: 158
os_patch_level: 2024-08
- version: "6.1"
sub_level: 25
os_patch_level: 2023-10
Expand All @@ -48,6 +57,15 @@ jobs:
- version: "6.1"
sub_level: 75
os_patch_level: 2024-05
- version: "6.1"
sub_level: 78
os_patch_level: 2024-06
- version: "6.1"
sub_level: 84
os_patch_level: 2024-07
- version: "6.1"
sub_level: 90
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
secrets: inherit
with:
Expand Down Expand Up @@ -84,7 +102,7 @@ jobs:
- name: Download prebuilt toolchain
run: |
AOSP_MIRROR=https://android.googlesource.com
BRANCH=main-kernel-build-2023
BRANCH=main-kernel-build-2024
git clone $AOSP_MIRROR/platform/prebuilts/build-tools -b $BRANCH --depth 1 build-tools
git clone $AOSP_MIRROR/kernel/prebuilts/build-tools -b $BRANCH --depth 1 kernel-build-tools
git clone $AOSP_MIRROR/platform/system/tools/mkbootimg -b $BRANCH --depth 1
Expand Down Expand Up @@ -134,11 +152,11 @@ jobs:
matrix:
include:
- version: "5.15"
sub_level: 148
os_patch_level: 2024-05
sub_level: 158
os_patch_level: 2024-08
- version: "6.1"
sub_level: 75
os_patch_level: 2024-05
sub_level: 90
os_patch_level: 2024-08
uses: ./.github/workflows/gki-kernel.yml
with:
version: android14-${{ matrix.version }}
Expand Down
Loading

0 comments on commit 3634f24

Please sign in to comment.