Browse Source

update run_module.c

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@833 bbd45198-f89e-11dd-88c7-29a3b14d5316
qiuyiuestc 14 years ago
parent
commit
2df619d986
2 changed files with 2 additions and 6 deletions
  1. 2 2
      bsp/mini2440/SConscript
  2. 0 4
      bsp/mini2440/run_module.c

+ 2 - 2
bsp/mini2440/SConscript

@@ -11,8 +11,8 @@ group['CPPPATH'] = [RTT_ROOT + '/bsp/mini2440']
 group['CPPDEFINES'] = []
 group['LINKFLAGS'] = ''
 
-src_bsp = ['application.c', 'startup.c', 'board.c', 'rtc_calendar.c', 'calibration.c', 'info.c', 'today.c', 'picture.c', 'osc.c', 'device_info.c', 'run_module.c']
-src_drv = ['console.c', 'led.c']
+src_bsp = ['application.c', 'startup.c', 'board.c', 'rtc_calendar.c', 'calibration.c']
+src_drv = ['console.c', 'led.c', 'run_module.c']
 
 if rtconfig.RT_USING_DFS:
 	src_drv += ['sdcard.c']

+ 0 - 4
bsp/mini2440/run_module.c

@@ -43,10 +43,6 @@ void run_module(const char* filename)
 	rt_kprintf("read %d bytes from file\n", length);
 	module_name = strrchr(filename, '/');
 	module = rt_module_load((void *)buffer, ++module_name);
-	if(module != RT_NULL)
-	{
-		// rt_module_run(module);
-	}
 	
 	close(fd);
 }