From 9521fd325ca3009ec12694036c008d01ed123507 Mon Sep 17 00:00:00 2001 From: liangbotong Date: Wed, 10 May 2023 10:57:23 +0800 Subject: [PATCH] add NewIP btdev Makefile Bluetooth virtual network device used in the NewIP heterogeneous multi-hop communication scenario. Signed-off-by: liangbotong --- drivers/net/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 72e18d505d1a..49c9acbd8a75 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -84,3 +84,6 @@ thunderbolt-net-y += thunderbolt.o obj-$(CONFIG_USB4_NET) += thunderbolt-net.o obj-$(CONFIG_NETDEVSIM) += netdevsim/ obj-$(CONFIG_NET_FAILOVER) += net_failover.o +ifeq ($(CONFIG_NEWIP),y) +obj-$(CONFIG_NEWIP) += bt/ +endif \ No newline at end of file -- Gitee