xref: /linux/fs/isofs/Kconfig (revision ddfaccd995b2d1bb1df4461ee9403ba9fdcbee04)
1*ddfaccd9SAlexey Dobriyanconfig ISO9660_FS
2*ddfaccd9SAlexey Dobriyan	tristate "ISO 9660 CDROM file system support"
3*ddfaccd9SAlexey Dobriyan	help
4*ddfaccd9SAlexey Dobriyan	  This is the standard file system used on CD-ROMs.  It was previously
5*ddfaccd9SAlexey Dobriyan	  known as "High Sierra File System" and is called "hsfs" on other
6*ddfaccd9SAlexey Dobriyan	  Unix systems.  The so-called Rock-Ridge extensions which allow for
7*ddfaccd9SAlexey Dobriyan	  long Unix filenames and symbolic links are also supported by this
8*ddfaccd9SAlexey Dobriyan	  driver.  If you have a CD-ROM drive and want to do more with it than
9*ddfaccd9SAlexey Dobriyan	  just listen to audio CDs and watch its LEDs, say Y (and read
10*ddfaccd9SAlexey Dobriyan	  <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO,
11*ddfaccd9SAlexey Dobriyan	  available from <http://www.tldp.org/docs.html#howto>), thereby
12*ddfaccd9SAlexey Dobriyan	  enlarging your kernel by about 27 KB; otherwise say N.
13*ddfaccd9SAlexey Dobriyan
14*ddfaccd9SAlexey Dobriyan	  To compile this file system support as a module, choose M here: the
15*ddfaccd9SAlexey Dobriyan	  module will be called isofs.
16*ddfaccd9SAlexey Dobriyan
17*ddfaccd9SAlexey Dobriyanconfig JOLIET
18*ddfaccd9SAlexey Dobriyan	bool "Microsoft Joliet CDROM extensions"
19*ddfaccd9SAlexey Dobriyan	depends on ISO9660_FS
20*ddfaccd9SAlexey Dobriyan	select NLS
21*ddfaccd9SAlexey Dobriyan	help
22*ddfaccd9SAlexey Dobriyan	  Joliet is a Microsoft extension for the ISO 9660 CD-ROM file system
23*ddfaccd9SAlexey Dobriyan	  which allows for long filenames in unicode format (unicode is the
24*ddfaccd9SAlexey Dobriyan	  new 16 bit character code, successor to ASCII, which encodes the
25*ddfaccd9SAlexey Dobriyan	  characters of almost all languages of the world; see
26*ddfaccd9SAlexey Dobriyan	  <http://www.unicode.org/> for more information).  Say Y here if you
27*ddfaccd9SAlexey Dobriyan	  want to be able to read Joliet CD-ROMs under Linux.
28*ddfaccd9SAlexey Dobriyan
29*ddfaccd9SAlexey Dobriyanconfig ZISOFS
30*ddfaccd9SAlexey Dobriyan	bool "Transparent decompression extension"
31*ddfaccd9SAlexey Dobriyan	depends on ISO9660_FS
32*ddfaccd9SAlexey Dobriyan	select ZLIB_INFLATE
33*ddfaccd9SAlexey Dobriyan	help
34*ddfaccd9SAlexey Dobriyan	  This is a Linux-specific extension to RockRidge which lets you store
35*ddfaccd9SAlexey Dobriyan	  data in compressed form on a CD-ROM and have it transparently
36*ddfaccd9SAlexey Dobriyan	  decompressed when the CD-ROM is accessed.  See
37*ddfaccd9SAlexey Dobriyan	  <http://www.kernel.org/pub/linux/utils/fs/zisofs/> for the tools
38*ddfaccd9SAlexey Dobriyan	  necessary to create such a filesystem.  Say Y here if you want to be
39*ddfaccd9SAlexey Dobriyan	  able to read such compressed CD-ROMs.
40