Skip to content

Fix building bpi-r4 and ax3600 #15

Fix building bpi-r4 and ax3600

Fix building bpi-r4 and ax3600 #15

Workflow file for this run

---
# Based on https://github.com/glassd00r/Openwrt_Builder/tree/main
name: Build OpenWRT for Banana Pi R4
on:
workflow_dispatch:
push:
env:
REMOTE_REPOSITORY: openwrt/openwrt
REMOTE_BRANCH: main
# REMOTE_REPOSITORY: danpawlik/openwrt
# REMOTE_BRANCH: bpi-r4
# MTK_PPE_ENTRIES_SHIFT_PATCH: 001-32k_ppe.patch
# PREFETCH_PATCH: 002-prefetch.patch
RELEASE_PREFIX: Mediatek_mt7988a_bpi-r4
DEVICE_CONFIG: configs/mediatek/mt7988a/bpi-r4
ROLE_CONFIG: configs/common/main-router
jobs:
build:
name: Build OpenWRT for BPI-R4
runs-on: ubuntu-24.04
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y \
build-essential clang flex bison g++ gawk \
gcc-multilib g++-multilib gettext git libncurses5-dev libssl-dev \
python3-setuptools rsync swig unzip zlib1g-dev file wget curl
sudo apt full-upgrade -y
- name: Checkout remote repository
uses: actions/checkout@v4
with:
repository: ${{ env.REMOTE_REPOSITORY }}
ref: ${{ env.REMOTE_BRANCH }}
# - name: Checkout current repository
# uses: actions/checkout@v4
# with:
# path: "custom_repo"
#
# - name: Configure firmware image
# run: |
# cp custom_repo/${{ env.DEVICE_CONFIG }} .config
# cat custom_repo/${{ env.ROLE_CONFIG }} >> .config
# make defconfig
- name: Update and install feeds
run: |
./scripts/feeds update -a
./scripts/feeds install -a
- name: Apply kmod-thermal and build mt7925 firmware
run: |
git config --global user.email "[email protected]"
git config --global user.name "Daniel Pawlik"
curl -LO https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/patches/0001-Add-kmod-thermal-for-BPI-R4.patch
curl -LO https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/patches/0001-Add-mt7925-firmware-rule.patch
git apply --check 0001-Add-kmod-thermal-for-BPI-R4.patch
git apply --check 0001-Add-mt7925-firmware-rule.patch
git am --keep-cr --signoff < 0001-Add-kmod-thermal-for-BPI-R4.patch
git am --keep-cr --signoff < 0001-Add-mt7925-firmware-rule.patch
- name: Configure firmware image
run: |
curl -SL https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/configs/mediatek/mt7988a/bpi-r4 > .config
curl -SL https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/configs/common/main-router >> .config
make defconfig
- name: Remove packages that are marked as modules
run: |
grep "=m" .config | grep -v 'CONFIG_PACKAGE_libustream-mbedtls=m' | while read -r line; do module=$(echo "$line" | cut -f1 -d'='); sed -i "s/^$line$/# $module is not set/" .config; done
- name: Download dependencies
run: make -j $(nproc) download
- name: Build the firmware image
run: make -j $(nproc) world
- name: Package output
run: tar -cvf bpi_r4-images.tar bin/targets/mediatek/filogic
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: bpi_r4-images
path: bpi_r4-images.tar
release:
name: Create release
needs: [build]
if: needs.build.result == 'success'
runs-on: ubuntu-24.04
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: bpi_r4-images
- name: Extract artifacts
run: tar xf bpi_r4-images.tar
- name: Get version
run: echo "VERSION_INFO=$(cat version.buildinfo)" >> $GITHUB_ENV
- name: Get current date
run: echo "RELEASE_DATE=$(date +%F)" >> $GITHUB_ENV
- name: Create release
uses: softprops/action-gh-release@master
with:
files: bin/targets/mediatek/filogic/*
tag_name: ${{ env.RELEASE_PREFIX }}-${{ env.RELEASE_DATE }}-${{ env.VERSION_INFO }}
name: OpenWRT BPI-r4 ${{ env.RELEASE_DATE }}-${{ env.VERSION_INFO }}
body: |
Updated prebuilt images for ${{ env.RELEASE_DATE }} based on ${{ env.VERSION_INFO }}
Build Commit: ${{ needs.check_commits.outputs.latest_commit_sha }}
- name: Clean up old releases
uses: dev-drprasad/delete-older-releases@master
with:
keep_latest: 5
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}