forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 16
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
2 changed files
with
12 additions
and
5 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ on: workflow_dispatch | |
|
||
jobs: | ||
build: | ||
name: Build MX4300 firmware images | ||
name: Build MX4300 FOSS Images | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
@@ -37,13 +37,13 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Update feeds | ||
run: make package/symlinks | ||
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)) download world | ||
run: make -j$(($(nproc)+1)) world | ||
|
||
- name: Get SHA | ||
uses: benjlevesque/[email protected] | ||
|
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 |
---|---|---|
@@ -1,10 +1,17 @@ | ||
|
||
#!/bin/sh | ||
|
||
wget https://downloads.openwrt.org/snapshots/targets/qualcommax/ipq807x/config.buildinfo | ||
cat config.buildinfo | grep -v CONFIG_TARGET_MULTI_PROFILE | grep -v CONFIG_TARGET_DEVICE_ | grep -v CONFIG_TARGET_ALL_PROFILES > .config | ||
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 | ||
make defconfig | ||
#add libpam | ||
#echo CONFIG_PACKAGE_libpam=y >> .config | ||
#skip xdp | ||
cat .config | grep -v "CONFIG_PACKAGE.*xdp" > .config | ||
|