pull/1345/head
John Doe 2023-12-23 05:33:02 +08:00
parent 1aa1bbad21
commit 56eb1412e6
No known key found for this signature in database
GPG Key ID: 30F190E0C359CB4F
2 changed files with 2 additions and 2 deletions

View File

@ -95,6 +95,7 @@ jobs:
find package/ -type d -name luci-app-* | rev | cut -d'/' -f1 | rev | xargs -ri echo CONFIG_PACKAGE_{}=m >> .config
cat $GITHUB_WORKSPACE/extra_packages.seed >> .config
cat more_luci.txt >> .config
[ -f .config_fix ] cat .config_fix >> .config
make defconfig && sed -i -E 's/# (CONFIG_.*_COMPRESS_UPX) is not set/\1=y/' .config && make defconfig
cat .config

View File

@ -128,8 +128,7 @@ fi
# fix for x86
if [[ $DEVICE == 'x86' ]]; then
echo -ne "CONFIG_PACKAGE_kmod-usb-audio=n\n" >> .config
make defconfig
echo -ne "CONFIG_PACKAGE_kmod-usb-audio=n\n" >> .config_fix
fi
# ...