home *** CD-ROM | disk | FTP | other *** search
/ Dream 57 / Amiga_Dream_57.iso / Linux / Utils / udf.txt < prev    next >
Text File  |  1998-10-09  |  2KB  |  76 lines

  1. /* ------------------------------------------------------------------
  2.  * Linux(r) UDF Filesystem Driver
  3.  * Version: 0.5
  4.  *
  5.  * This is Andrew's second "patch" vs kernel 2.1.62, 
  6.  * converted to a standalone package. Then many changes made. :-)
  7.  * --------------------------------------------------------------- */
  8.  
  9. REQUIRED:
  10.     Linux version 2.1.56 or higher
  11.     
  12. COMPILING:
  13.     type: "make"
  14.  
  15. TESTING:
  16.     type "insmod module/udf.o", 
  17.     then "mount -t udf /dev/scd0 /mnt"
  18.         (assuming /dev/scd0 is your scsi cdrom)
  19.         (Substitute "scd0" and "/mnt" as appropriate for your system)
  20.  
  21. I've tested this on my system with kernel 2.1.122, a Ricoh MP-6200S,
  22. a UDF 1.5 disc created by Adaptec DirectCD, and the cheap-o
  23. SCSI card (aha152x compatible) that came with the Ricoh.
  24.  
  25. I can mount/umount a udf filesystem without crashing my system.
  26. I can view the directory structure of the file system, including file
  27. dates and sizes. However, directories are limited in size, to maybe
  28. 30-40 entries, depending on name lengths (1 2k block.)
  29.  
  30. Files can be read and used! (As of version 0.5). However, files are limited
  31. to DVD compatible use, that is, only one 'extent' per file. That means
  32. the file space must be contiguous on the disc.
  33.  
  34.  
  35. That's pretty much all that's currently implemented. If you want
  36. to help out, subscribe to the linux_udf mailing list below.
  37.  
  38. Dave Boynton
  39. dave@trylinux.com
  40.  
  41. /* --------------------------------------------------------------- 
  42.  * Original Author: 
  43.  *    Andrew E. Mileski    (email temporarily unavailable)
  44.  * Recent updates: 
  45.  *    Dave Boynton         dave@trylinux.com
  46.  */
  47.  
  48.  
  49. /* ------------------------------------------------------------------ */
  50. Original README: (minus Andrew's old email address)
  51.  
  52. OSTA-UDF
  53.   Optical Storage Technology Association Universal Disk Format
  54.  
  55. The Linux UDF development team mail list is:
  56.            linux_udf@hootie.lvld.hp.com
  57. Subscribe to the mailing list by sending a message to:
  58.            majordomo@hootie.lvld.hp.com
  59. with a body of:
  60.            subscribe linux_udf
  61.  
  62. UDF developers should subscribe to additional lists:
  63.            subscribe osta_tc
  64.            subscribe osta_cd_dvd
  65.  
  66. Documentation on UDF and ECMA 167 is available FREE from:
  67.            http://www.osta.org/
  68.            http://www.ecma.ch/
  69.  
  70. Happy hacking!
  71.  
  72. --
  73. Andrew E. Mileski    
  74.  
  75.  
  76.