diff options
author | obrien <obrien@FreeBSD.org> | 2000-04-26 11:38:10 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-04-26 11:38:10 +0000 |
commit | 6dcbed6a75d8022227330bf5d332361839acdb24 (patch) | |
tree | 1b039a45c001f7db59f0e39aed23dd406263b1b8 | |
parent | bd16c8f77a0617ecefd7fd97e6951775fb89d431 (diff) | |
download | FreeBSD-src-6dcbed6a75d8022227330bf5d332361839acdb24.zip FreeBSD-src-6dcbed6a75d8022227330bf5d332361839acdb24.tar.gz |
"r" devices are on their way out.
-rwxr-xr-x | share/examples/worm/burncd.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/share/examples/worm/burncd.sh b/share/examples/worm/burncd.sh index 9d11925..5b1004c 100755 --- a/share/examples/worm/burncd.sh +++ b/share/examples/worm/burncd.sh @@ -1,5 +1,7 @@ #!/bin/sh # +# $FreeBSD$ +# # usage: burncd input-file # # Note: This is set up to work ONLY on the HP 4020i CDR drive! @@ -31,9 +33,9 @@ else echo -n "Place CD in the worm drive now and press return: " read junk fname=$1; shift - scsi -f /dev/rworm0.ctl -c "0 0 0 0 0 0" >/dev/null 2>&1 + scsi -f /dev/worm0.ctl -c "0 0 0 0 0 0" >/dev/null 2>&1 wormcontrol prepdisk double $* wormcontrol track data - rtprio 5 team -v 1m 5 < $fname | rtprio 5 dd of=/dev/rworm0 obs=20k + rtprio 5 team -v 1m 5 < $fname | rtprio 5 dd of=/dev/worm0 obs=20k wormcontrol fixate 1 fi |