diff --git a/components/net/Kconfig b/components/net/Kconfig index 282ea7e77629a67422a8408510005e6f0cbf3058..53f55c3c719e9998225f9ba30a93ca7dd301cb7f 100644 --- a/components/net/Kconfig +++ b/components/net/Kconfig @@ -201,10 +201,26 @@ config LWIP_USING_DHCPD bool "Enable DHCP server" default n + +menu "Networking utilities" config RT_USING_NETUTILS - bool "Enable net utils" + bool "Enable networking utilities" default n + if RT_USING_NETUTILS + config RT_NETUTILS_USING_PING + bool "Enable Ping utility" + select RT_LWIP_ICMP + select RT_LWIP_RAW + default n + + config RT_NETUTILS_USING_TFTP + bool "Enable TFTP(Trivial File Transfer Protocol) utility" + default n + + endif +endmenu + endif endmenu diff --git a/components/net/lwip-2.0.2/SConscript b/components/net/lwip-2.0.2/SConscript index 58a25dc5e67e29b01be98b19ec84656fb5a714ca..761681c57dd1c31c5168116176cc4b7805d57963 100644 --- a/components/net/lwip-2.0.2/SConscript +++ b/components/net/lwip-2.0.2/SConscript @@ -81,6 +81,12 @@ if GetDepend(['RT_LWIP_PPP']): if GetDepend(['RT_USING_LWIP_IPV6']): src += ipv6_src +if GetDepend(['RT_USING_NETUTILS']): + if GetDepend(['RT_NETUTILS_USING_TFTP']): + src += Glob('src/apps/tftp/*.c') + if GetDepend(['RT_NETUTILS_USING_PING']): + src += Glob('src/apps/ping/*.c') + group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP', 'RT_USING_LWIP202'], CPPPATH = path) Return('group') diff --git a/components/net/lwip-2.0.2/src/apps/SConscript b/components/net/lwip-2.0.2/src/apps/SConscript deleted file mode 100644 index 2bc01cc16e74744c6c0d7831ddf0a375a3b7e7d1..0000000000000000000000000000000000000000 --- a/components/net/lwip-2.0.2/src/apps/SConscript +++ /dev/null @@ -1,13 +0,0 @@ -from building import * - -cwd = GetCurrentDir() -src = Glob('tftp/*.c') - -if GetDepend(['RT_LWIP_ICMP', 'RT_LWIP_RAW']): - src += Glob('ping/*.c') - -CPPPATH = [cwd] - -group = DefineGroup('LwIP', src, depend = ['RT_USING_NETUTILS', 'RT_USING_LWIP202'], CPPPATH = CPPPATH) - -Return('group') \ No newline at end of file