luci-light: rework and reenable 6211/head
authorAndre Heider <a.heider@gmail.com>
Mon, 24 Oct 2022 12:57:47 +0000 (14:57 +0200)
committerAndre Heider <a.heider@gmail.com>
Tue, 24 Jan 2023 09:14:04 +0000 (10:14 +0100)
The `luci` collection contains package management and attended
sysupgrades support, which are not that useful if not even undesired for
self-compiled images.

Rework the `luci-light` collection to exclude the two above mentioned
features, and make `luci` instead depend on the light collection in
additon to those features.

The `luci-ssl` and `luci-ssl-openssl` collections then only need
to depend on `luci-light`.

We now have three variants with won't pull in `luci-app-opkg` or
`luci-app-attendedsysupgrade`, making everybody happy.

Signed-off-by: Andre Heider <a.heider@gmail.com>
collections/luci-light/Makefile
collections/luci-ssl-openssl/Makefile
collections/luci-ssl/Makefile
collections/luci/Makefile

index 9eee97bf9b67035efd91e82b835794db37145a55..d0d1997f04f907de8da78a7a96c7179c59abaf51 100644 (file)
@@ -9,8 +9,19 @@ include $(TOPDIR)/rules.mk
 LUCI_TYPE:=col
 LUCI_BASENAME:=light
 
-LUCI_TITLE:=Minimum package set using only admin mini and the standard theme
-LUCI_DEPENDS:=+uhttpd +luci-mod-admin-mini +luci-theme-openwrt @BROKEN
+LUCI_TITLE:=LuCI interface with Uhttpd as Webserver (light)
+LUCI_DESCRIPTION:=Light OpenWrt set including admin support and the default Bootstrap theme
+LUCI_DEPENDS:= \
+       +IPV6:luci-proto-ipv6 \
+       +luci-app-firewall \
+       +luci-mod-admin-full \
+       +luci-proto-ppp \
+       +luci-theme-bootstrap \
+       +rpcd-mod-rrdns \
+       +uhttpd \
+       +uhttpd-mod-ubus
+
+PKG_LICENSE:=Apache-2.0
 
 include ../../luci.mk
 
index d1e752e8b864cacfd9fd5b48ca87883ead9c139a..890d224697c749a71f1634ead2ec86a25f9126e9 100644 (file)
@@ -14,7 +14,7 @@ LUCI_DESCRIPTION:=LuCI with OpenSSL as the SSL backend (libustream-openssl). \
  OpenSSL cmd tools (openssl-util) are used by uhttpd for SSL key generation \
  instead of the default px5g. (If px5g is installed, uhttpd will prefer that.)
 
-LUCI_DEPENDS:=+luci +libustream-openssl +openssl-util
+LUCI_DEPENDS:=+luci-light +libustream-openssl +openssl-util
 
 include ../../luci.mk
 
index 0b4d030702e280df62cb66a662a02d2f5e510b94..ea82a5c047dd1960b7f582bdae813edd4645a492 100644 (file)
@@ -10,7 +10,7 @@ LUCI_TYPE:=col
 LUCI_BASENAME:=ssl
 
 LUCI_TITLE:=LuCI with HTTPS support (WolfSSL as SSL backend)
-LUCI_DEPENDS:=+luci +libustream-wolfssl +px5g-wolfssl
+LUCI_DEPENDS:=+luci-light +libustream-wolfssl +px5g-wolfssl
 
 PKG_LICENSE:=Apache-2.0
 
index 62da8ad259843233bb2e6201258a826ac89ec9d8..2e09b78f0292f1a8b52af3b234cf45d4bf05a9a3 100644 (file)
@@ -10,18 +10,11 @@ LUCI_TYPE:=col
 LUCI_BASENAME:=luci
 
 LUCI_TITLE:=LuCI interface with Uhttpd as Webserver (default)
-LUCI_DESCRIPTION:=Standard OpenWrt set including full admin with ppp support and the default Bootstrap theme
+LUCI_DESCRIPTION:=Standard OpenWrt set including package management and attended sysupgrades support
 LUCI_DEPENDS:= \
-       +IPV6:luci-proto-ipv6 \
+       +luci-light \
        +luci-app-attendedsysupgrade \
-       +luci-app-firewall \
-       +luci-app-opkg \
-       +luci-mod-admin-full \
-       +luci-proto-ppp \
-       +luci-theme-bootstrap \
-       +rpcd-mod-rrdns \
-       +uhttpd \
-       +uhttpd-mod-ubus
+       +luci-app-opkg
 
 PKG_LICENSE:=Apache-2.0