Enabled writing to DVD-RAM
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH CDRSKIN 1 "January 2, 2007"
|
||||
.TH CDRSKIN 1 "January 12, 2007"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
@ -16,7 +16,8 @@
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
cdrskin \- burns preformatted data to CD-R, CD-RW or DVD+/-RW via libburn.
|
||||
cdrskin \- burns preformatted data to CD-R, CD-RW, DVD+/-RW, DVD-RAM
|
||||
via libburn.
|
||||
.SH SYNOPSIS
|
||||
.B cdrskin
|
||||
.RI [ options | track_source_addresses ]
|
||||
@ -45,7 +46,7 @@ Multi session on CD (follow-up sessions in TAO only).
|
||||
.br
|
||||
Bus scan, burnfree, speed options, retrieving media info, padding, fifo.
|
||||
.br
|
||||
Burning of a single data track to DVD+RW or DVD-RW.
|
||||
Burning of a single data track to DVD+RW, DVD-RW or DVD-RAM.
|
||||
.br
|
||||
See section EXAMPLES at the end of this text.
|
||||
.PP
|
||||
@ -107,17 +108,18 @@ Multiple cycles of blanking and overwriting with random numbers might be.
|
||||
.PP
|
||||
.B Recordable DVD Media:
|
||||
.br
|
||||
Currently only types DVD+RW and DVD-RW can be burned via cdrskin.
|
||||
Currently only types DVD+RW, DVD-RW and DVD-RAM can be burned via cdrskin.
|
||||
.br
|
||||
DVD+RW media get treated as blank media regardless wether they hold data
|
||||
or not. Options -audio and -multi are not allowed. Only one track is allowed.
|
||||
DVD+RW and DVD-RAM media get treated as blank media regardless wether they
|
||||
hold data or not. They need no special initial formatting.
|
||||
Options -audio and -multi are not allowed. Only one track is allowed.
|
||||
-toc does not return information about the media content.
|
||||
Speed is counted in DVD units (i.e. 1x = 1,385,000 bytes/second). Currently
|
||||
there is no difference between -sao and -tao. If ever, then -tao will be the
|
||||
mode which preserves the current behavior.
|
||||
.br
|
||||
DVD-RW need to be formatted to state "Restricted Overwrite". They then behave
|
||||
much like CD-RW. This formatting can be done by option
|
||||
DVD-RW need to be formatted to state "Restricted Overwrite". Then they behave
|
||||
much like DVD+RW. This formatting can be done by option
|
||||
.B blank=format_overwrite
|
||||
It is necessary for unused media, for media written or blanked by cdrecord,
|
||||
for media which have been written unformatted by growisofs or blanked by
|
||||
@ -478,8 +480,10 @@ interpretation of eventual startup files. See section FILES below.
|
||||
Accept only the last argument of the command line as track source address.
|
||||
.TP
|
||||
.BI write_start_address= byte_offset
|
||||
Set the address on media where to start writing the track. With DVD+RW
|
||||
byte_offset must be aligned to 2 KB blocks. With DVD-RW alignment is 32 kB.
|
||||
Set the address on media where to start writing the track. With DVD+RW or
|
||||
DVD-RAM byte_offset must be aligned to 2 KB blocks, but better is 32 kB.
|
||||
With DVD-RW 32 kB alignment is mandatory.
|
||||
.br
|
||||
Other media are not suitable for this option yet.
|
||||
.PP
|
||||
Alphabetical list of options which are only intended for very special
|
||||
|
@ -3808,10 +3808,15 @@ int Cdrskin_atip(struct CdrskiN *skin, int flag)
|
||||
printf("Current: CD-R\n");
|
||||
}
|
||||
if(strstr(profile_name,"DVD")==profile_name) {
|
||||
/* These are dummy messages for project scdbackup, so its media recognition
|
||||
gets a hint that the media is suitable and not in need of blanking.
|
||||
scdbackup will learn to interpret cdrskin's DVD messages but the
|
||||
current stable version needs to believe it is talking to its own
|
||||
growisofs_wrapper. So this is an emulation of an emulator.
|
||||
*/
|
||||
printf("book type: %s (emulated booktype)\n", profile_name);
|
||||
if(profile_number==0x13)
|
||||
printf(
|
||||
"cdrskin: for sdvdbackup: \"(growisofs mode Restricted Overwrite)\"\n");
|
||||
if(profile_number==0x13) /* DVD-RW */
|
||||
printf("cdrskin: message for sdvdbackup: \"(growisofs mode Restricted Overwrite)\"\n");
|
||||
} else {
|
||||
printf("ATIP info from disk:\n");
|
||||
if(burn_disc_erasable(drive)) {
|
||||
@ -4443,8 +4448,9 @@ int Cdrskin_activate_write_mode(struct CdrskiN *skin, enum burn_disc_status s,
|
||||
if(s == BURN_DISC_APPENDABLE) {
|
||||
strcpy(skin->preskin->write_mode_name,"TAO");
|
||||
was_still_default= 2; /*<<< prevents trying of SAO if drive dislikes TAO*/
|
||||
} else if(strstr(profile_name,"DVD+RW")==profile_name ||
|
||||
profile_number == 0x13) { /* DVD-RW Restricted Overwrite */
|
||||
} else if(profile_number==0x1a || profile_number==0x13 ||
|
||||
profile_number==0x12) {
|
||||
/* DVD+RW , DVD-RW Restricted Overwrite , DVD-RAM */
|
||||
strcpy(skin->preskin->write_mode_name,"TAO");
|
||||
} else {
|
||||
strcpy(skin->preskin->write_mode_name,"SAO");
|
||||
|
@ -1 +1 @@
|
||||
#define Cdrskin_timestamP "2007.01.11.131716"
|
||||
#define Cdrskin_timestamP "2007.01.12.162239"
|
||||
|
Reference in New Issue
Block a user