Browse Source

[NET] Add telnet app to netutils.

armink 7 years ago
parent
commit
5910ae4170

+ 1 - 0
components/net/netutils/README.md

@@ -0,0 +1 @@
+Some net utils which using standard interface such as BSD Sockets.

+ 10 - 0
components/net/netutils/SConscript

@@ -0,0 +1,10 @@
+from building import *
+
+cwd = GetCurrentDir()
+src = Glob('*.c')
+
+CPPPATH = [cwd]
+
+group = DefineGroup('LwIP', src, depend = ['RT_USING_NETUTILS'], CPPPATH = CPPPATH)
+
+Return('group')

+ 0 - 0
components/net/lwip-2.0.2/apps/telnet.c → components/net/netutils/telnet.c