Compare commits

...

6 Commits

19 changed files with 380 additions and 118 deletions

View File

@ -1,11 +1,11 @@
Mario Danic <mario.danic@gmail.com>,
Vreixo Formoso <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net>
libisoburn is Copyright (C) 2007-2008 Vreixo Formoso, Thomas Schmitt
xorriso is Copyright (C) 2007-2008 Thomas Schmitt
libisofs (if included) is Copyright (C) 2007-2008 Vreixo Formoso, Mario Danic
libisoburn is Copyright (C) 2007-2009 Vreixo Formoso, Thomas Schmitt
xorriso is Copyright (C) 2007-2009 Thomas Schmitt
libisofs (if included) is Copyright (C) 2007-2009 Vreixo Formoso, Mario Danic
libburn (if included) is Copyright (C) 2002-2006 Derek Foreman, Ben Jansens
and Copyright (C) 2006-2008 Mario Danic, Thomas Schmitt
and Copyright (C) 2006-2009 Mario Danic, Thomas Schmitt
This program is free software; you can redistribute it and/or modify

16
README
View File

@ -4,8 +4,8 @@
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org.
http://files.libburnia-project.org/releases/libisoburn-0.3.1.tar.gz
Copyright (C) 2006-2008 Vreixo Formoso, Thomas Schmitt.
http://files.libburnia-project.org/releases/libisoburn-0.3.2.pl00.tar.gz
Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt.
Provided under GPL version 2.
------------------------------------------------------------------------------
@ -27,18 +27,18 @@ By using this software you agree to the disclaimer at the end of this text:
Compilation, First Glimpse, Installation
Dynamic library and compile time header requirements for libisoburn-0.3.1 :
- libburn.so.4 , version libburn-0.5.8 or higher
Dynamic library and compile time header requirements for libisoburn-0.3.2 :
- libburn.so.4 , version libburn-0.6.0 or higher
- libisofs.so.6 , version libisofs-0.6.12 or higher
libisoburn and xorriso will not start with libraries which are older than their
headers seen at compile time. So compile in the oldest possible installation
setup unless you have reason to enforce a newer bug fix level.
Obtain libisoburn-0.3.1.tar.gz, take it to a directory of your choice
Obtain libisoburn-0.3.2.pl00.tar.gz, take it to a directory of your choice
and do:
tar xzf libisoburn-0.3.1.tar.gz
cd libisoburn-0.3.1
tar xzf libisoburn-0.3.2.pl00.tar.gz
cd libisoburn-0.3.2
Within that directory execute:
@ -156,7 +156,7 @@ libburnia-project.org
By Mario Danic <mario.danic@gmail.com>,
Vreixo Formoso <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net>
Copyright (C) 2006-2008 Mario Danic, Vreixo Formoso, Thomas Schmitt.
Copyright (C) 2006-2009 Mario Danic, Vreixo Formoso, Thomas Schmitt.
libburnia-project.org is inspired by and in other components still containing
parts of old

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.3.1], [http://libburnia-project.org])
AC_INIT([libisoburn], [0.3.2], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])
@ -8,7 +8,7 @@ AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([subdir-objects])
dnl Hint: Search list for version code aspects:
dnl /AC_INT(
dnl /AC_INIT(
dnl /ISOBURN_.*_VERSION
dnl /LT_.*
dnl /LIB.*_REQUIRED
@ -21,7 +21,7 @@ dnl
dnl These three are only copies to provide libtool with unused LT_RELEASE
ISOBURN_MAJOR_VERSION=0
ISOBURN_MINOR_VERSION=3
ISOBURN_MICRO_VERSION=1
ISOBURN_MICRO_VERSION=2
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
AC_SUBST(ISOBURN_MAJOR_VERSION)
@ -33,16 +33,16 @@ dnl Libtool versioning
dnl Generate libisoburn.so.1.x.y
dnl SONAME will become LT_CURRENT - LT_AGE
dnl
dnl ts A81201
dnl ### This is the release version 0.3.0 = libisoburn.so.1.19.0
dnl This is the development version after above stable release
dnl ts A90105
dnl This is the release version 0.3.2 = libisoburn.so.1.21.0
dnl ### This is the development version after above stable release
dnl LT_CURRENT++, LT_AGE++ have not happened happened yet.
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
dnl
dnl SONAME = 20 - 19 = 1 . Library name = libisoburn.so.1.19.0
dnl SONAME = 22 - 21 = 1 . Library name = libisoburn.so.1.21.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=20
LT_AGE=19
LT_CURRENT=22
LT_AGE=21
LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
@ -106,7 +106,7 @@ AC_CHECK_HEADER(libburn/libburn.h)
AC_CHECK_HEADER(libisofs/libisofs.h)
dnl Check for proper library versions
LIBBURN_REQUIRED=0.5.9
LIBBURN_REQUIRED=0.6.0
LIBISOFS_REQUIRED=0.6.12
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)

View File

@ -6,7 +6,7 @@
*/
/* libburn wrappers for libisoburn
Copyright 2007 - 2008 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007 - 2009 Thomas Schmitt, <scdbackup@gmx.net>
*/
/* <<< A70929 : hardcoded CD-RW with fabricated -msinfo

View File

@ -1,7 +1,7 @@
/*
data source for libisoburn.
Copyright 2007 - 2008 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
Copyright 2007 - 2009 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net>
*/

View File

@ -6,7 +6,7 @@
/*
Class core of libisoburn.
Copyright 2007 - 2008 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
Copyright 2007 - 2009 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net>
*/

View File

@ -6,7 +6,7 @@
/*
libisofs related functions of libisoburn.
Copyright 2007 - 2008 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
Copyright 2007 - 2009 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net>
*/

View File

@ -2,7 +2,7 @@
/*
API definition of libisoburn.
Copyright 2007-2008 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
Copyright 2007-2009 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net>
*/
@ -207,8 +207,8 @@ void isoburn_version(int *major, int *minor, int *micro);
@since 0.1.0
*/
#define isoburn_libburn_req_major 0
#define isoburn_libburn_req_minor 5
#define isoburn_libburn_req_micro 9
#define isoburn_libburn_req_minor 6
#define isoburn_libburn_req_micro 0
/** The minimum version of libisofs to be used with this version of libisoburn
@ -244,7 +244,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
*/
#define isoburn_header_version_major 0
#define isoburn_header_version_minor 3
#define isoburn_header_version_micro 1
#define isoburn_header_version_micro 2
/** Note:
Above version numbers are also recorded in configure.ac because libtool
wants them as parameters at build time.

View File

@ -4,8 +4,8 @@
xorriso. By Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org but also published via:
http://scdbackup.sourceforge.net/xorriso_eng.html
http://scdbackup.sourceforge.net/xorriso-0.3.1.tar.gz
Copyright (C) 2006-2008 Thomas Schmitt, provided under GPL version 2.
http://scdbackup.sourceforge.net/xorriso-0.3.2.pl00.tar.gz
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
------------------------------------------------------------------------------
@ -37,10 +37,10 @@ The tarball contains anything that is needed except libc and libpthread.
libreadline and the readline-dev headers will make dialog mode more convenient,
but are not mandatory.
Obtain xorriso-0.3.1.tar.gz, take it to a directory of your choice and do:
Obtain xorriso-0.3.2.pl00.tar.gz, take it to a directory of your choice and do:
tar xzf xorriso-0.3.1.tar.gz
cd xorriso-0.3.1
tar xzf xorriso-0.3.2.pl00.tar.gz
cd xorriso-0.3.2
Within that directory execute:
@ -200,8 +200,8 @@ and a matching dynamically linked xorriso binary.
This binary is leaner but depends on properly installed libraries of suitable
revision.
Dynamic library and compile time header requirements for libisoburn-0.3.1 :
- libburn.so.4 , version libburn-0.5.8 or higher
Dynamic library and compile time header requirements for libisoburn-0.3.2 :
- libburn.so.4 , version libburn-0.6.0 or higher
- libisofs.so.6 , version libisofs-0.6.12 or higher
libisoburn and xorriso will not start with libraries which are older than their
headers seen at compile time. So compile in the oldest possible installation
@ -231,7 +231,7 @@ libburnia-project.org
By Mario Danic <mario.danic@gmail.com>,
Vreixo Formoso <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net>
Copyright (C) 2006-2008 Mario Danic, Vreixo Formoso, Thomas Schmitt.
Copyright (C) 2006-2009 Mario Danic, Vreixo Formoso, Thomas Schmitt.
libburnia-project.org is inspired by and in other components still containing
parts of old

View File

@ -4382,12 +4382,265 @@ xorriso/make_xorriso_standalone.sh
xorriso/configure_ac.txt
Version leap to 0.3.1
1 Dec 2008 []
1 Dec 2008 [2233]
xorriso/changelog.txt
Documented changes and release timestamp
------------------------------------ cycle - xorriso-0.3.1 -
------------------------------------ cycle - xorriso-0.3.1 -
------------------------------------ cycle - xorriso-0.3.1 - 2008.12.01.202911
2 Dec 2008 [2234]
Promoted libisoburn 0.3.0 from branch to tag
2 Dec 2008 [2235] [2236] [2237] [2238]
Deleted obsoleted branches
2008.12.04.175459 [2240] [2241]
xorriso/xorriso.c
Bug fix: Options -extract and -extract_single were enabled with -osirrox off
2008.12.05.171005 [2242]
libisoburn/libisoburn.h
libisoburn/burn_wrap.c
New API function isoburn_get_mount_params()
2008.12.05.171700 [2243]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
New options -mount and -mount_cmd
2008.12.06.140828 [2244]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso_eng.html
Using uname() rather than #ifdef __FreeBSD__
2008.12.07.122439 [2245]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
Got rid of call system() in Xorriso_mount(), new option -session_string
Dec 7 2008 [2246] [2247]
xorriso/xorriso_eng.html
xorriso/xorriso.1
Small documentation adjustments
------------------------------------ cycle - xorriso-0.3.1 - 2008.12.07.122439
* Bug fix: Options -extract and -extract_single were enabled with -osirrox off
* New API function isoburn_get_mount_params()
* New options -mount , -mount_cmd , -session_string
2008.12.08.120712 [2256]
xorriso/configure_ac.txt
Standalone version switch to libburn-0.5.9
2008.12.08.121106 [2257]
README
configure.ac
libisoburn/libisoburn.h
xorriso/README
Requiring at least libburn-0.5.8
8 Dec 2008 [2258]
xorriso/xorriso.1
Small documentation adjustments
2008.12.08.154521 [2259]
Makefile.am
xorriso/xorriso_private.h
xorriso/compile_xorriso.sh
xorriso/xorriso_makefile_am.txt
Got rid of Xorriso_with_regeX
2008.12.10.093424 [2272]
xorriso/xorrisoburn.c
Enabled formatting of BD-R media to SRM-POW default size
10 Dec 2008 [2275]
xorriso/xorriso.1
Mentioned BD-R in man xorriso
2008.12.11.072427 [2277]
xorriso/xorrisoburn.c
Proper message after failed or refused formatting
2008.12.13.142726 [2281] [2282]
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
xorriso/xorriso.1
New -format modes by_size_ and fast_by_size_
2008.12.13.144622 [2283]
configure.ac
libisoburn/libisoburn.h
Demanding libburn-0.5.9 now
------------------------------------ cycle - xorriso-0.3.1 - 2008.12.13.144622
* By using libburn-0.5.9: support for BD-R media
* New -format modes by_size_ and fast_by_size_
2008.12.13.161650 [2285]
xorriso/xorrisoburn.c
xorriso/xorriso.1
Revoked -format mode by_size for DVD-RW
12 Dec 2008 [2286]
xorriso/xorriso_eng.html
Updated xorriso web page
2008.12.14.093125 [2288]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
New option -assert_volid
2008.12.14.151550 [2291]
xorriso/xorriso.c
Removed outdated alternative code
2008.12.14.231145 [2293]
xorriso/xorriso.c
xorriso/xorriso.1
Options for -as mkisofs: -input-charset, -output-charset
2008.12.16.130139 [2295]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
xorriso/xorriso.1
New option -drive_class for safety management of pseudo-drive access
16 Dec 2008 [2296]
xorriso/README
xorriso/xorriso_eng.html
Updated xorriso documentation
------------------------------------ cycle - xorriso-0.3.1 - 2008.12.16.130139
* New option -assert_volid
* New option -drive_class for safety management of pseudo-drive access
17 Dec 2008 [2299]
+ doc/comments
Preparations for a more presentable online API documentation
2008.12.17.102216 [2300]
Makefile.am
Delivering doxygen input for API documentation with releases
17 Dec 2008 [2301]
doc/comments
Corrected list of authors in libisoburn API documentation
2008.12.21.101705 [2317]
xorriso/xorrisoburn.c
Corrected message about non-matching volume id
------------------------------------ cycle - xorriso-0.3.1 - 2008.12.21.154636
21 Dec 2008 [2318]
+ test/aaip_0_2.h
+ test/aaip_0_2.c
+ test/aaip_0_2_test.c
A first implementation of AAIP 0.2 encoding and decoding
23 Dec 2008 [2326]
test/aaip_0_2.h
test/aaip_0_2.c
test/aaip_0_2_test.c
Gave aaip_0_2 a ring buffer rather than a shifted fifo
25 Dec 2008 [2336]
test/aaip_0_2.h
test/aaip_0_2.c
test/aaip_0_2_test.c
Encoder for ACL long text form
26 Dec 2008 [2338]
test/aaip_0_2.h
test/aaip_0_2.c
test/aaip_0_2_test.c
Decoder for ACL to long text form
1 Jan 2009 [2343]
test/aaip_0_2.h
test/aaip_0_2.c
test/aaip_0_2_test.c
+ test/aaip-os-linux.c
+ test/aaip-os-freebsd.c
+ doc/susp_aaip_0_2.txt
Introduced system adapters for getting and setting EA and ACL
1 Jan 2009 [2344]
test/aaip_0_2.c
Corrected some bugs with attribute list decoding
1 Jan 2009 [2345]
test/aaip_0_2.c
Corrected some more bug with attribute list decoding
4 Jan 2009 [2355]
xorriso/configure_ac.txt
Standalone version switch to libburn-0.6.1
5 Jan 2009 [2357]
svn copy -m "Branching for libisoburn release 0.3.2
http://svn.libburnia-project.org/libisoburn/trunk
http://svn.libburnia-project.org/libisoburn/branches/ZeroThreeTwo
2009.01.05.120643 [2358]
COPYRIGHT
libisoburn/burn_wrap.c
libisoburn/data_source.c
libisoburn/isoburn.c
libisoburn/isofs_wrap.c
xorriso/compile_xorriso.sh
xorriso/xorrisoburn.c
xorriso/xorriso.h
Updated copyright marks to 2009
2009.01.05.123001 [2359]
configure.ac
README
libisoburn/libisoburn.h
xorriso/README
xorriso/xorriso_timestamp.h
xorriso/xorriso_private.h
xorriso/xorrisoburn.h
xorriso/xorriso_eng.html
xorriso/make_xorriso_standalone.sh
xorriso/configure_ac.txt
Version leap to 0.3.2
5 Jan 2009 []
xorriso/changelog.txt
Documented changes and release timestamp
------------------------------------ cycle - xorriso-0.3.2 - 2009.01.05.123001
* Bug fix: Options -extract and -extract_single were enabled with -osirrox off
* New API function isoburn_get_mount_params()
* New options -mount , -mount_cmd , -session_string
* New -format modes by_size_ and fast_by_size_
* New option -assert_volid
* New option -drive_class for safety management of pseudo-drive access
* By using libburn-0.6.0: support for BD-R media
------------------------------------ cycle - xorriso-0.3.3 -
------------------------------------ cycle - xorriso-0.3.3 -
===============================================================================
TODO
@ -4395,7 +4648,6 @@ Documented changes and release timestamp
------------------------------------------------- bugs
------------------------------------------------- important
@ -4403,8 +4655,6 @@ Documented changes and release timestamp
- -load option to ignore existing images
- mount helper which takes arguments like -load
- image sort weight control:
isoburn_igopt_set_sort_files iso_node_set_sort_weight
@ -4436,8 +4686,6 @@ Documented changes and release timestamp
- ??? curb depth of tree traversal recursion
- make xorrisoburn.c leaner
- eject a not yet aquired device (e.g. after modifying commit)
- -cd[ix] and pattern
@ -4523,14 +4771,8 @@ ts A81125.6 0.6.12 : Described license situation of make_isohybrid_mbr.c
------ feature enhancements :
- Optional performing of ISO hybrid patch for USB and other pseudo hard disks
http://www.sfr-fresh.com/linux/misc/syslinux-3.72.tar.gz:a/syslinux-3.72/utils/isohybrid
http://syslinux.zytor.com/archives/2008-October/010869.html
>>> this is completed if above image patching bug is fixed
- Relax option to make the ECMA-119 9.1.5 timestamp reflect the mtime
of the source file rather than the creation time of the image.
mkisofs does it so and circumvents OS bugs.
- A dummy option in IsoWriteOpts which causes iso_image_create_burn_source()
to end before actually data get written. (For -print_size)
- A repeatable shell command as origin ("disk_file")
of a regular file in the ISO image.

View File

@ -1,7 +1,7 @@
#!/bin/sh
# compile_xorriso.sh
# Copyright 2005 - 2008 Thomas Schmitt, scdbackup@gmx.net, GPL
# Copyright 2005 - 2009 Thomas Schmitt, scdbackup@gmx.net, GPL
#
# Not intended for general use in production installations !
# Rather use: ./bootstrap ; ./configure ; make

View File

@ -1,4 +1,4 @@
AC_INIT([xorriso], [0.3.1], [http://libburnia-project.org])
AC_INIT([xorriso], [0.3.2], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])

View File

@ -1,7 +1,7 @@
#!/bin/sh
# make_xorriso_standalone.sh
# Copyright 2008 Thomas Schmitt, scdbackup@gmx.net, GPL
# Copyright 2008 - 2009 Thomas Schmitt, scdbackup@gmx.net, GPL
#
# Not intended for general use in production installations !
#
@ -25,11 +25,11 @@
current_dir=$(pwd)
lone_dir="$current_dir"/"xorriso-standalone"
xorriso_rev=0.3.1
xorriso_rev=0.3.2
# For unstable uploads:
xorriso_pl=""
# xorriso_pl=""
# For stable releases:
# xorriso_pl=".pl00"
xorriso_pl=".pl00"
with_bootstrap_tarball=1

View File

@ -2,7 +2,7 @@
/* Command line oriented batch and dialog tool which creates, loads,
manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2008 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007-2009 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2.

View File

@ -62,15 +62,15 @@ and to MMC-5 for DVD or BD).
GPL software included:<BR>
</H2>
<DL>
<DT>libburn-0.5.7</DT>
<DD>reads and writes data from and to CD, DVD, BD-RE.</DD>
<DT>libburn-0.6.1</DT>
<DD>reads and writes data from and to CD, DVD, BD.</DD>
<DD>(founded by Derek Foreman and Ben Jansens,
developed and maintained since August 2006 by
Thomas Schmitt from team of libburnia-project.org)</DD>
<DT>libisofs-0.6.12</DT>
<DD>operates on ISO 9660 filesystem images.</DD>
<DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
<DT>libisoburn-0.3.0</DT>
<DT>libisoburn-0.3.2</DT>
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
<DD>(By Vreixo Formoso and Thomas Schmitt
from team of libburnia-project.org)</DD>
@ -119,11 +119,9 @@ Can perform multi-session tasks as emulation of mkisofs and cdrecord.
<LI>
Can restore single files and whole trees from ISO image to disk filesystem.
</LI>
<!--
<LI>
Can issue commands to mount older sessions on Linux or FreeBSD.
</LI>
-->
<LI>
Can check media for damages and copy readable blocks to disk.
</LI>
@ -147,6 +145,7 @@ Provides navigation commands for interactive ISO image manipulation.
<P>
<H2>Command Examples:</H2>
<DL>
<DT>Get an overview of drives and their addresses</DT>
<DD>#<KBD>&nbsp;xorriso -devices</KBD></DD>
<DD><KBD>...</KBD></DD>
@ -265,18 +264,19 @@ already been done by a previous -commit.</DT>
<HR>
</DT>
<DT>The following command can be run on blank media to create a
copy of the mentioned disk directory trees, and it can be run on appendable
media to perform a minimal set of change operations which update the
old ISO copies to match the new disk trees.
Older states can be retrieved by help of mount option "session=" from CD-R[W],
by help of "sbsector=" from other media.
So this constitutes true incremental backup.
<DT>The following command performs incremental backup.
It can be run on blank media to create a copy of the mentioned disk
directory trees, and it can be run on appendable media to perform a
minimal set of change operations which update the old ISO copies
to match the new disk trees.
Older states can be retrieved by help of mount options like "sbsector="
or by help of xorriso option -mount.
<BR>
The copies will be complete, except all file names ending
with ".o" or ".swp" which are excluded by options -not_leaf.
Only blank media or media with volume id "PROJECTS_MAIL_..." will be accepted.
Files with names ending by ".o" or ".swp" are excluded by options -not_leaf.
</DT>
<DD>$<KBD>&nbsp;xorriso -dev /dev/sr0 \</KBD></DD>
<DD>$<KBD>&nbsp;xorriso -assert_volid 'PROJECTS_MAIL_*' FATAL \ \</KBD></DD>
<DD><KBD>&nbsp;&nbsp; -dev /dev/sr0 \</KBD></DD>
<DD><KBD>&nbsp;&nbsp; -volid PROJECTS_MAIL_"$(date '+%Y_%m_%d_%H%M%S')" \</KBD></DD>
<DD><KBD>&nbsp;&nbsp; -not_leaf '*.o' -not_leaf '*.swp' \</KBD></DD>
<DD><KBD>&nbsp;&nbsp; -update_r /home/thomas/open_source_projects /open_source_projects \</KBD></DD>
@ -287,6 +287,33 @@ with ".o" or ".swp" which are excluded by options -not_leaf.
<HR>
</DT>
<DT>
Operating systems usually mount the most recent session on media.
xorriso can issue the appropriate mount commands for older sessions.
First get an overview of the sessions on disk:
</DT>
<DD>$<KBD>&nbsp;xorriso -outdev /dev/sr0 -toc</KBD></DD>
<PRE>
TOC layout : Idx , sbsector , Size , Volume Id
ISO session : 1 , 0 , 104719s , PROJECTS_MAIL_2008_08_10_231435
ISO session : 2 , 106928 , 6785s , PROJECTS_MAIL_2008_08_14_184548
...
ISO session : 76 , 820384 , 11035s , PROJECTS_MAIL_2009_01_04_191150
</PRE>
<DT>
Then become superuser and let xorriso mount the session of August 14, 2008
to directory /mnt:
</DT>
<DD>#<KBD>&nbsp;xorriso -mount /dev/sr0 volid '*_2008_08_14_*' /mnt </KBD></DD>
<DT>
To be later unmounted by: <KBD>umount /mnt</KBD>
</DT>
<DT>
<HR>
</DT>
<DT>
After the user has already created a suitable file tree on disk
and copied the ISOLINUX files into subdirectory ./boot/isolinux of
@ -304,13 +331,17 @@ from hard disk or USB stick.
<DT>ISO images may not only be stored on optical media but also in
regular disk files or block devices for full multi-session operation.
The prefix &quot;stdio:&quot; indicates that normal file operations are
desired rather than MMC drive commands:
</DT>
<DD>$<KBD>&nbsp;xorriso -dev stdio:/tmp/regular_file ...other.options...</DD>
<DD>$<KBD>&nbsp;xorriso -dev /tmp/regular_file ...other.options...</DD>
<DT>
A default setting for safety reasons requires that files below /dev/
need prefix &quot;stdio:&quot; if they do not lead to MMC burner devices.
Be cautious not to overwrite your hard disk instead of your USB stick:
</DT>
<DD>$<KBD>&nbsp;xorriso -dev stdio:/dev/sdb ...other.options...</DD>
<DT>Other file types are suitable only for writing but not for reading:</DT>
<DD>$<KBD>&nbsp;xorriso -outdev stdio:/tmp/named_pipe ...other.options...</DD>
<DD>$<KBD>&nbsp;xorriso -outdev /tmp/named_pipe ...other.options...</DD>
<DT>In batch mode it is possible to operate xorriso in a pipeline
with an external consumer of the generated ISO image. Any message
@ -369,8 +400,8 @@ files or trees to disk:
<P>
<DL>
<DT><H3>Download as source code (see README):</H3></DT>
<DD><A HREF="xorriso-0.3.0.pl00.tar.gz">xorriso-0.3.0.pl00.tar.gz</A>
(1080 KB).
<DD><A HREF="xorriso-0.3.2.pl00.tar.gz">xorriso-0.3.2.pl00.tar.gz</A>
(1100 KB).
</DD>
</DL>
</DD>
@ -396,11 +427,9 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
<HR>
<P>
Bug fixes towards xorriso-0.2.8.pl01:
Bug fixes towards xorriso-0.3.0.pl00:
<UL>
<LI>Forgot exit value registration to -return_with. Thanks to Steve Dodd.</LI>
<LI>-format "as_needed" did not recognize unformatted BD-RE</LI>
<LI>disk patterns with relative addresses were not properly resolved</LI>
<LI>Options -extract and -extract_single were not disabled with -osirrox off
<!--
<LI>- none -</LI>
-->
@ -410,16 +439,13 @@ Bug fixes towards xorriso-0.2.8.pl01:
</P>
<P>
Enhancements towards previous stable version xorriso-0.2.8.pl01:
Enhancements towards previous stable version xorriso-0.3.0.pl00:
<UL>
<LI>Suitable ISOLINUX boot images are made alternatively bootable via MBR</LI>
<LI>New options -quoted_path_list, -quoted_not_list</LI>
<LI>New option -backslash_codes for terminal safety with weird file names</LI>
<LI>New options -charset, -in_charset, -out_charset </LI>
<LI>New option -application_id</LI>
<LI>New option -compliance</LI>
<LI>New options -mount, -mount_cmd, -session_string</LI>
<LI>By using libburn-0.6.1: support for BD-R media</LI>
<LI>New -format modes by_size_ and fast_by_size_</LI>
<LI>New option -assert_volid</LI>
<LI>New option -drive_class for safety management of pseudo-drive access</LI>
</UL>
</P>
@ -427,33 +453,27 @@ Enhancements towards previous stable version xorriso-0.2.8.pl01:
<P>
<DL>
<DT><H3>Development snapshot, version 0.3.1 :</H3></DT>
<DD>Bug fixes towards xorriso-0.3.0.pl00:
<DT><H3>Development snapshot, version 0.3.3 :</H3></DT>
<DD>Bug fixes towards xorriso-0.3.2.pl00:
<UL>
<LI>Options -extract and -extract_single were not disabled with -osirrox off
</LI>
<!--
<LI>- none yet -</LI>
<!--
-->
</UL>
</DD>
<DD>Enhancements towards stable version 0.3.0.pl00:
<DD>Enhancements towards stable version 0.3.2.pl00:
<UL>
<LI>New options -mount, -mount_cmd, -session_string</LI>
<LI>By using libburn-0.5.9: support for BD-R media</LI>
<LI>New -format modes by_size_ and fast_by_size_</LI>
<LI>New option -assert_volid</LI>
<LI>New option -drive_class for safety management of pseudo-drive access</LI>
<!--
<LI>- none yet -</LI>
<!--
-->
</UL>
</DD>
<DD>&nbsp;</DD>
<DD><A HREF="README_xorriso_devel">README 0.3.1</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.3.1 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.1)</A></DD>
<DD><A HREF="README_xorriso_devel">README 0.3.3</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.3.3 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.3)</A></DD>
<DD>&nbsp;</DD>
<DT>If you want to distribute development versions of xorriso, then use
this tarball which produces static linking between xorriso and the
@ -463,8 +483,8 @@ libburnia libraries.
installation see README)
</DD>
<DD>
<A HREF="xorriso-0.3.1.tar.gz">xorriso-0.3.1.tar.gz</A>
(1080 KB).
<A HREF="xorriso-0.3.3.tar.gz">xorriso-0.3.3.tar.gz</A>
(1100 KB).
</DD>
<DT>A dynamically linked development version of xorriso can be obtained
from repositories of

View File

@ -2,7 +2,7 @@
/* Command line oriented batch and dialog tool which creates, loads,
manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2008 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007-2009 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2.
@ -18,7 +18,7 @@
#ifndef Xorriso_private_includeD
#define Xorriso_private_includeD yes
#define Xorriso_program_versioN "0.3.1"
#define Xorriso_program_versioN "0.3.2"
/** The source code release timestamp */
#include "xorriso_timestamp.h"

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.12.21.101705"
#define Xorriso_timestamP "2009.01.05.123001"

View File

@ -4,7 +4,7 @@
a command line oriented batch and dialog tool which creates, loads,
manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2008 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007-2009 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2.
*/
@ -498,7 +498,7 @@ int Xorriso_assert_volid(struct XorrisO *xorriso, int msc1, int flag)
"-assert_volid: Volume id does not match pattern: ");
Text_shellsafe(xorriso->assert_volid, xorriso->info_text, 1);
strcat(xorriso->info_text, " <> ");
Text_shellsafe(xorriso->loaded_volid, xorriso->info_text, 1);
Text_shellsafe(volid, xorriso->info_text, 1);
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0,
xorriso->assert_volid_sev, 0);
return(0);

View File

@ -4,7 +4,7 @@
a command line oriented batch and dialog tool which creates, loads,
manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2008 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007-2009 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2.
@ -19,7 +19,7 @@
*/
#define xorriso_libisoburn_req_major 0
#define xorriso_libisoburn_req_minor 3
#define xorriso_libisoburn_req_micro 1
#define xorriso_libisoburn_req_micro 2
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);