]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/fs/fat/v2_0/cdl/fatfs.cdl
Initial revision
[karo-tx-redboot.git] / packages / fs / fat / v2_0 / cdl / fatfs.cdl
1 # ====================================================================
2 #
3 #      fatfs.cdl
4 #
5 #      FAT Filesystem configuration data
6 #
7 # ====================================================================
8 #####ECOSGPLCOPYRIGHTBEGIN####
9 ## -------------------------------------------
10 ## This file is part of eCos, the Embedded Configurable Operating System.
11 ## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Red Hat, Inc.
12 ## Copyright (C) 2004 eCosCentric Limited
13 ##
14 ## eCos is free software; you can redistribute it and/or modify it under
15 ## the terms of the GNU General Public License as published by the Free
16 ## Software Foundation; either version 2 or (at your option) any later version.
17 ##
18 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
19 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21 ## for more details.
22 ##
23 ## You should have received a copy of the GNU General Public License along
24 ## with eCos; if not, write to the Free Software Foundation, Inc.,
25 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 ##
27 ## As a special exception, if other files instantiate templates or use macros
28 ## or inline functions from this file, or you compile this file and link it
29 ## with other works to produce a work based on this file, this file does not
30 ## by itself cause the resulting work to be covered by the GNU General Public
31 ## License. However the source code for this file must still be made available
32 ## in accordance with section (3) of the GNU General Public License.
33 ##
34 ## This exception does not invalidate any other reasons why a work based on
35 ## this file might be covered by the GNU General Public License.
36 ##
37 ## -------------------------------------------
38 #####ECOSGPLCOPYRIGHTEND####
39 # ====================================================================
40 ######DESCRIPTIONBEGIN####
41 #
42 # Author(s):      Savin Zlobec <savin@elatec.si> 
43 # Contributors:   
44 # Date:           2003-06-25
45 #
46 #####DESCRIPTIONEND####
47 #
48 # ====================================================================
49
50 cdl_package CYGPKG_FS_FAT {
51     display         "FAT filesystem"
52     include_dir     cyg/fs
53
54     requires        CYGPKG_IO_FILEIO
55
56     requires        CYGPKG_ISOINFRA
57     requires        CYGINT_ISO_ERRNO
58     requires        CYGINT_ISO_ERRNO_CODES
59     requires        CYGPKG_MEMALLOC
60     requires        CYGPKG_BLOCK_LIB
61
62     implements      CYGINT_IO_FILEIO_FS
63     
64     compile         -library=libextras.a fatfs.c        \
65                                          fatfs_supp.c   \
66                                          fatfs_ncache.c 
67
68     cdl_option      CYGNUM_FS_FAT_NODE_HASH_TABLE_SIZE {
69         display         "Node hash table size"
70         flavor          data
71         default_value   32
72         legal_values    1 to 9999999999
73         description     "This option controls the number of slots in the 
74                          hash table used to store file nodes using filenames 
75                          as keys."
76     }
77
78     cdl_option      CYGNUM_FS_FAT_NODE_POOL_SIZE {
79         display         "Node pool size"
80         flavor          data
81         default_value   { (CYGNUM_FILEIO_NFILE + 2) }
82         legal_values    1 to 9999999999
83         requires        { CYGNUM_FS_FAT_NODE_POOL_SIZE >= (CYGNUM_FILEIO_NFILE+2) }
84         description     "This option controls the size of the node pool used
85                          for storing file nodes. This value should be set to
86                          the maximum required number of simultaneously open 
87                          files plus the desired size of unused node cache."
88     }
89    
90     cdl_option      CYGNUM_FS_FAT_BLOCK_CACHE_MEMSIZE {
91         display         "FAT block cache memory size"
92         flavor          data
93         default_value   10240 
94         legal_values    1 to 9999999999
95         description     "This option controls the amount of memory used for 
96                          the block cache."
97     }
98
99     cdl_option      CYGDBG_FS_FAT_NODE_CACHE_EXTRA_CHECKS {
100         display         "Node cache extra checks"
101         flavor          bool
102         default_value   1
103         active_if       CYGPKG_INFRA_DEBUG && CYGDBG_USE_ASSERTS
104         description     "This option controls the inclusion of extra
105                          sanity checks in node cache code."
106     }
107     
108     cdl_option      CYGCFG_FS_FAT_USE_ATTRIBUTES {
109         display         "Support for FAT FS file attributes"
110         flavor          bool
111         default_value   0
112         description     "This option controls if the FAT filesystem supports
113                          or honors the FAT filesystem file attributes."
114     }
115     
116     # --------------------------------------------------------------------
117     
118     cdl_option      CYGPKG_FS_FAT_TESTS {
119         display         "FAT FS tests"
120         flavor          data
121         no_define
122         calculated      { "tests/fatfs1" }
123         description     "This option specifies the set of tests for the 
124                          FAT FS package."
125     }
126 }
127
128 # ====================================================================
129 # End of fatfs.cdl