diff --git a/.github/workflows/compile.yaml b/.github/workflows/compile.yaml deleted file mode 100644 index 018b22704..000000000 --- a/.github/workflows/compile.yaml +++ /dev/null @@ -1,54 +0,0 @@ -name: Build kernel on PR - -on: - workflow_dispatch: - pull_request: - types: [opened, synchronize] - -jobs: - Build: - name: Compile and upload kernel - runs-on: rockchip - if: ${{ github.repository_owner == 'armbian' }} - env: - OCI_TARGET_BASE: "ghcr.io/${{ github.repository }}/" # This is picked up by the Docker launcher automatically - steps: - # Login to ghcr.io, for later uploading rootfs to ghcr.io - - name: Docker Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} # GitHub username or org - password: ${{ secrets.GITHUB_TOKEN }} # GitHub actions builtin token. repo has to have pkg access. - - - name: Checkout build repo - uses: actions/checkout@v4 - with: - repository: armbian/build - ref: main - fetch-depth: 1 - clean: false - - - name: Build kernel at ${{ github.event.pull_request.head.sha }} - id: kernel - run: | - - rm -rf output/debs/* - mkdir -p userpatches/extensions/ - cat <<- EOF > userpatches/extensions/pull-request.sh - function post_family_config__force_commit_for_rk3588() { - KERNELBRANCH="commit:${{ github.event.pull_request.head.sha }}" - } - EOF - bash ./compile.sh kernel \ - SHARE_LOG=yes \ - BOARD=orangepi5 \ - BRANCH=vendor \ - ENABLE_EXTENSIONS="pull-request" - - - name: Upload artifact - uses: actions/upload-artifact@v4 - with: - name: linux-rockchip-vendor - path: output/debs/*.deb - retention-days: 5 diff --git a/README.md b/README.md index 1036aa357..e1f788330 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Upstream Linux 6.1 LTS for CoolPi RK3588 devices ## Description -This kernel is based on the **rk-6.1-rkr5** branch of the **Armbian Rockchip Linux 6.1 LTS** kernel with patches sourced from the **linux-6.1-stan-rkr3.1** branch of the **CoolPi Linux 6.1 LTS** kernel to support **CoolPi** devices, including those that were recently dropped by the CoolPi vendor kernel (commit 4c7deae). +This kernel is based on the **rk-6.1-rkr5** branch of the **Armbian Rockchip Linux 6.1 LTS** kernel with patches sourced from the **linux-6.1-stan-rkr3.1** branch of the **CoolPi Linux 6.1 LTS** kernel to support **CoolPi** devices, including those that were recently dropped by the CoolPi vendor kernel (commit 4c7deae). Additional patches for the **Armbian** and **CoolPi** kernels are applied as they are released. Patch commit status can be verified by either running the **build-kernel.sh** script or by referring to the files containing the patch commit hashes that the build script reads from: **armbian-rk-6.1-rkr5-patch-release** and **coolpi-linux-6.1-stan-rkr3.1-patch-release**.