Browse Source

Added lwip header file.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2071 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong@gmail.com 13 years ago
parent
commit
372332dd0e
2 changed files with 9 additions and 4 deletions
  1. 2 2
      components/init/SConscript
  2. 7 2
      components/init/components_init.c

+ 2 - 2
components/init/SConscript

@@ -1,8 +1,8 @@
 from building import *
 
 cwd = GetCurrentDir()
-src	= Glob('*.c')
+src = Glob('*.c')
 CPPPATH = [cwd]
-group = DefineGroup('ComponentsInit', src, depend = ['RT_USING_COMPONENTS_INIT'], CPPPATH = CPPPATH)
+group = DefineGroup('Components', src, depend = ['RT_USING_COMPONENTS_INIT'], CPPPATH = CPPPATH)
 
 Return('group')

+ 7 - 2
components/init/components_init.c

@@ -1,10 +1,15 @@
 #include <rtthread.h>
 #include "components_init.h"
 
+#ifdef RT_USING_FINSH
+#include <finsh.h>
+#include <shell.h>
+#endif
+
 #ifdef RT_USING_LWIP
 #include <lwip/sys.h>
-#include <lwip/api.h>
 #include <netif/ethernetif.h>
+extern void lwip_system_init(void);
 #endif
 
 #ifdef RT_USING_DFS
@@ -60,7 +65,7 @@ void rt_components_init(void)
     eth_system_device_init();
 
     /* initialize lwip system */
-    lwip_sys_init();
+    lwip_system_init();
     rt_kprintf("TCP/IP initialized!\n");
 #endif