fix: enable secubox-app and luci-theme-secubox in SDK config
The packages were being copied to the SDK but not enabled in .config, causing no artifacts to be generated for these packages. Changes: - Add CONFIG_PACKAGE_secubox-app=m to SDK .config - Add CONFIG_PACKAGE_luci-theme-secubox=m to SDK .config This ensures both packages are built when running the package build workflow. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
67a9f62c45
commit
ee97a781ee
12
.github/workflows/build-openwrt-packages.yml
vendored
12
.github/workflows/build-openwrt-packages.yml
vendored
@ -547,6 +547,18 @@ jobs:
|
||||
fi
|
||||
done
|
||||
|
||||
# Enable secubox-app if present
|
||||
if [[ -d "package/secubox/secubox-app" ]]; then
|
||||
echo "CONFIG_PACKAGE_secubox-app=m" >> .config
|
||||
echo " ✅ secubox-app"
|
||||
fi
|
||||
|
||||
# Enable luci-theme-secubox if present
|
||||
if [[ -d "package/luci-theme-secubox" ]]; then
|
||||
echo "CONFIG_PACKAGE_luci-theme-secubox=m" >> .config
|
||||
echo " ✅ luci-theme-secubox"
|
||||
fi
|
||||
|
||||
# Enable download of pre-built packages for dependencies
|
||||
echo "CONFIG_DEVEL=y" >> .config
|
||||
echo "CONFIG_AUTOREBUILD=y" >> .config
|
||||
|
||||
Loading…
Reference in New Issue
Block a user