Skip to content

Commit

Permalink
fing vermagic
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-sannikov committed Feb 20, 2024
1 parent 333548a commit 0fa4243
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,17 @@ jobs:
if: ${{ steps.cache-tools-kernel.outputs.cache-hit != 'true' }}
run: |
echo "pkgarch: ${{ matrix.build_env.pkgarch}}, target:${{ matrix.build_env.target}}, subtarget: ${{ matrix.build_env.subtarget}}"
rm -rf ./dl || true
rm -rf ./build_dir || true
wget https://downloads.openwrt.org/releases/${{ matrix.tag }}/targets/${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}}/feeds.buildinfo -O .feeds
./scripts/feeds update
./scripts/feeds install -a
wget https://downloads.openwrt.org/releases/${{ matrix.tag }}/targets/${{ matrix.build_env.target}}/${{ matrix.build_env.subtarget}}/config.buildinfo -O .config
echo "CONFIG_PACKAGE_kmod-amneziawg=m" >> .config
echo "CONFIG_PACKAGE_amneziawg-tools=y" >> .config
echo "CONFIG_PACKAGE_luci-app-amneziawg=y" >> .config
# echo "CONFIG_PACKAGE_kmod-crypto-lib-chacha20=m" >> .config
# echo "CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=m" >> .config
# echo "CONFIG_PACKAGE_kmod-crypto-chacha20poly1305=m" >> .config
echo "CONFIG_PACKAGE_kmod-crypto-lib-chacha20=m" >> .config
echo "CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=m" >> .config
echo "CONFIG_PACKAGE_kmod-crypto-chacha20poly1305=m" >> .config
make defconfig
Expand All @@ -77,9 +79,6 @@ jobs:
exit 1
fi
./scripts/feeds update
./scripts/feeds install -a
echo " > make tools/install"
make tools/install -i -j `nproc`
echo " > make toolchain/install"
Expand Down

0 comments on commit 0fa4243

Please sign in to comment.