diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-01-22 02:35:21 -0500 |
---|---|---|
committer | Alexey Dobriyan <adobriyan@gmail.com> | 2009-01-22 05:15:55 -0500 |
commit | ddfaccd995b2d1bb1df4461ee9403ba9fdcbee04 (patch) | |
tree | 4ee652018dc571d32337c94a511eb14da68a1888 /fs/Kconfig | |
parent | 3ef7784e47975e31148c25b6fa795949fdc16d9c (diff) |
fs/Kconfig: move iso9660, udf out
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs/Kconfig')
-rw-r--r-- | fs/Kconfig | 60 |
1 files changed, 2 insertions, 58 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index 8b36059d2b0c..b4868b8fd999 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
@@ -123,64 +123,8 @@ config GENERIC_ACL | |||
123 | if BLOCK | 123 | if BLOCK |
124 | menu "CD-ROM/DVD Filesystems" | 124 | menu "CD-ROM/DVD Filesystems" |
125 | 125 | ||
126 | config ISO9660_FS | 126 | source "fs/isofs/Kconfig" |
127 | tristate "ISO 9660 CDROM file system support" | 127 | source "fs/udf/Kconfig" |
128 | help | ||
129 | This is the standard file system used on CD-ROMs. It was previously | ||
130 | known as "High Sierra File System" and is called "hsfs" on other | ||
131 | Unix systems. The so-called Rock-Ridge extensions which allow for | ||
132 | long Unix filenames and symbolic links are also supported by this | ||
133 | driver. If you have a CD-ROM drive and want to do more with it than | ||
134 | just listen to audio CDs and watch its LEDs, say Y (and read | ||
135 | <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO, | ||
136 | available from <http://www.tldp.org/docs.html#howto>), thereby | ||
137 | enlarging your kernel by about 27 KB; otherwise say N. | ||
138 | |||
139 | To compile this file system support as a module, choose M here: the | ||
140 | module will be called isofs. | ||
141 | |||
142 | config JOLIET | ||
143 | bool "Microsoft Joliet CDROM extensions" | ||
144 | depends on ISO9660_FS | ||
145 | select NLS | ||
146 | help | ||
147 | Joliet is a Microsoft extension for the ISO 9660 CD-ROM file system | ||
148 | which allows for long filenames in unicode format (unicode is the | ||
149 | new 16 bit character code, successor to ASCII, which encodes the | ||
150 | characters of almost all languages of the world; see | ||
151 | <http://www.unicode.org/> for more information). Say Y here if you | ||
152 | want to be able to read Joliet CD-ROMs under Linux. | ||
153 | |||
154 | config ZISOFS | ||
155 | bool "Transparent decompression extension" | ||
156 | depends on ISO9660_FS | ||
157 | select ZLIB_INFLATE | ||
158 | help | ||
159 | This is a Linux-specific extension to RockRidge which lets you store | ||
160 | data in compressed form on a CD-ROM and have it transparently | ||
161 | decompressed when the CD-ROM is accessed. See | ||
162 | <http://www.kernel.org/pub/linux/utils/fs/zisofs/> for the tools | ||
163 | necessary to create such a filesystem. Say Y here if you want to be | ||
164 | able to read such compressed CD-ROMs. | ||
165 | |||
166 | config UDF_FS | ||
167 | tristate "UDF file system support" | ||
168 | select CRC_ITU_T | ||
169 | help | ||
170 | This is the new file system used on some CD-ROMs and DVDs. Say Y if | ||
171 | you intend to mount DVD discs or CDRW's written in packet mode, or | ||
172 | if written to by other UDF utilities, such as DirectCD. | ||
173 | Please read <file:Documentation/filesystems/udf.txt>. | ||
174 | |||
175 | To compile this file system support as a module, choose M here: the | ||
176 | module will be called udf. | ||
177 | |||
178 | If unsure, say N. | ||
179 | |||
180 | config UDF_NLS | ||
181 | bool | ||
182 | default y | ||
183 | depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y) | ||
184 | 128 | ||
185 | endmenu | 129 | endmenu |
186 | endif # BLOCK | 130 | endif # BLOCK |