From 872487e55db79407ee668b9fa772e9e8baeb0a46 Mon Sep 17 00:00:00 2001 From: Sean Khan Date: Wed, 10 Jul 2024 12:21:52 -0400 Subject: [PATCH] nss-clients: fix tun6rd and tunipip build These were accidently configured as 'y' when it was supposed to be 'm' Should resolve the following build errors: ``` qca-nss-tun6rd.ko' is missing. ``` Signed-off-by: Sean Khan --- qca-nss-clients/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qca-nss-clients/Makefile b/qca-nss-clients/Makefile index 63e28ba..49d78b2 100644 --- a/qca-nss-clients/Makefile +++ b/qca-nss-clients/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=qca-nss-clients -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_SOURCE_URL:=https://git.codelinaro.org/clo/qsdk/oss/lklm/nss-clients.git PKG_SOURCE_PROTO:=git @@ -596,7 +596,7 @@ EXTRA_CFLAGS += -DNSS_CAPWAPMGR_ONE_NETDEV endif ifneq ($(CONFIG_PACKAGE_kmod-qca-nss-drv-tun6rd),) -NSS_CLIENTS_MAKE_OPTS+=tun6rd=y +NSS_CLIENTS_MAKE_OPTS+=tun6rd=m endif ifneq ($(CONFIG_PACKAGE_kmod-qca-nss-drv-dtlsmgr),) @@ -605,7 +605,7 @@ endif ifneq ($(CONFIG_PACKAGE_kmod-qca-nss-drv-tlsmgr),) EXTRA_CFLAGS+= -I$(PKG_BUILD_DIR)/exports -NSS_CLIENTS_MAKE_OPTS+=tlsmgr=y +NSS_CLIENTS_MAKE_OPTS+=tlsmgr=m endif ifneq ($(CONFIG_PACKAGE_kmod-qca-nss-drv-l2tpv2),)