diff --git a/components/init/SConscript b/components/init/SConscript new file mode 100644 index 0000000000000000000000000000000000000000..df773156cda5bb1b19773a273219706a7ca9366c --- /dev/null +++ b/components/init/SConscript @@ -0,0 +1,8 @@ +from building import * + +cwd = GetCurrentDir() +src = Glob('*.c') +CPPPATH = [cwd] +group = DefineGroup('ComponentsInit', src, depend = ['RT_USING_COMPONENTS_INIT'], CPPPATH = CPPPATH) + +Return('group') diff --git a/components/init/components_init.c b/components/init/components_init.c new file mode 100644 index 0000000000000000000000000000000000000000..a096ee074f1a989b4894d6d4a5b5f3dd47ff512f --- /dev/null +++ b/components/init/components_init.c @@ -0,0 +1,68 @@ +#include +#include "components_init.h" + +#ifdef RT_USING_LWIP +#include +#include +#include +#endif + +#ifdef RT_USING_DFS +#endif + +void rt_components_init(void) +{ +#ifdef RT_USING_LWIP + /* initialize lwip stack */ + extern void lwip_sys_init(void); + + /* register ethernetif device */ + eth_system_device_init(); + + /* initialize lwip system */ + lwip_sys_init(); + rt_kprintf("TCP/IP initialized!\n"); +#endif + +#ifdef RT_USING_DFS + /* initialize the device filesystem */ + dfs_init(); + +#ifdef RT_USING_DFS_ELMFAT + /* initialize the elm chan FatFS filesystam*/ + elm_init(); +#endif + +#if defined(RT_USING_DFS_NFS) && defined(RT_USING_LWIP) + extern void nfs_init(void); + /* initialize NFSv3 client filesystem */ + nfs_init(); +#endif + +#ifdef RT_USING_DFS_YAFFS2 + yaffs2_init(); +#endif + +#ifdef RT_USING_DFS_UFFS + uffs_init(); +#endif + +#ifdef RT_USING_DFS_JFFS2 + jffs2_init(); +#endif + +#ifdef RT_USING_DFS_ROMFS + romfs_init(); +#endif + +#ifdef RT_USING_DFS_DEVFS + devfs_init(); +#endif + +#endif + +#ifdef RT_USING_RTGUI +#endif + + return; +} diff --git a/components/init/components_init.h b/components/init/components_init.h new file mode 100644 index 0000000000000000000000000000000000000000..39b4cdd4b9faacb84760062ed757c86b55218b89 --- /dev/null +++ b/components/init/components_init.h @@ -0,0 +1,15 @@ +/* + * components_init.h + * + */ + +#ifndef __COMPONENTS_INIT_H__ +#define __COMPONENTS_INIT_H__ + +/** + * Initializes components in RT-Thread + * notes: this function must be invoked in thread + */ +void rt_components_init(void); + +#endif