2009-10-20 17:18:45 +08:00
|
|
|
Import('RTT_ROOT')
|
2010-11-20 20:31:00 +08:00
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
2009-10-20 17:18:45 +08:00
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
# The set of source files associated with this SConscript file.
|
2009-10-20 17:18:45 +08:00
|
|
|
dfs = Split("""
|
2010-07-19 00:15:53 +08:00
|
|
|
src/dfs.c
|
2009-10-20 17:18:45 +08:00
|
|
|
src/dfs_fs.c
|
2010-07-19 00:15:53 +08:00
|
|
|
src/dfs_file.c
|
2009-10-20 17:18:45 +08:00
|
|
|
src/dfs_posix.c
|
|
|
|
""")
|
|
|
|
|
2009-10-26 12:33:18 +08:00
|
|
|
# DFS-ELMFAT options
|
|
|
|
elmfat = Split("""
|
|
|
|
filesystems/elmfat/dfs_elm.c
|
|
|
|
filesystems/elmfat/ff.c
|
|
|
|
""")
|
|
|
|
|
2010-09-02 16:46:46 +08:00
|
|
|
# DFS-ROMFS options
|
|
|
|
romfs = Split("""
|
|
|
|
filesystems/romfs/dfs_romfs.c
|
|
|
|
filesystems/romfs/romfs.c
|
|
|
|
""")
|
|
|
|
|
2010-10-22 18:15:50 +08:00
|
|
|
# DFS-DeviceFS options
|
|
|
|
devfs = Split("""
|
|
|
|
filesystems/devfs/devfs.c
|
|
|
|
filesystems/devfs/console.c
|
|
|
|
""")
|
|
|
|
|
2009-10-20 17:18:45 +08:00
|
|
|
# DFS-YAFFS2 options
|
|
|
|
yaffs2_main = Split("""
|
|
|
|
filesystems/yaffs2/direct/yaffscfg.c
|
|
|
|
filesystems/yaffs2/direct/yaffs_fileem.c
|
|
|
|
filesystems/yaffs2/direct/yaffsfs.c
|
|
|
|
filesystems/yaffs2/direct/dfs_yaffs2.c
|
|
|
|
""")
|
|
|
|
|
|
|
|
yaffs2_comm = Split("""
|
|
|
|
filesystems/yaffs2/yaffs_ecc.c
|
|
|
|
filesystems/yaffs2/yaffs_guts.c
|
|
|
|
filesystems/yaffs2/yaffs_packedtags1.c
|
|
|
|
filesystems/yaffs2/yaffs_tagscompat.c
|
|
|
|
filesystems/yaffs2/yaffs_packedtags2.c
|
|
|
|
filesystems/yaffs2/yaffs_tagsvalidity.c
|
|
|
|
filesystems/yaffs2/yaffs_nand.c
|
|
|
|
filesystems/yaffs2/yaffs_checkptrw.c
|
|
|
|
filesystems/yaffs2/yaffs_qsort.c
|
|
|
|
""")
|
|
|
|
|
2010-05-22 22:57:51 +08:00
|
|
|
nfs = Split('''
|
|
|
|
filesystems/nfs/mount_clnt.c
|
|
|
|
filesystems/nfs/mount_xdr.c
|
|
|
|
filesystems/nfs/nfs_clnt.c
|
|
|
|
filesystems/nfs/nfs_xdr.c
|
|
|
|
filesystems/nfs/dfs_nfs.c
|
|
|
|
filesystems/nfs/rpc/auth_none.c
|
|
|
|
filesystems/nfs/rpc/clnt_generic.c
|
|
|
|
filesystems/nfs/rpc/clnt_udp.c
|
|
|
|
filesystems/nfs/rpc/rpc_prot.c
|
|
|
|
filesystems/nfs/rpc/pmap.c
|
|
|
|
filesystems/nfs/rpc/xdr.c
|
|
|
|
filesystems/nfs/rpc/xdr_mem.c
|
|
|
|
''')
|
|
|
|
|
2009-10-20 17:18:45 +08:00
|
|
|
src_local = dfs
|
2010-04-18 23:27:13 +08:00
|
|
|
# The set of source files associated with this SConscript file.
|
|
|
|
path = [RTT_ROOT + '/components/dfs', RTT_ROOT + '/components/dfs/include']
|
2009-10-20 17:18:45 +08:00
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
if GetDepend('RT_USING_DFS_YAFFS2'):
|
2009-10-20 17:18:45 +08:00
|
|
|
src_local = src_local + yaffs2_main + yaffs2_comm
|
2010-04-18 23:27:13 +08:00
|
|
|
path = path + [RTT_ROOT + '/components/dfs/filesystems/yaffs2', RTT_ROOT + '/components/dfs/filesystems/yaffs2/direct']
|
2009-10-20 17:18:45 +08:00
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
if GetDepend('RT_USING_DFS_ELMFAT'):
|
|
|
|
if GetDepend('RT_DFS_ELM_USE_LFN'):
|
|
|
|
elmfat += ['filesystems/elmfat/option/cc936.c']
|
2009-10-26 12:33:18 +08:00
|
|
|
src_local = src_local + elmfat
|
2010-04-22 10:27:27 +08:00
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
if GetDepend(['RT_USING_DFS_NFS', 'RT_USING_LWIP']):
|
2010-05-22 22:57:51 +08:00
|
|
|
src_local = src_local + nfs
|
|
|
|
path = path + [RTT_ROOT + '/components/dfs/filesystems/nfs']
|
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
if GetDepend('RT_USING_DFS_ROMFS'):
|
2010-09-02 16:46:46 +08:00
|
|
|
src_local = src_local + romfs
|
|
|
|
path = path + [RTT_ROOT + '/components/dfs/filesystems/romfs']
|
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
if GetDepend('RT_USING_DFS_DEVFS'):
|
2010-10-22 18:15:50 +08:00
|
|
|
src_local = src_local + devfs
|
|
|
|
path = path + [RTT_ROOT + '/components/dfs/filesystems/devfs']
|
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
group = DefineGroup('Filesystem', src_local, depend = ['RT_USING_DFS'], CPPPATH = path)
|
2009-10-20 17:18:45 +08:00
|
|
|
|
2010-11-20 20:31:00 +08:00
|
|
|
Return('group')
|