home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / utils / mkisofs-1.000 / mkisofs-1.11-beos / README.session < prev    next >
Text File  |  1997-04-09  |  2KB  |  42 lines

  1. #    $Id: README.session,v 1.2 1997/02/23 15:45:50 eric Rel $    
  2.  
  3.     This release of mkisofs has basic support completed for
  4. multiple sessions.  At this point, it hasn't been tested thoroughly at all -
  5. we still need some interaction between cdwrite and mkisofs for this to work
  6. correctly.
  7.  
  8.     There are a few new options to mkisofs to allow for this.
  9. The first one is "-M /dev/scd0", and is used so that mkisofs can examine
  10. the entirety of the previous image so that it can figure out what additional
  11. files need to be written in the new session.
  12.  
  13.     There is also a temporary hack in mkisofs in the form of a '-C' option.
  14. The -C option takes two numbers as input, which are delimited by commas.
  15. For example, you could specify "-C 1000,1020", but you should never just
  16. make up numbers to use here.  These numbers are determined from cdwrite.
  17.  
  18.     There are patches to cdwrite in the file cdwrite.c.diff, which add
  19. a new information gathering option.  To use this, you specify '-m', and
  20. instead of actually writing any data, cdwrite dumps two numbers to stdout
  21. which are comma delimited.  These are the same numbers that mkisofs uses
  22. with the -C option.
  23.  
  24.     Thus in practice you should in principle be able to do something like:
  25.  
  26. mkisofs [other options] -C `cdwrite --device /dev/sgX --multi` \
  27.         -M /dev/cdblkdev
  28.  
  29. to tie these things together.  Admittedly this is a very crude
  30. interface between the two programs right now, and this will be cleaned
  31. up later.  For now, it provides the minimal functionality required to write
  32. multiple session discs.
  33.  
  34. Note: As of the 1.10b4 release, nobody has actually tried to burn any
  35. discs with this.  It is entirely possible that bugs exists, or that
  36. further tweaks will be required somewhere along the way to get things
  37. working correctly.  The data gathering mode of cdwrite has been
  38. tested, and I believe it works correctly.  Caveat Emptor.
  39.  
  40. [Nov 4, 1996].
  41.  
  42.