From 09bcd2bfe73bf31908591b7275203678d862a37b Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Wed, 24 Jul 2024 13:55:58 +0000 Subject: [PATCH] Do not remove modules from AX3600 --- .github/workflows/ax3600.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ax3600.yaml b/.github/workflows/ax3600.yaml index 1f9372d..472a0d0 100644 --- a/.github/workflows/ax3600.yaml +++ b/.github/workflows/ax3600.yaml @@ -54,9 +54,9 @@ jobs: curl -SL https://raw.githubusercontent.com/danpawlik/openwrt-builder/master/configs/common/nss >> .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: 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