home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / cdrom / mkisofs.105 / source / readme < prev    next >
Text File  |  1977-12-31  |  4KB  |  103 lines

  1. Note:
  2.     There is a feature which can be optionally compiled into
  3. mkisofs that allows you to merge arbitrary directory trees into the
  4. image you are creating.  You need to compile with -DADD_FILES for my
  5. changes to take effect.   Thanks to Ross Biro biro@yggdrasil.com.
  6.  
  7.     This program requires a lot of virtual memory to run since it
  8. builds all of the directories in memory.  The exact requirements
  9. depend upon a lot of things, but for Rock Ridge discs 12Mb would not
  10. be unreasonable.  Without RockRidge and without the translation
  11. tables, the requirements would be considerably less.
  12.  
  13.     The cdwrite utility is maintained separately from mkisofs by
  14. yggdrasil.com.  It is enclosed here as a convenience, since the two programs
  15. are often useful together.  
  16.  
  17. *****************************
  18. Notes for version 1.05
  19.  
  20.     Added support for '-r' switch.  This is very similar to -R for
  21. Rock Ridge, but echos of the development environment are removed
  22. (i.e. uid/gid set to 0, and permissions of the files are canonicalized).
  23. Useful in applications where a distribution medium is being produced.
  24.  
  25. *****************************
  26. Notes for version 1.04
  27.  
  28.     No notes for 1.04.
  29.  
  30. *****************************
  31. Notes for version 1.03
  32.  
  33.     No notes for 1.03.
  34.  
  35. *****************************
  36. Notes for version 1.02.
  37.  
  38.     Minor bugfixes here and there.  Support for compiled in
  39. defaults for many of the text fields in the volume header are now
  40. present, and there is also support for a file ".mkisofsrc" that can
  41. also read settings for these parameters.
  42.  
  43.     A short script "Configure" was added to allow us to set up special
  44. compile options that depend upon the system that we are running on.
  45. This should help stamp out the sphaghetti-isms that were starting to grow
  46. up in various places in the code.
  47.  
  48.     You should get more meaningful error messages if you run out of
  49. memory.
  50.  
  51. *****************************
  52. Notes for version 1.1.
  53.  
  54.     The big news is that SUSP CE entries are now generated for
  55. extremely long filenames and symlink names.  This virtually guarantees
  56. that there is no limit (OK, well, about 600Mb) for file name lengths.
  57. I have tested this as well as I can, and it seems to work with linux.
  58. This would only be used very rarely I suspect.
  59.  
  60.     Also, I believe that support for VMS is done.  You must be
  61. careful, because only Stream-LF and FIxed length record files can be
  62. recorded.  The rest are rejected with error messages.  Perhaps I am
  63. being too severe here.
  64.  
  65.     There is a bugfix in the sorting of entries on the disc - we
  66. need to stop comparing once we reach the ';' character.
  67.  
  68.     There are four new options -z -d -D -l -V.  Some of these tell
  69. mkisofs to relax some of the iso9660 restrictions, and many systems
  70. apparently do not really seem to mind.  Use these with caution.
  71.  
  72.     Some diagnostic programs to scan disc images are in the diag
  73. directory.  These are not as portable as mkisofs, and may have some
  74. bugs.  Still they are useful because they can check for bugs that I might
  75. have introduced as I add new features.
  76.  
  77. *****************************
  78. Notes for version 1.0.
  79.  
  80.     In version 1.0, the date fields in the TF fields were fixed -
  81. previously I was storing st_ctime as the file creation time instead of
  82. the file attribute change time.  Thanks to Peter van der Veen for
  83. pointing this out.  I have one slight concern with this change,
  84. however.  The Young Minds software is definitely supplying 3 dates
  85. (creation, modification and access), and I would strongly suspect that
  86. they are incorrectly putting the file attribute change time in the
  87. file creation slot.  I would be curious to see how the different RRIP
  88. filesystems treat this.  Anyway, this is something to keep in the back
  89. of your mind.
  90.  
  91.     The symlink handling was not quite correct in 0.99 - this is
  92. now fixed.  Only some systems seemed to have been affected by this bug.
  93.  
  94.     A command line option is now present to allow you to
  95. specifically exclude certain files from the distribution.
  96.  
  97.     The case where you do not have permissions to read a directory
  98. is now handled better by mkisofs.  The directory that cannot be opened
  99. is converted into a zero-length file, and processing continues normally.
  100.  
  101.     A few portability things have been fixed (hopefully).
  102.  
  103.