# HG changeset patch # User nathan # Date 1349347707 -7200 # Node ID a9348bf5f6e7b613c85520519d521b360e5ca8f1 # Parent ae01b419e8f987060816c887ab281a2a9716ae0b documentation update, bump version diff -r ae01b419e8f9 -r a9348bf5f6e7 CHANGES --- a/CHANGES Sun May 23 12:39:41 2010 +0200 +++ b/CHANGES Thu Oct 04 12:48:27 2012 +0200 @@ -1,3 +1,11 @@ +0.7.1 +----- +- added option to specify the cdrecord executable. Default is now "cdrecord" for + CD and DVD mode. +- fixed writing continuation flag to disk if not in multi-disk mode. +- fixed requesting continuation disk if not in multi-disk mode. +- fixed several minor error checks and compiler warnings. + 0.7.0 ----- - fixed a length check which prevented dumping of images which are bigger than diff -r ae01b419e8f9 -r a9348bf5f6e7 CREDITS --- a/CREDITS Sun May 23 12:39:41 2010 +0200 +++ b/CREDITS Thu Oct 04 12:48:27 2012 +0200 @@ -19,7 +19,7 @@ N: Stefan Huelswitt E: s.huelswitt@gmx.de D: multidisk support, code cleanup, bugfixes -S: Monheim, Germany +S: Germany N: Alejandro Marín E: amarin@servpast.org diff -r ae01b419e8f9 -r a9348bf5f6e7 LICENSE --- a/LICENSE Sun May 23 12:39:41 2010 +0200 +++ b/LICENSE Thu Oct 04 12:48:27 2012 +0200 @@ -1,4 +1,4 @@ -Copyright (c) 2000-2002 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 README --- a/README Sun May 23 12:39:41 2010 +0200 +++ b/README Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ -cdbackup, cdrestore - CD archive utilities version 0.6.4beta -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. All rights reserved. +cdbackup, cdrestore - CD archive utilities version 0.7.1 +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. All rights reserved. This software is released under a BSD-style license - see the LICENSE file. @@ -45,7 +45,7 @@ CONTACT: -------- -Project maintainer is: Stefan Hülswitt +Project maintainer is: Stefan Huelswitt Homepage: http://www.muempf.de/ Any comments, suggestions, bug reports, patches and fixes diff -r ae01b419e8f9 -r a9348bf5f6e7 cdbackup.1 --- a/cdbackup.1 Sun May 23 12:39:41 2010 +0200 +++ b/cdbackup.1 Thu Oct 04 12:48:27 2012 +0200 @@ -1,4 +1,4 @@ -.TH "cdbackup" "1" "0.7.0" "Stefan Hülswitt" "" +.TH "cdbackup" "1" "0.7.1" "Stefan Huelswitt" "" .SH "NAME" .LP cdbackup \- Streaming backup to CD\-R(W)/DVR\-R(W) @@ -6,7 +6,7 @@ .LP cdbackup [\-mvwCDRVX] [\-d \fIdevice\fP] [\-r \fIscsi\-dev\fP] [\-s \fIspeed\fP] [\-i \fIimage\fP] [\-p \fInum\fP] [\-l \fIsize\fP] [\-a \fIlabel\fP] - [\-c \fIcommand\fP] [\-\- \fIcdrecord\-options\fP] + [\-c \fIcommand\fP] [\-E \fIcdrecord\fP] [\-\- \fIcdrecord\-options\fP] .SH "DESCRIPTION" .LP cdbackup is a utility to make streaming backups to CD\-R(W)/DVD\-R(W) disks. It's designed to work with any backup tool which writes the backup to stdout (like tar/cpio/afio). @@ -56,13 +56,19 @@ .TP \fB\-R\fR -Enables DVD writing mode. Cdrecord\-ProDVD is used to burn DVD media, but it's called through a script called "dvdrecord". You should set your cdrecord\-ProDVD key and call cdrecord\-ProDVD from there. +Enables DVD writing mode. Make sure that your \fBcdrecord\fR(1) version is able to burn DVD media. .br Remember that you cannot write multiple sessions to DVD media. Either you stick with one backup per media or you have to use virtual images. .br In DVD mode the options \-p and \-X have no effect. .TP +\fB\-E\fR \fIcdrecord\fP +Set an alternate cdrecord executeable. +.br +(default: "cdrecord") + +.TP \fB\-i\fR \fIimage\fP Enables virtual image mode. The backup stream is written to the given image file. The file is created if it doesn't exists. It's mandatory to give an explicit media size with \-l. Take care that the created virtual image isn't lager that the media size you want to dump it later. You can add up to 96 backups to an virtual image. @@ -173,12 +179,12 @@ Please contact the author if you can contribute additional information about the problem. .SH "AUTHORS" .LP -Stefan Hülswitt +Stefan Huelswitt .SH "SEE ALSO" .LP \fBcdrestore\fR(1), \fBcdrecord\fR(1) .SH "LICENSE" -Copyright (c) 2000\-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000\-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 cdbackup.c --- a/cdbackup.c Sun May 23 12:39:41 2010 +0200 +++ b/cdbackup.c Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* cdbackup.c -Copyright (c) 2000-2010 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 cdbackup.h --- a/cdbackup.h Sun May 23 12:39:41 2010 +0200 +++ b/cdbackup.h Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* cdbackup.h. -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 cdrestore.1 --- a/cdrestore.1 Sun May 23 12:39:41 2010 +0200 +++ b/cdrestore.1 Thu Oct 04 12:48:27 2012 +0200 @@ -1,4 +1,4 @@ -.TH "cdrestore" "1" "0.7.0" "Stefan Hülswitt" "" +.TH "cdrestore" "1" "0.7.1" "Stefan Huelswitt" "" .SH "NAME" .LP cdrestore \- Streaming restore from CD\-R(W)/DVD\-R(W) @@ -97,12 +97,12 @@ cdrestore \-i /dev/dvd \-t 3 \-T .SH "AUTHORS" .LP -Stefan Hülswitt +Stefan Huelswitt .SH "SEE ALSO" .LP \fBcdbackup\fR(1) .SH "LICENSE" -Copyright (c) 2000\-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000\-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 cdrestore.c --- a/cdrestore.c Sun May 23 12:39:41 2010 +0200 +++ b/cdrestore.c Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* cdrestore.c -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 cdrom.c --- a/cdrom.c Sun May 23 12:39:41 2010 +0200 +++ b/cdrom.c Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* cdrom.c -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 cdrom.h --- a/cdrom.h Sun May 23 12:39:41 2010 +0200 +++ b/cdrom.h Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* cdrom.h -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 debug.h --- a/debug.h Sun May 23 12:39:41 2010 +0200 +++ b/debug.h Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* debug.h -Copyright (c) 2000-2002 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 misc.c --- a/misc.c Sun May 23 12:39:41 2010 +0200 +++ b/misc.c Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* misc.c -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 misc.h --- a/misc.h Sun May 23 12:39:41 2010 +0200 +++ b/misc.h Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* misc.h -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 version.h --- a/version.h Sun May 23 12:39:41 2010 +0200 +++ b/version.h Thu Oct 04 12:48:27 2012 +0200 @@ -2,7 +2,7 @@ #define _CDBACKUP_VERSION_H #ifndef VERSION -#define VERSION "0.7.0" +#define VERSION "0.7.1" #endif #endif diff -r ae01b419e8f9 -r a9348bf5f6e7 virtual-backup.c --- a/virtual-backup.c Sun May 23 12:39:41 2010 +0200 +++ b/virtual-backup.c Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* virtual-backup.c -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Hülswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 virtual.c --- a/virtual.c Sun May 23 12:39:41 2010 +0200 +++ b/virtual.c Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* virtual.c -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff -r ae01b419e8f9 -r a9348bf5f6e7 virtual.h --- a/virtual.h Sun May 23 12:39:41 2010 +0200 +++ b/virtual.h Thu Oct 04 12:48:27 2012 +0200 @@ -1,5 +1,5 @@ /* virtual.h -Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt. +Copyright (c) 2000-2012 Craig Condit, Stefan Huelswitt. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: