README
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:5k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

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