diff options
| author | Paul Donald | 2025-12-08 19:45:16 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-12-08 20:30:39 +0000 |
| commit | 1684c28cfe67650cef0a9bd6f3c54fa62b0916c3 (patch) | |
| tree | 161089953a56f2bb9340c6938f76e334d2afef8c | |
| parent | 83f6177dbf44fa92ecf6d2e1cda9f92cfc5fe849 (diff) | |
| download | openwrt-1684c28cfe67650cef0a9bd6f3c54fa62b0916c3.tar.gz | |
apk: define minimal variant for install
Choose the minimal release build which excludes a number of
unused applets, not used on user devices.
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/21093
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | package/system/apk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/system/apk/Makefile b/package/system/apk/Makefile index 9627084f4e..0fda788185 100644 --- a/package/system/apk/Makefile +++ b/package/system/apk/Makefile @@ -70,7 +70,8 @@ MESON_HOST_ARGS += \ MESON_ARGS += \ $(MESON_COMMON_ARGS) \ - -Dcrypto_backend=$(BUILD_VARIANT) + -Dcrypto_backend=$(BUILD_VARIANT) \ + -Dminimal=true define Package/apk/conffiles /etc/apk/repositories.d/customfeeds.list |