forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Build MX4300 FOSS Image | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
build: | ||
name: Build MX4300 FOSS Images | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Install packages | ||
run: | | ||
sudo apt-get update && \ | ||
sudo apt-get install -y \ | ||
build-essential \ | ||
clang \ | ||
flex \ | ||
bison \ | ||
g++ \ | ||
gawk \ | ||
gcc-multilib \ | ||
g++-multilib \ | ||
gettext \ | ||
git \ | ||
libncurses-dev \ | ||
libssl-dev \ | ||
python3-distutils \ | ||
rsync \ | ||
unzip \ | ||
zlib1g-dev \ | ||
file \ | ||
wget && \ | ||
sudo apt-get clean | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Update feeds | ||
run: scripts/feeds update -a && scripts/feeds install -a | ||
|
||
- name: Generate config | ||
run: sh genconfig.sh | ||
|
||
- name: Build firmware images | ||
run: make -j$(($(nproc)+1)) world | ||
|
||
- name: Get SHA | ||
uses: benjlevesque/[email protected] | ||
|
||
- name: Release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: qualcommax-foss-${{ env.SHA }} | ||
artifacts: bin/targets/qualcommax/ipq807x/openwrt-qualcommax-ipq807x-linksys_mx4300* |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
#!/bin/sh | ||
|
||
wget https://downloads.openwrt.org/snapshots/targets/qualcommax/ipq807x/config.buildinfo -O config.buildinfo | ||
cat config.buildinfo | grep -v CONFIG_TARGET_DEVICE_ | grep -v CONFIG_TARGET_ALL_PROFILES | grep -v CONFIG_TARGET_MULTI_PROFILE > .config | ||
echo CONFIG_TARGET_ALL_PROFILES=n >> .config | ||
echo CONFIG_TARGET_MULTI_PROFILE=n >> .config | ||
echo CONFIG_IB=n >> .config | ||
echo CONFIG_TARGET_qualcommax_ipq807x_DEVICE_linksys_mx4300=y >> .config | ||
echo CONFIG_TARGET_DEVICE_qualcommax_ipq807x_DEVICE_linksys_mx4300=y >> .config | ||
echo CONFIG_TARGET_DEVICE_PACKAGES_qualcommax_ipq807x_DEVICE_linksys_mx4300=\"\" >> .config | ||
#add luci | ||
echo CONFIG_PACKAGE_luci=y >> .config | ||
make defconfig | ||
|
||
#add libpam | ||
#echo CONFIG_PACKAGE_libpam=y >> .config | ||
|
||
#skip xdp | ||
cat .config | grep -v "CONFIG_PACKAGE.*xdp" > .config.tmp | ||
cp .config.tmp .config | ||
|