[openwrt/openwrt] target.mk: enable iwinfo by default with any wpad variant

LEDE Commits lede-commits at lists.infradead.org
Sun Sep 27 19:30:19 EDT 2020


pepe2k pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/1cab34dbaedf9793b088900b53de9a06e85cfa0a

commit 1cab34dbaedf9793b088900b53de9a06e85cfa0a
Author: Piotr Dymacz <pepe2k at gmail.com>
AuthorDate: Wed Mar 25 00:02:08 2020 +0100

    target.mk: enable iwinfo by default with any wpad variant
    
    There are currently several variants of 'wpad' package but the 'iwinfo'
    is included by default only if 'wpad', 'wpad-{basic*,mini}' or 'nas'
    packages are included in {DEVICE,DEFAULT}_PACKAGES. Use 'wpad-*'
    pattern to include 'iwinfo' with any 'wpad' variant.
    
    Signed-off-by: Piotr Dymacz <pepe2k at gmail.com>
---
 include/target.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/target.mk b/include/target.mk
index 03550c6ca6..93c1c42552 100644
--- a/include/target.mk
+++ b/include/target.mk
@@ -85,7 +85,7 @@ endif
 DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.$(DEVICE_TYPE))
 
 filter_packages = $(filter-out -% $(patsubst -%,%,$(filter -%,$(1))),$(1))
-extra_packages = $(if $(filter wpad-mini wpad-basic wpad-basic-wolfssl wpad nas,$(1)),iwinfo)
+extra_packages = $(if $(filter wpad wpad-% nas,$(1)),iwinfo)
 
 define ProfileDefault
   NAME:=



More information about the lede-commits mailing list