mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Since Joerg reminded me, make a small change to this file in
order to allow the user to also say: burncd mybigimage dummy To enable a dummy burn. Saves on blanks during testing. :)
This commit is contained in:
parent
21401dfc9a
commit
0026a7bdb4
1 changed files with 3 additions and 2 deletions
|
|
@ -30,10 +30,11 @@ elif [ "`id -u`" != "0" ]; then
|
|||
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
|
||||
wormcontrol select HP 4020i
|
||||
wormcontrol prepdisk double
|
||||
wormcontrol prepdisk double $*
|
||||
wormcontrol track data
|
||||
rtprio 5 team -v 1m 5 < $1 | rtprio 5 dd of=/dev/rworm0 obs=20k
|
||||
rtprio 5 team -v 1m 5 < $fname | rtprio 5 dd of=/dev/rworm0 obs=20k
|
||||
wormcontrol fixate 1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue