Blame SOURCES/cdrkit-1.1.11-format.patch

1710d3
diff -up cdrkit-1.1.11/wodim/drv_mmc.c.format cdrkit-1.1.11/wodim/drv_mmc.c
1710d3
--- cdrkit-1.1.11/wodim/drv_mmc.c.format	2011-05-18 16:49:14.591822130 +0200
1710d3
+++ cdrkit-1.1.11/wodim/drv_mmc.c	2011-05-18 16:49:14.596822130 +0200
1710d3
@@ -1507,6 +1507,11 @@ getdisktype_mdvd(SCSI *usalp, cdr_t *dp)
1710d3
 	dstat_t	*dsp = dp->cdr_dstat;
1710d3
 
1710d3
 	struct track_info track_info;
1710d3
+
1710d3
+	extern char *buf;
1710d3
+	struct disk_info *dip;
1710d3
+	int profile;
1710d3
+
1710d3
     if(lverbose)
1710d3
         printf("HINT: use dvd+rw-mediainfo from dvd+rw-tools for information extraction.\n");
1710d3
 	/* if(getdisktype_mmc(usalp, dp)<0)
1710d3
@@ -1521,6 +1526,18 @@ getdisktype_mdvd(SCSI *usalp, cdr_t *dp)
1710d3
 	dsp->ds_disktype&= ~DT_CD;
1710d3
 	dsp->ds_disktype|= DT_DVD;
1710d3
 
1710d3
+	profile = get_curprofile(usalp);
1710d3
+	if (profile == 0x1A) {
1710d3
+		dip = (struct disk_info *)buf;
1710d3
+		if (get_diskinfo(usalp, dip) < 0)
1710d3
+			return (-1);
1710d3
+		if (dip->disk_status == DS_EMPTY) {	/* Unformatted	    */
1710d3
+			dsp->ds_flags |= DSF_NEED_FORMAT;
1710d3
+			if(lverbose)
1710d3
+				printf("The medium is empty, it will be auto formatted.\n");
1710d3
+		}
1710d3
+	}
1710d3
+	
1710d3
 	return (ret);
1710d3
 
1710d3
 }
1710d3
diff -up cdrkit-1.1.11/wodim/scsi_cdr.c.format cdrkit-1.1.11/wodim/scsi_cdr.c
1710d3
--- cdrkit-1.1.11/wodim/scsi_cdr.c.format	2011-05-18 16:49:14.601822130 +0200
1710d3
+++ cdrkit-1.1.11/wodim/scsi_cdr.c	2011-05-18 16:49:14.600822130 +0200
1710d3
@@ -1328,7 +1328,7 @@ scsi_format(SCSI *usalp, caddr_t addr, i
1710d3
 	}
1710d3
 	sleep(10);
1710d3
 	printf("\rFormating in progress: 100.00 %% done.        \n");
1710d3
-	if (pid) exit (0);
1710d3
+	if (pid > 0) exit (0);
1710d3
 	return ret;
1710d3
 }
1710d3
 
1710d3
diff -up cdrkit-1.1.11/wodim/wodim.c.format cdrkit-1.1.11/wodim/wodim.c
1710d3
--- cdrkit-1.1.11/wodim/wodim.c.format	2011-05-18 16:49:14.584822130 +0200
1710d3
+++ cdrkit-1.1.11/wodim/wodim.c	2011-05-18 17:21:59.510821630 +0200
1710d3
@@ -946,6 +946,40 @@ int main(int argc, char *argv[])
1710d3
 		print_toc(usalp, dp);
1710d3
 		comexit(0);
1710d3
 	}
1710d3
+	
1710d3
+	if ((flags & F_FORMAT) || (dp->cdr_dstat->ds_flags & DSF_NEED_FORMAT)) {
1710d3
+		printf("wodim: media format asked\n");
1710d3
+		/*
1710d3
+		* Do not abort if OPC failes. Just give it a chance
1710d3
+		* for better laser power calibration than without OPC.
1710d3
+		*
1710d3
+		* Ricoh drives return with a vendor unique sense code.
1710d3
+		* This is most likely because they refuse to do OPC
1710d3
+		* on a non blank media.
1710d3
+		*/
1710d3
+		usalp->silent++;
1710d3
+		do_opc(usalp, dp, flags);
1710d3
+		usalp->silent--;
1710d3
+		wait_unit_ready(usalp, 120);
1710d3
+		if (gettimeofday(&starttime, (struct timezone *)0) < 0)
1710d3
+			errmsg("Cannot get start time\n");
1710d3
+		
1710d3
+		if ((*dp->cdr_format)(usalp, dp, formattype) < 0) {
1710d3
+			errmsgno(EX_BAD, "Cannot format disk, aborting.\n");
1710d3
+			comexit(EX_BAD);
1710d3
+		}
1710d3
+		if (gettimeofday(&fixtime, (struct timezone *)0) < 0)
1710d3
+			errmsg("Cannot get format time\n");
1710d3
+		if (lverbose)
1710d3
+			prtimediff("Formatting time: ", &starttime, &fixtime);
1710d3
+
1710d3
+		if (!wait_unit_ready(usalp, 240) || tracks == 0) {
1710d3
+			comexit(0);
1710d3
+		}
1710d3
+		if (gettimeofday(&starttime, (struct timezone *)0) < 0)
1710d3
+			errmsg("Cannot get start time\n");
1710d3
+	}
1710d3
+	
1710d3
 #ifdef	XXX
1710d3
 	if ((*dp->cdr_check_session)() < 0) {
1710d3
 		comexit(EX_BAD);
1710d3
@@ -1230,38 +1264,6 @@ int main(int argc, char *argv[])
1710d3
 			comexit(0);
1710d3
 		}
1710d3
 	}
1710d3
-	if (flags & F_FORMAT) {
1710d3
-		printf("wodim: media format asked\n");
1710d3
-		/*
1710d3
-		* Do not abort if OPC failes. Just give it a chance
1710d3
-		* for better laser power calibration than without OPC.
1710d3
-		*
1710d3
-		* Ricoh drives return with a vendor unique sense code.
1710d3
-		* This is most likely because they refuse to do OPC
1710d3
-		* on a non blank media.
1710d3
-		*/
1710d3
-		usalp->silent++;
1710d3
-		do_opc(usalp, dp, flags);
1710d3
-		usalp->silent--;
1710d3
-		wait_unit_ready(usalp, 120);
1710d3
-		if (gettimeofday(&starttime, (struct timezone *)0) < 0)
1710d3
-			errmsg("Cannot get start time\n");
1710d3
-
1710d3
-		if ((*dp->cdr_format)(usalp, dp, formattype) < 0) {
1710d3
-			errmsgno(EX_BAD, "Cannot format disk, aborting.\n");
1710d3
-			comexit(EX_BAD);
1710d3
-		}
1710d3
-		if (gettimeofday(&fixtime, (struct timezone *)0) < 0)
1710d3
-			errmsg("Cannot get format time\n");
1710d3
-		if (lverbose)
1710d3
-			prtimediff("Formatting time: ", &starttime, &fixtime);
1710d3
-
1710d3
-		if (!wait_unit_ready(usalp, 240) || tracks == 0) {
1710d3
-			comexit(0);
1710d3
-		}
1710d3
-		if (gettimeofday(&starttime, (struct timezone *)0) < 0)
1710d3
-			errmsg("Cannot get start time\n");
1710d3
-	}
1710d3
 	/*
1710d3
 	* Reset start time so we will not see blanking time and
1710d3
 	* writing time counted together.