Re: problem with ":-( none Mode 1 track"
Problem with recording DVD+R media with grwoisfs 5.20
---------------
white backup # growisofs -Z /dev/hdb test
Executing 'mkisofs test | builtin_dd of=/dev/hdb obs=32k seek=0'
:-( none Mode 1 track
---------------
See end of http://lists.debian.org/cdwrite/2004/10/msg00044.html. If
immediate cure is desired edit transport.hxx as following:
--- transport.hxx Wed Aug 25 01:36:29 2004
+++ transport.hxx Sun Sep 26 23:45:56 2004
@@ -1551,7 +1551,12 @@
p[3] &= 0x3F; // always Single-session?
// setup Data Block Type
- if ((track[6]&0x0F)==1) p[4] = 8;
+ // Some units [e.g. Toshiba/Samsung TS-H542A] return "unknown Data
+ // Block Type" in track[6]&0x0F field. Essentially it's a firmware
+ // glitch, yet it makes certain sense, as track may not be written
+ // yet...
+ if ((track[6]&0x0F)==1 || (track[6]&0x0F)==0x0F)
+ p[4] = 8;
else fprintf (stderr,":-( none Mode 1 track\n"),
exit(FATAL_START(EMEDIUMTYPE));
A.
Reply to: