Skip to content

Commit

Permalink
Do not build module packages
Browse files Browse the repository at this point in the history
  • Loading branch information
danpawlik committed Jul 23, 2024
1 parent 05cff93 commit b1a2095
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ax3200.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ jobs:
cat custom_repo/${{ env.ROLE_CONFIG }} >> .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

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ax3600.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ jobs:
cat custom_repo/${{ env.NSS_CONFIG }} >> .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

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/bpi-r4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
./scripts/feeds update -a
./scripts/feeds install -a
- name: Apply kmod-thermal
- name: Apply kmod-thermal and build mt7925 firmware
run: |
cd target/linux/mediatek/patches-6.6
curl -LO https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/patches/0001-Add-kmod-thermal-for-BPI-R4.patch
Expand All @@ -62,6 +62,10 @@ jobs:
cat custom_repo/${{ env.ROLE_CONFIG }} >> .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: Include custom files
# run: |
# mkdir -p ${{ env.CUSTOM_FILES_PATH }}
Expand Down

0 comments on commit b1a2095

Please sign in to comment.