My fingers keep typing 'burncd data foo fixate eject' instead of 'burncd -e
data foo fixate'. Humor them. MFC after: 4 weeks
This commit is contained in:
parent
ff24ff2a1e
commit
f2a9e36629
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=135273
@ -27,7 +27,7 @@
|
||||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd October 18, 2002
|
||||
.Dd September 15, 2004
|
||||
.Os
|
||||
.Dt BURNCD 8
|
||||
.Sh NAME
|
||||
@ -51,7 +51,7 @@ Available options and operands:
|
||||
.It Fl d
|
||||
burn the CD-R/RW in DAO (disk at once) mode.
|
||||
.It Fl e
|
||||
eject the media when done.
|
||||
eject the medium when done.
|
||||
.It Fl f Ar device
|
||||
set the device to use for the burning process.
|
||||
.It Fl F
|
||||
@ -92,6 +92,11 @@ switch when adding additional data to ISO file systems with extra sessions.
|
||||
Blank a CD-RW medium.
|
||||
This uses the fast blanking method, so data are not physically overwritten,
|
||||
only those areas that make the media appear blank for further usage are erased.
|
||||
.It Cm eject
|
||||
Eject the medium when done.
|
||||
This is equivalent to the
|
||||
.Fl e
|
||||
option.
|
||||
.It Cm erase
|
||||
Erase a CD-RW medium.
|
||||
This erases the entire media.
|
||||
|
@ -163,6 +163,10 @@ main(int argc, char **argv)
|
||||
fixate = 1;
|
||||
break;
|
||||
}
|
||||
if (!strcasecmp(argv[arg], "eject")) {
|
||||
eject = 1;
|
||||
break;
|
||||
}
|
||||
if (!strcasecmp(argv[arg], "msinfo")) {
|
||||
struct ioc_read_toc_single_entry entry;
|
||||
struct ioc_toc_header header;
|
||||
|
Loading…
Reference in New Issue
Block a user