Blame SOURCES/cdrkit-1.1.11-format.patch

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