From 3423dfd200a9155697f435d3d0d0a188d7700343 Mon Sep 17 00:00:00 2001 From: zhaoyun1215 <58766762@qq.com> Date: Tue, 23 Aug 2022 01:51:34 -0700 Subject: [PATCH] the function of netdev --- Ubiquitous/XiZi/resources/ethernet/LwIP/Makefile | 1 - Ubiquitous/XiZi/resources/ethernet/Makefile | 1 + Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/Kconfig | 0 Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/Makefile | 0 Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/SConscript | 0 .../resources/ethernet/{LwIP => }/netdev/include/arpa/inet.h | 0 .../XiZi/resources/ethernet/{LwIP => }/netdev/include/netdev.h | 0 .../resources/ethernet/{LwIP => }/netdev/include/netdev_ipaddr.h | 0 .../XiZi/resources/ethernet/{LwIP => }/netdev/src/Makefile | 0 .../XiZi/resources/ethernet/{LwIP => }/netdev/src/netdev.c | 0 .../resources/ethernet/{LwIP => }/netdev/src/netdev_ipaddr.c | 0 11 files changed, 1 insertion(+), 1 deletion(-) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/Kconfig (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/Makefile (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/SConscript (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/include/arpa/inet.h (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/include/netdev.h (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/include/netdev_ipaddr.h (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/src/Makefile (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/src/netdev.c (100%) rename Ubiquitous/XiZi/resources/ethernet/{LwIP => }/netdev/src/netdev_ipaddr.c (100%) diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/Makefile b/Ubiquitous/XiZi/resources/ethernet/LwIP/Makefile index 051039ce4..406f26dc2 100644 --- a/Ubiquitous/XiZi/resources/ethernet/LwIP/Makefile +++ b/Ubiquitous/XiZi/resources/ethernet/LwIP/Makefile @@ -7,5 +7,4 @@ LWIP_DIR += api LWIP_DIR += arch LWIP_DIR += core LWIP_DIR += netif -LWIP_DIR += netdev include $(KERNEL_ROOT)/compiler.mk diff --git a/Ubiquitous/XiZi/resources/ethernet/Makefile b/Ubiquitous/XiZi/resources/ethernet/Makefile index 7de558d34..5954beab4 100644 --- a/Ubiquitous/XiZi/resources/ethernet/Makefile +++ b/Ubiquitous/XiZi/resources/ethernet/Makefile @@ -1,4 +1,5 @@ SRC_DIR += cmd_lwip +SRC_DIR += netdev LWIP_DIR := LwIP include $(KERNEL_ROOT)/compiler.mk diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/Kconfig b/Ubiquitous/XiZi/resources/ethernet/netdev/Kconfig similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/Kconfig rename to Ubiquitous/XiZi/resources/ethernet/netdev/Kconfig diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/Makefile b/Ubiquitous/XiZi/resources/ethernet/netdev/Makefile similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/Makefile rename to Ubiquitous/XiZi/resources/ethernet/netdev/Makefile diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/SConscript b/Ubiquitous/XiZi/resources/ethernet/netdev/SConscript similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/SConscript rename to Ubiquitous/XiZi/resources/ethernet/netdev/SConscript diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/include/arpa/inet.h b/Ubiquitous/XiZi/resources/ethernet/netdev/include/arpa/inet.h similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/include/arpa/inet.h rename to Ubiquitous/XiZi/resources/ethernet/netdev/include/arpa/inet.h diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/include/netdev.h b/Ubiquitous/XiZi/resources/ethernet/netdev/include/netdev.h similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/include/netdev.h rename to Ubiquitous/XiZi/resources/ethernet/netdev/include/netdev.h diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/include/netdev_ipaddr.h b/Ubiquitous/XiZi/resources/ethernet/netdev/include/netdev_ipaddr.h similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/include/netdev_ipaddr.h rename to Ubiquitous/XiZi/resources/ethernet/netdev/include/netdev_ipaddr.h diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/src/Makefile b/Ubiquitous/XiZi/resources/ethernet/netdev/src/Makefile similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/src/Makefile rename to Ubiquitous/XiZi/resources/ethernet/netdev/src/Makefile diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/src/netdev.c b/Ubiquitous/XiZi/resources/ethernet/netdev/src/netdev.c similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/src/netdev.c rename to Ubiquitous/XiZi/resources/ethernet/netdev/src/netdev.c diff --git a/Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/src/netdev_ipaddr.c b/Ubiquitous/XiZi/resources/ethernet/netdev/src/netdev_ipaddr.c similarity index 100% rename from Ubiquitous/XiZi/resources/ethernet/LwIP/netdev/src/netdev_ipaddr.c rename to Ubiquitous/XiZi/resources/ethernet/netdev/src/netdev_ipaddr.c