import RT-Thread@9217865c without bsp, libcpu and components/net
This commit is contained in:
commit
e2376a3709
1414 changed files with 390370 additions and 0 deletions
11
components/dfs/dfs_v1/filesystems/cromfs/SConscript
Normal file
11
components/dfs/dfs_v1/filesystems/cromfs/SConscript
Normal file
|
@ -0,0 +1,11 @@
|
|||
# RT-Thread building script for component
|
||||
|
||||
from building import *
|
||||
|
||||
cwd = GetCurrentDir()
|
||||
src = Glob('*.c')
|
||||
CPPPATH = [cwd]
|
||||
|
||||
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS','RT_USING_DFS_CROMFS'], CPPPATH = CPPPATH)
|
||||
|
||||
Return('group')
|
1170
components/dfs/dfs_v1/filesystems/cromfs/dfs_cromfs.c
Normal file
1170
components/dfs/dfs_v1/filesystems/cromfs/dfs_cromfs.c
Normal file
File diff suppressed because it is too large
Load diff
16
components/dfs/dfs_v1/filesystems/cromfs/dfs_cromfs.h
Normal file
16
components/dfs/dfs_v1/filesystems/cromfs/dfs_cromfs.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright (c) 2006-2020, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Change Logs:
|
||||
* Date Author Notes
|
||||
* 2020/08/21 ShaoJinchun firset version
|
||||
*/
|
||||
|
||||
#ifndef __DFS_CROMFS_H__
|
||||
#define __DFS_CROMFS_H__
|
||||
|
||||
int dfs_cromfs_init(void);
|
||||
|
||||
#endif /*__DFS_CROMFS_H__*/
|
Loading…
Add table
Add a link
Reference in a new issue