Compare commits
5 Commits
1.2.0
...
ZeroThreeF
Author | SHA1 | Date | |
---|---|---|---|
8039cfc79a | |||
cb774a21b2 | |||
36c5a8f417 | |||
f3469c3839 | |||
35386d7ed0 |
12
README
12
README
@ -4,7 +4,7 @@
|
|||||||
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
|
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
|
||||||
and Thomas Schmitt <scdbackup@gmx.net>
|
and Thomas Schmitt <scdbackup@gmx.net>
|
||||||
Integrated sub project of libburnia-project.org.
|
Integrated sub project of libburnia-project.org.
|
||||||
http://files.libburnia-project.org/releases/libisoburn-0.3.2.pl00.tar.gz
|
http://files.libburnia-project.org/releases/libisoburn-0.3.4.pl00.tar.gz
|
||||||
Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt.
|
Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt.
|
||||||
Provided under GPL version 2.
|
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
|
Compilation, First Glimpse, Installation
|
||||||
|
|
||||||
Dynamic library and compile time header requirements for libisoburn-0.3.2 :
|
Dynamic library and compile time header requirements for libisoburn-0.3.4 :
|
||||||
- libburn.so.4 , version libburn-0.6.0 or higher
|
- libburn.so.4 , version libburn-0.6.0 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.12 or higher
|
- libisofs.so.6 , version libisofs-0.6.14 or higher
|
||||||
libisoburn and xorriso will not start with libraries which are older than their
|
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
|
headers seen at compile time. So compile in the oldest possible installation
|
||||||
setup unless you have reason to enforce a newer bug fix level.
|
setup unless you have reason to enforce a newer bug fix level.
|
||||||
|
|
||||||
Obtain libisoburn-0.3.2.pl00.tar.gz, take it to a directory of your choice
|
Obtain libisoburn-0.3.4.pl00.tar.gz, take it to a directory of your choice
|
||||||
and do:
|
and do:
|
||||||
|
|
||||||
tar xzf libisoburn-0.3.2.pl00.tar.gz
|
tar xzf libisoburn-0.3.4.pl00.tar.gz
|
||||||
cd libisoburn-0.3.2
|
cd libisoburn-0.3.4
|
||||||
|
|
||||||
Within that directory execute:
|
Within that directory execute:
|
||||||
|
|
||||||
|
16
configure.ac
16
configure.ac
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([libisoburn], [0.3.3], [http://libburnia-project.org])
|
AC_INIT([libisoburn], [0.3.4], [http://libburnia-project.org])
|
||||||
AC_PREREQ([2.50])
|
AC_PREREQ([2.50])
|
||||||
dnl AC_CONFIG_HEADER([config.h])
|
dnl AC_CONFIG_HEADER([config.h])
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ dnl
|
|||||||
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
||||||
ISOBURN_MAJOR_VERSION=0
|
ISOBURN_MAJOR_VERSION=0
|
||||||
ISOBURN_MINOR_VERSION=3
|
ISOBURN_MINOR_VERSION=3
|
||||||
ISOBURN_MICRO_VERSION=3
|
ISOBURN_MICRO_VERSION=4
|
||||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||||
|
|
||||||
AC_SUBST(ISOBURN_MAJOR_VERSION)
|
AC_SUBST(ISOBURN_MAJOR_VERSION)
|
||||||
@ -33,16 +33,16 @@ dnl Libtool versioning
|
|||||||
dnl Generate libisoburn.so.1.x.y
|
dnl Generate libisoburn.so.1.x.y
|
||||||
dnl SONAME will become LT_CURRENT - LT_AGE
|
dnl SONAME will become LT_CURRENT - LT_AGE
|
||||||
dnl
|
dnl
|
||||||
dnl ts A90105
|
dnl ts A90301
|
||||||
dnl ### This is the release version 0.3.2 = libisoburn.so.1.21.0
|
dnl This is the release version 0.3.4 = libisoburn.so.1.23.0
|
||||||
dnl This is the development version after above stable release
|
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++ have not happened happened yet.
|
||||||
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
||||||
dnl
|
dnl
|
||||||
dnl SONAME = 22 - 21 = 1 . Library name = libisoburn.so.1.21.0
|
dnl SONAME = 24 - 23 = 1 . Library name = libisoburn.so.1.23.0
|
||||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||||
LT_CURRENT=22
|
LT_CURRENT=24
|
||||||
LT_AGE=21
|
LT_AGE=23
|
||||||
LT_REVISION=0
|
LT_REVISION=0
|
||||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||||
|
|
||||||
|
@ -260,7 +260,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
|
|||||||
*/
|
*/
|
||||||
#define isoburn_header_version_major 0
|
#define isoburn_header_version_major 0
|
||||||
#define isoburn_header_version_minor 3
|
#define isoburn_header_version_minor 3
|
||||||
#define isoburn_header_version_micro 3
|
#define isoburn_header_version_micro 4
|
||||||
/** Note:
|
/** Note:
|
||||||
Above version numbers are also recorded in configure.ac because libtool
|
Above version numbers are also recorded in configure.ac because libtool
|
||||||
wants them as parameters at build time.
|
wants them as parameters at build time.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
||||||
Integrated sub project of libburnia-project.org but also published via:
|
Integrated sub project of libburnia-project.org but also published via:
|
||||||
http://scdbackup.sourceforge.net/xorriso_eng.html
|
http://scdbackup.sourceforge.net/xorriso_eng.html
|
||||||
http://scdbackup.sourceforge.net/xorriso-0.3.3.tar.gz
|
http://scdbackup.sourceforge.net/xorriso-0.3.4.pl00.tar.gz
|
||||||
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
|
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -33,14 +33,20 @@ The most simple way to get xorriso from source code is the xorriso standalone
|
|||||||
tarball.
|
tarball.
|
||||||
|
|
||||||
Prerequisites:
|
Prerequisites:
|
||||||
The tarball contains anything that is needed except libc and libpthread.
|
The tarball contains anything that is needed except the following system
|
||||||
libreadline and the readline-dev headers will make dialog mode more convenient,
|
components:
|
||||||
but are not mandatory.
|
libc, libpthread
|
||||||
|
plus on FreeBSD: libiconv, libcam
|
||||||
|
Optional at compile time are:
|
||||||
|
libreadline and the readline-dev headers make dialog mode more convenient.
|
||||||
|
on Linux: libacl and libacl-devel allow getting and setting ACLs.
|
||||||
|
If they were present at compile time, then the optional libraries have to
|
||||||
|
be present at runtime, too.
|
||||||
|
|
||||||
Obtain xorriso-0.3.3.tar.gz, take it to a directory of your choice and do:
|
Obtain xorriso-0.3.4.pl00.tar.gz, take it to a directory of your choice and do:
|
||||||
|
|
||||||
tar xzf xorriso-0.3.3.tar.gz
|
tar xzf xorriso-0.3.4.pl00.tar.gz
|
||||||
cd xorriso-0.3.3
|
cd xorriso-0.3.4
|
||||||
|
|
||||||
Within that directory execute:
|
Within that directory execute:
|
||||||
|
|
||||||
@ -200,9 +206,9 @@ and a matching dynamically linked xorriso binary.
|
|||||||
This binary is leaner but depends on properly installed libraries of suitable
|
This binary is leaner but depends on properly installed libraries of suitable
|
||||||
revision.
|
revision.
|
||||||
|
|
||||||
Dynamic library and compile time header requirements for libisoburn-0.3.3 :
|
Dynamic library and compile time header requirements for libisoburn-0.3.4 :
|
||||||
- libburn.so.4 , version libburn-0.6.0 or higher
|
- libburn.so.4 , version libburn-0.6.0 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.12 or higher
|
- libisofs.so.6 , version libisofs-0.6.14 or higher
|
||||||
libisoburn and xorriso will not start with libraries which are older than their
|
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
|
headers seen at compile time. So compile in the oldest possible installation
|
||||||
setup unless you have reason to enforce a newer bug fix level.
|
setup unless you have reason to enforce a newer bug fix level.
|
||||||
|
@ -4629,7 +4629,7 @@ Version leap to 0.3.2
|
|||||||
xorriso/changelog.txt
|
xorriso/changelog.txt
|
||||||
Documented changes and release timestamp
|
Documented changes and release timestamp
|
||||||
|
|
||||||
------------------------------------ cycle - xorriso-0.3.2 - 2009.01.05.123001
|
----------------------------------- release - xorriso-0.3.2 - 2009.01.05.123001
|
||||||
* Bug fix: Options -extract and -extract_single were enabled with -osirrox off
|
* Bug fix: Options -extract and -extract_single were enabled with -osirrox off
|
||||||
* New API function isoburn_get_mount_params()
|
* New API function isoburn_get_mount_params()
|
||||||
* New options -mount , -mount_cmd , -session_string
|
* New options -mount , -mount_cmd , -session_string
|
||||||
@ -4663,13 +4663,464 @@ xorriso/make_xorriso_standalone.sh
|
|||||||
xorriso/configure_ac.txt
|
xorriso/configure_ac.txt
|
||||||
Version leap to 0.3.3
|
Version leap to 0.3.3
|
||||||
|
|
||||||
[]
|
5 Jan 2009 [2364]
|
||||||
xorriso/changelog.txt
|
xorriso/changelog.txt
|
||||||
Documented changes and release timestamp
|
Documented changes and release timestamp
|
||||||
|
|
||||||
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.05.153105
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.05.153105
|
||||||
|
|
||||||
------------------------------------ cycle - xorriso-0.3.3 -
|
|
||||||
|
5 Jan 2009 [2365]
|
||||||
|
svn move http://svn.libburnia-project.org/libisoburn/branches/ZeroThreeTwo
|
||||||
|
http://svn.libburnia-project.org/libisoburn/tags/ZeroThreeTwo
|
||||||
|
Promoted branch to tag
|
||||||
|
|
||||||
|
2009.01.06.123047 [2368]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Some small corrections of documentation
|
||||||
|
|
||||||
|
9 Jan 2009 [2382]
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Mentioned bug fix and pl01
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.09.103251
|
||||||
|
|
||||||
|
2009.01.10.154018 [2386]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
Avoiding use of function parameter name "class"
|
||||||
|
|
||||||
|
14 Jan 2009 [2395]
|
||||||
|
doc/susp_aaip_0_2.txt
|
||||||
|
Clarified that AAIP is only allowed if RRIP is present
|
||||||
|
|
||||||
|
2009.01.14.110935 [2396]
|
||||||
|
Makefile.am
|
||||||
|
xorriso/compile_xorriso.sh
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
Introduced AAIP code. Now linking with libacl.
|
||||||
|
|
||||||
|
2009.01.17.181500 [2400]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
New option -getfacl
|
||||||
|
|
||||||
|
2009.01.18.213952 [2401]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Restoring ACLs with -extract and others
|
||||||
|
|
||||||
|
2009.01.21.150243 [2402]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/isoburn.h
|
||||||
|
libisoburn/isoburn.c
|
||||||
|
libisoburn/isofs_wrap.c
|
||||||
|
New API macro isoburn_ropt_noaaip controls enabling of AAIP loading
|
||||||
|
|
||||||
|
2009.01.21.203852 [2403]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/isoburn.h
|
||||||
|
libisoburn/isoburn.c
|
||||||
|
libisoburn/isofs_wrap.c
|
||||||
|
libisoburn/burn_wrap.c
|
||||||
|
Had to split isoburn_ropt_noaaip into isoburn_ropt_noacl and isoburn_ropt_noea
|
||||||
|
|
||||||
|
2009.01.21.204513 [2404]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
New option -acl enables ACL loading
|
||||||
|
|
||||||
|
2009.01.22.130107 [2405]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/isoburn.h
|
||||||
|
libisoburn/isoburn.c
|
||||||
|
libisoburn/isofs_wrap.c
|
||||||
|
Now it is isoburn_ropt_noaaip , isoburn_ropt_noacl and isoburn_ropt_noea
|
||||||
|
|
||||||
|
2009.01.22.130255 [2406]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Adapted to new macro situation in libisoburn
|
||||||
|
|
||||||
|
2009.01.22.143210 [2407]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/isoburn.h
|
||||||
|
libisoburn/isoburn.c
|
||||||
|
New macro isoburn_igopt_aaip controls writing of AAIP info into images
|
||||||
|
|
||||||
|
2009.01.22.143253 [2408]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Making use of new libisoburn macro isoburn_igopt_aaip
|
||||||
|
|
||||||
|
2009.01.22.152252 [2409]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Restoring ACL only if -acl "on"
|
||||||
|
|
||||||
|
2009.01.22.155049 [2410]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Removing leading slash from -getfacl output of file path
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.22.155049
|
||||||
|
* New option -acl enables ACL import and export
|
||||||
|
|
||||||
|
|
||||||
|
2009.01.23.101305 [2411]
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
Promoted standalone libisofs to 0.6.13
|
||||||
|
|
||||||
|
2009.01.23.102843 [2412]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/burn_wrap.c
|
||||||
|
Demanding libisofs 0.6.13 now
|
||||||
|
|
||||||
|
2009.01.23.140824 [2413]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New find tests -has_acl, -has_no_acl, new action getfacl, new option getfacl_r
|
||||||
|
|
||||||
|
23 Jan 2009 [2414]
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Updated xorriso web page
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.23.140824
|
||||||
|
* New find tests -has_acl, -has_no_acl , new find action getfacl
|
||||||
|
* New option -getfacl_r
|
||||||
|
|
||||||
|
2009.01.23.172652 [2415]
|
||||||
|
configure.ac
|
||||||
|
Makefile.am
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
xorriso compilation detects availability of libacl and of Linux listxattr call
|
||||||
|
|
||||||
|
2009.01.23.172757 [2416]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Silenced a FAILURE message with -acl if no image is loaded
|
||||||
|
|
||||||
|
23 Jan 2009 [2417]
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Updated xorriso web page
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.23.172757
|
||||||
|
|
||||||
|
|
||||||
|
24 Jan 2009 [2418]
|
||||||
|
xorriso/compile_xorriso.sh
|
||||||
|
Took into respect changed .o file names of libisofs
|
||||||
|
|
||||||
|
2009.01.25.141124 [2424]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
New option -setfacl, -setfacl_r, new -find action setfacl
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.25.141124
|
||||||
|
* New option -setfacl, -setfacl_r, new -find action setfacl
|
||||||
|
|
||||||
|
|
||||||
|
25 Jan 2009 [2425]
|
||||||
|
- test/aaip_0_2.h
|
||||||
|
- test/aaip_0_2.c
|
||||||
|
- test/aaip-os-freebsd.c
|
||||||
|
- test/aaip-os-linux.c
|
||||||
|
- test/aaip_0_2_test.c
|
||||||
|
- doc/susp_aaip_0_2.txt
|
||||||
|
AAIP code now resides in libisofs
|
||||||
|
|
||||||
|
2009.01.26.173254 [2426]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/isoburn.h
|
||||||
|
libisoburn/isoburn.c
|
||||||
|
New macro isoburn_igopt_aaip_susp_1_10 controls writing of AAIP ER and ES
|
||||||
|
|
||||||
|
2009.01.26.173606 [2427]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Gave user control over isoburn_igopt_aaip_susp_1_10
|
||||||
|
|
||||||
|
26 Jan 2009 [2428]
|
||||||
|
xorriso/make_xorriso_standalone.sh
|
||||||
|
Including doc/susp_aaip_0_2.txt in xorriso-standalone
|
||||||
|
|
||||||
|
2009.01.27.121417 [2432]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
Mentioned the need for 64 bit file i/o
|
||||||
|
|
||||||
|
2009.01.28.074917 [2434]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Bug fixes and enhancements about "default" ACL
|
||||||
|
|
||||||
|
2009.01.28.114755 [2435]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Bug fixes and enhancements about "default" ACL
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.28.114755
|
||||||
|
|
||||||
|
|
||||||
|
2009.01.28.190140 [1436]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Made -getfacl file name escaping more similar to shell command behavior
|
||||||
|
|
||||||
|
2009.01.29.165339 [2437]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New option -setfacl_list
|
||||||
|
|
||||||
|
28 Jan 2009 [2438]
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Updated xorriso web page
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.29.165339
|
||||||
|
* New option -setfacl_list
|
||||||
|
|
||||||
|
29 Jan 2009 [2439]
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
Added aaip-os-dummy.c to xorriso-standalone
|
||||||
|
|
||||||
|
2009.01.29.210606 [2440]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Bug fix: included sys/wait.h rather than wrong wait.h
|
||||||
|
|
||||||
|
2009.01.30.145624 [2442]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Followed changes in iso_node_*acl_text API
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.01.30.200825
|
||||||
|
|
||||||
|
2009.01.31.101122 [2443]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Equipped output of lsl with '+' perm if ACL is present
|
||||||
|
|
||||||
|
2009.02.02.134346 [2444]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New options -xattr, -getfattr, find -has_xattr, -has_aaip, -exec getfattr
|
||||||
|
|
||||||
|
2009.02.02.201124 [2445]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Enabled restoring of xattr
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.02.201124
|
||||||
|
* New options -xattr, -getfattr, find -has_xattr, -has_aaip, -exec getfattr
|
||||||
|
|
||||||
|
|
||||||
|
2009.02.03.162440 [2446]
|
||||||
|
Makefile.am
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
Linking with $LIBBURN_ARCH_LIBS to get -lcam on FreeBSD
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.03.162440
|
||||||
|
|
||||||
|
|
||||||
|
2009.02.04.200055 [2449]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Took into respect eventual resolution of symbolic links
|
||||||
|
|
||||||
|
2009.02.04.200653 [2450]
|
||||||
|
configure.ac
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
Checking for iconv(3) in separate libiconv (e.g. on FreeBSD)
|
||||||
|
|
||||||
|
2009.02.07.090104 [2453]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Correct group permission bits with -acl off and -extract file that has ACL
|
||||||
|
|
||||||
|
2009.02.07.142605 [2454]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Correct group permission bits with -acl off and disk file that has ACL
|
||||||
|
|
||||||
|
2009.02.08.132116 [2455]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
First code for -setfattr (have to fix some ACL problems before going on)
|
||||||
|
|
||||||
|
2009.02.08.151354 [2456]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Displaying "+" with lslx if ACL is detected
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.08.151354
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.09.103308
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.09.170857
|
||||||
|
|
||||||
|
2009.02.09.185940 [2458]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
New options -setfattr, -setfattr_r, new find -exec setfattr
|
||||||
|
|
||||||
|
10 Feb 2009 [2459]
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Updated xorriso home page
|
||||||
|
|
||||||
|
2009.02.10.125831 [2460]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Closed a memory leak with unreleased IsoImage in boot image inquiry
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.10.195106
|
||||||
|
|
||||||
|
12 Feb 2009 [2461]
|
||||||
|
xorriso/convert_man_to_html.sh
|
||||||
|
Adapted html man page generator to textchanges
|
||||||
|
|
||||||
|
2009.02.12.110516 [2462]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
New -as mkisofs options --acl and --xattr
|
||||||
|
|
||||||
|
12 Feb 2009 [2463]
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Updated xorriso man page
|
||||||
|
|
||||||
|
2009.02.13.202539 [2464]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
New option -setfattr_list
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.13.202539
|
||||||
|
* New -as mkisofs options --acl and --xattr
|
||||||
|
* New option -setfattr_list
|
||||||
|
|
||||||
|
|
||||||
|
2009.02.14.133013 [2465]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
-as mkisofs --acl and --xattr was not properly recognized
|
||||||
|
|
||||||
|
2009.02.16.082645 [2466]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Took into respect ACL and xattr with -compare and -update
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.16.082645
|
||||||
|
|
||||||
|
|
||||||
|
2009.02.17.184231 [2467]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
New option -disk_dev_ino
|
||||||
|
|
||||||
|
2009.02.19.123524 [2475]
|
||||||
|
libisoburn/isofs_wrap.c
|
||||||
|
Adapted to removal of Libburn_with_aaiP macro
|
||||||
|
|
||||||
|
2009.02.19.123607 [2476]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Adapted to removal of Libburn_with_aaiP macro
|
||||||
|
|
||||||
|
19 Feb 2009 [2477]
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
Adapted to version leap libisofs-0.6.14
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.19.123607
|
||||||
|
* New option -disk_dev_ino accelerates incremental backups
|
||||||
|
|
||||||
|
|
||||||
|
2009.02.19.183707 [2478]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
Committing forgotten xorriso_private.h
|
||||||
|
|
||||||
|
20 Feb 2009 [2487]
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
Adapted to version leap libburn-0.6.2
|
||||||
|
|
||||||
|
2009.02.25.144045 [2496]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
-disk_dev_ino mode ino_only
|
||||||
|
|
||||||
|
2009.02.28.175747 [2502]
|
||||||
|
configure.ac
|
||||||
|
Requiring libisofs-0.6.14 now, libburn-0.6.0 still suffices
|
||||||
|
|
||||||
|
2009.02.28.175926 [2503]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/isoburn.h
|
||||||
|
libisoburn/isoburn.c
|
||||||
|
New API function isoburn_igopt_get_data_start()
|
||||||
|
|
||||||
|
2009.02.28.181358 [2504]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New -stream_recording mode with start address, "on" is now 32s
|
||||||
|
|
||||||
|
2009.02.28.181750 [2505]
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
Switched standalone version to libisofs-0.6.15
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.3 - 2009.02.28.181750
|
||||||
|
|
||||||
|
01 Mar 2009 [2506]
|
||||||
|
svn copy -m Branching for libisoburn release 0.3.4
|
||||||
|
http://svn.libburnia-project.org/libisoburn/trunk
|
||||||
|
http://svn.libburnia-project.org/libisoburn/branches/ZeroThreeFour
|
||||||
|
|
||||||
|
2009.03.01.103001 [2507]
|
||||||
|
configure.ac
|
||||||
|
README
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
xorriso/README
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
xorriso/xorriso.1
|
||||||
|
xorriso/make_xorriso_standalone.sh
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
xorriso/xorriso_timestamp.h
|
||||||
|
Version leap to 0.3.4
|
||||||
|
|
||||||
|
1 Mar 2009 []
|
||||||
|
xorriso/changelog.txt
|
||||||
|
Documented changes and release timestamp
|
||||||
|
|
||||||
|
----------------------------------- release - xorriso-0.3.4 -
|
||||||
|
* New option -acl enables ACL import and export
|
||||||
|
* New options -getfacl, -getfacl_r, -setfacl, -setfacl_r, -setfacl_list
|
||||||
|
* New find tests -has_acl, -has_no_acl , new find actions getfacl, setfacl
|
||||||
|
* New option -xattr enables import and export of Extended Attributes
|
||||||
|
* New options -getfattr, -getfattr_r, -setfattr, -setfattr_r, -setfattr_list
|
||||||
|
* New find tests -has_xattr, -has_aaip, new find actions getfattr, setfattr
|
||||||
|
* New -as mkisofs options --acl and --xattr
|
||||||
|
* New option -disk_dev_ino accelerates incremental backups
|
||||||
|
|
||||||
------------------------------------ cycle - xorriso-0.3.3 -
|
------------------------------------ cycle - xorriso-0.3.3 -
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
@ -4680,16 +5131,19 @@ Documented changes and release timestamp
|
|||||||
|
|
||||||
------------------------------------------------- important
|
------------------------------------------------- important
|
||||||
|
|
||||||
|
- Special pseudo ACL: "--remove-default"
|
||||||
|
|
||||||
|
- stream_recording for data blocks but not for superblock and directory trees
|
||||||
|
|
||||||
------------------------------------------------- development
|
------------------------------------------------- development
|
||||||
|
|
||||||
|
- ??? -getfaclx , -getfattrx
|
||||||
|
|
||||||
- -load option to ignore existing images
|
- -load option to ignore existing images
|
||||||
|
|
||||||
- image sort weight control:
|
- image sort weight control:
|
||||||
isoburn_igopt_set_sort_files iso_node_set_sort_weight
|
isoburn_igopt_set_sort_files iso_node_set_sort_weight
|
||||||
|
|
||||||
- stream_recording for data blocks but not for superblock and directory trees
|
|
||||||
|
|
||||||
- random access read and write option
|
- random access read and write option
|
||||||
|
|
||||||
- option to patch the mount image size and location on overwriteables
|
- option to patch the mount image size and location on overwriteables
|
||||||
@ -4730,66 +5184,15 @@ Documented changes and release timestamp
|
|||||||
|
|
||||||
------ problem fixes :
|
------ problem fixes :
|
||||||
|
|
||||||
<<< done in 0.6.12
|
- What to do about this ?
|
||||||
ts A81106 : removed apostrophe and dangerous text display
|
libisofs/fs_image.c :
|
||||||
|
* TODO #00016 : handle non RR ER entries
|
||||||
<<< done in 0.6.12
|
*
|
||||||
ts A81107 : option to override the local charset name
|
* if several ER are present, we need to identify the position of
|
||||||
|
* what refers to RR, and then look for corresponding ES entry in
|
||||||
<<< done in libisofs-0.6.10.pl01
|
* each directory record. I have not implemented this (it's not used,
|
||||||
<<< done in 0.6.12
|
* no?), but if we finally need it, it can be easily implemented in
|
||||||
ts A81108 : ticket 145, delaying boot image patching until new LBA is known
|
* the iterator, transparently for the rest of the code.
|
||||||
In ecma119_image_new() get move ElTorito ->compute_data_blocks()
|
|
||||||
behind all other ->compute_data_blocks() in order to have the
|
|
||||||
correct future LBA of isolinux.bin in patch_boot_image() as
|
|
||||||
t->bootimg->sections[0].block.
|
|
||||||
|
|
||||||
<<< done in libisofs-0.6.10.pl01
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81112 : ticket 142 by jr, porting to FreeBSD
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81113 : emphasized in the API docs the fact that
|
|
||||||
iso_image_create_burn_source() starts image generation
|
|
||||||
mentioned the FreeBSD timezone bug with API docs of
|
|
||||||
iso_write_opts_set_always_gmt()
|
|
||||||
|
|
||||||
<<< done in libisofs-0.6.10.pl01
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81118 : ticket 144: non-unique inode numbers with non-RRIP-1.12 images
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81120 : Option to use of old fashioned RRIP-1.10 rather than RRIP-1.12
|
|
||||||
API function iso_write_opts_set_rrip_version_1_10()
|
|
||||||
This can be disabled by disabling A81114.
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81114 : #ifdef for producing old ER signature "RRIP_1991A"
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81121 : Option to store in ECMA-119 timestamp mtime of source
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81125 : Version switch to 0.6.12 , libisofs-6.8.0.so
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81125.2 : Described need to pad isohybrid to full MB.
|
|
||||||
Removed compiler warning about isohybrid FIXME.
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81125.3 : More apostrophes removed from messages
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81125.4 : Removed surplus line from rrip_add_PN().
|
|
||||||
It was introduced with the FreeBSD port.
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81125.5 : Added a missing change for RRIP-1.10 option to rrip_calc_len()
|
|
||||||
|
|
||||||
<<< done in 0.6.12
|
|
||||||
ts A81125.6 0.6.12 : Described license situation of make_isohybrid_mbr.c
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
>>> make ISO_FILENAME_WRONG_CHARSET a warning rather than a HINT
|
>>> make ISO_FILENAME_WRONG_CHARSET a warning rather than a HINT
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([xorriso], [0.3.3], [http://libburnia-project.org])
|
AC_INIT([xorriso], [0.3.4], [http://libburnia-project.org])
|
||||||
AC_PREREQ([2.50])
|
AC_PREREQ([2.50])
|
||||||
dnl AC_CONFIG_HEADER([config.h])
|
dnl AC_CONFIG_HEADER([config.h])
|
||||||
|
|
||||||
|
@ -25,11 +25,11 @@
|
|||||||
current_dir=$(pwd)
|
current_dir=$(pwd)
|
||||||
lone_dir="$current_dir"/"xorriso-standalone"
|
lone_dir="$current_dir"/"xorriso-standalone"
|
||||||
|
|
||||||
xorriso_rev=0.3.3
|
xorriso_rev=0.3.4
|
||||||
# For unstable uploads:
|
# For unstable uploads:
|
||||||
xorriso_pl=""
|
# xorriso_pl=""
|
||||||
# For stable releases:
|
# For stable releases:
|
||||||
# xorriso_pl=".pl00"
|
xorriso_pl=".pl00"
|
||||||
|
|
||||||
with_bootstrap_tarball=1
|
with_bootstrap_tarball=1
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.\" First parameter, NAME, should be all caps
|
.\" First parameter, NAME, should be all caps
|
||||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||||
.\" other parameters are allowed: see man(7), man(1)
|
.\" other parameters are allowed: see man(7), man(1)
|
||||||
.TH XORRISO 1 "Feb 27, 2008"
|
.TH XORRISO 1 "Mar 01, 2009"
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.\"
|
.\"
|
||||||
.\" Some roff macros, for reference:
|
.\" Some roff macros, for reference:
|
||||||
@ -3195,7 +3195,9 @@ First check which backup sessions are on the media:
|
|||||||
Then load the desired session and copy the file trees to disk.
|
Then load the desired session and copy the file trees to disk.
|
||||||
Avoid to eventually create /home/thomas/restored without rwx-permission.
|
Avoid to eventually create /home/thomas/restored without rwx-permission.
|
||||||
.br
|
.br
|
||||||
\fB$\fR xorriso -load volid 'PROJECTS_MAIL_2008_06_19*' \\
|
\fB$\fR xorriso -acl on -xattr on \\
|
||||||
|
.br
|
||||||
|
-load volid 'PROJECTS_MAIL_2008_06_19*' \\
|
||||||
.br
|
.br
|
||||||
-indev /dev/sr0 \\
|
-indev /dev/sr0 \\
|
||||||
.br
|
.br
|
||||||
@ -3207,7 +3209,7 @@ Avoid to eventually create /home/thomas/restored without rwx-permission.
|
|||||||
.br
|
.br
|
||||||
/home/thomas/restored/open_source_projects \\
|
/home/thomas/restored/open_source_projects \\
|
||||||
.br
|
.br
|
||||||
-extract /personal_mail /home/thomas/restored/personal_mail
|
-extract /personal_mail /home/thomas/restored/personal_mail \\
|
||||||
.br
|
.br
|
||||||
-rollback_end
|
-rollback_end
|
||||||
.SS
|
.SS
|
||||||
|
@ -50,11 +50,14 @@ and to MMC-5 for DVD or BD).
|
|||||||
<DD>With kernel 2.6 the drive should not be under ide-scsi.</DD>
|
<DD>With kernel 2.6 the drive should not be under ide-scsi.</DD>
|
||||||
<DT>or FreeBSD (with libc, of course) :</DT>
|
<DT>or FreeBSD (with libc, of course) :</DT>
|
||||||
<DD>ATAPI/CAM support has to be enabled in the kernel, see atapicam(4).</DD>
|
<DD>ATAPI/CAM support has to be enabled in the kernel, see atapicam(4).</DD>
|
||||||
|
<DD>libcam has to be installed.</DD>
|
||||||
<DD>libiconv has to be installed.</DD>
|
<DD>libiconv has to be installed.</DD>
|
||||||
<DT>libpthread</DT>
|
<DT>libpthread</DT>
|
||||||
<DD>is supposed to be a standard system component.</DD>
|
<DD>is supposed to be a standard system component.</DD>
|
||||||
<DT>libreadline and libreadline-dev</DT>
|
<DT>libreadline and libreadline-dev</DT>
|
||||||
<DD>are optional and eventually make dialog more convenient.</DD>
|
<DD>are optional and eventually make dialog more convenient.</DD>
|
||||||
|
<DT>libacl and libacl-devel</DT>
|
||||||
|
<DD>are optional and eventually allow on Linux to get and set ACLs.</DD>
|
||||||
</DL>
|
</DL>
|
||||||
</P>
|
</P>
|
||||||
|
|
||||||
@ -63,15 +66,16 @@ and to MMC-5 for DVD or BD).
|
|||||||
GPL software included:<BR>
|
GPL software included:<BR>
|
||||||
</H2>
|
</H2>
|
||||||
<DL>
|
<DL>
|
||||||
<DT>libburn-0.6.1</DT>
|
<DT>libburn-0.6.3</DT>
|
||||||
<DD>reads and writes data from and to CD, DVD, BD.</DD>
|
<DD>reads and writes data from and to CD, DVD, BD.</DD>
|
||||||
<DD>(founded by Derek Foreman and Ben Jansens,
|
<DD>(founded by Derek Foreman and Ben Jansens,
|
||||||
developed and maintained since August 2006 by
|
developed and maintained since August 2006 by
|
||||||
Thomas Schmitt from team of libburnia-project.org)</DD>
|
Thomas Schmitt from team of libburnia-project.org)</DD>
|
||||||
<DT>libisofs-0.6.12</DT>
|
<DT>libisofs-0.6.15</DT>
|
||||||
<DD>operates on ISO 9660 filesystem images.</DD>
|
<DD>operates on ISO 9660 filesystem images.</DD>
|
||||||
<DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
|
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
|
||||||
<DT>libisoburn-0.3.2</DT>
|
from team of libburnia-project.org)</DD>
|
||||||
|
<DT>libisoburn-0.3.4</DT>
|
||||||
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
|
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
|
||||||
<DD>(By Vreixo Formoso and Thomas Schmitt
|
<DD>(By Vreixo Formoso and Thomas Schmitt
|
||||||
from team of libburnia-project.org)</DD>
|
from team of libburnia-project.org)</DD>
|
||||||
@ -120,13 +124,9 @@ Can perform multi-session tasks as emulation of mkisofs and cdrecord.
|
|||||||
<LI>
|
<LI>
|
||||||
Can restore single files and whole trees from ISO image to disk filesystem.
|
Can restore single files and whole trees from ISO image to disk filesystem.
|
||||||
</LI>
|
</LI>
|
||||||
|
|
||||||
<!--
|
|
||||||
<LI>
|
<LI>
|
||||||
Can record and restore ACL of disk files.
|
Can record and restore ACL and xattr of disk files.
|
||||||
</LI>
|
</LI>
|
||||||
-->
|
|
||||||
|
|
||||||
<LI>
|
<LI>
|
||||||
Can issue commands to mount older sessions on Linux or FreeBSD.
|
Can issue commands to mount older sessions on Linux or FreeBSD.
|
||||||
</LI>
|
</LI>
|
||||||
@ -280,10 +280,13 @@ to match the new disk trees.
|
|||||||
Older states can be retrieved by help of mount options like "sbsector="
|
Older states can be retrieved by help of mount options like "sbsector="
|
||||||
or by help of xorriso option -mount.
|
or by help of xorriso option -mount.
|
||||||
<BR>
|
<BR>
|
||||||
|
Eventual ACL or xattr will be recorded. Data reading will be avoided by
|
||||||
|
accelerator option -disk_dev_ino.
|
||||||
Only blank media or media with volume id "PROJECTS_MAIL_..." will be accepted.
|
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.
|
Files with names ending by ".o" or ".swp" are excluded by options -not_leaf.
|
||||||
</DT>
|
</DT>
|
||||||
<DD>$<KBD> xorriso -assert_volid 'PROJECTS_MAIL_*' FATAL \ \</KBD></DD>
|
<DD>$<KBD> xorriso -acl on -xattr on -disk_dev_ino on \</KBD></DD>
|
||||||
|
<DD><KBD> -assert_volid 'PROJECTS_MAIL_*' FATAL \</KBD></DD>
|
||||||
<DD><KBD> -dev /dev/sr0 \</KBD></DD>
|
<DD><KBD> -dev /dev/sr0 \</KBD></DD>
|
||||||
<DD><KBD> -volid PROJECTS_MAIL_"$(date '+%Y_%m_%d_%H%M%S')" \</KBD></DD>
|
<DD><KBD> -volid PROJECTS_MAIL_"$(date '+%Y_%m_%d_%H%M%S')" \</KBD></DD>
|
||||||
<DD><KBD> -not_leaf '*.o' -not_leaf '*.swp' \</KBD></DD>
|
<DD><KBD> -not_leaf '*.o' -not_leaf '*.swp' \</KBD></DD>
|
||||||
@ -383,7 +386,8 @@ One may switch from mkisofs emulation to xorriso's own command mode:
|
|||||||
<DT>If for any reason the reading operating system mishandles the ISO image
|
<DT>If for any reason the reading operating system mishandles the ISO image
|
||||||
or some files in it, one may enable reverse operation of xorriso and copy
|
or some files in it, one may enable reverse operation of xorriso and copy
|
||||||
files or trees to disk:
|
files or trees to disk:
|
||||||
<DD>$<KBD> xorriso -indev /dev/sr0 \</KBD></DD>
|
<DD>$<KBD> xorriso -acl on -xattr on \</KBD></DD>
|
||||||
|
<DD><KBD> -indev /dev/sr0 \</KBD></DD>
|
||||||
<DD><KBD> -osirrox on \</KBD></DD>
|
<DD><KBD> -osirrox on \</KBD></DD>
|
||||||
<DD><KBD> -cpx '/pictures/private/horses*/*buttercup*' \</KBD></DD>
|
<DD><KBD> -cpx '/pictures/private/horses*/*buttercup*' \</KBD></DD>
|
||||||
<DD><KBD> /home/her/buttercup_dir -- \</KBD>
|
<DD><KBD> /home/her/buttercup_dir -- \</KBD>
|
||||||
@ -410,8 +414,8 @@ files or trees to disk:
|
|||||||
<P>
|
<P>
|
||||||
<DL>
|
<DL>
|
||||||
<DT><H3>Download as source code (see README):</H3></DT>
|
<DT><H3>Download as source code (see README):</H3></DT>
|
||||||
<DD><A HREF="xorriso-0.3.2.pl01.tar.gz">xorriso-0.3.2.pl01.tar.gz</A>
|
<DD><A HREF="xorriso-0.3.4.pl00.tar.gz">xorriso-0.3.4.pl00.tar.gz</A>
|
||||||
(1100 KB).
|
(1175 KB).
|
||||||
</DD>
|
</DD>
|
||||||
</DL>
|
</DL>
|
||||||
</DD>
|
</DD>
|
||||||
@ -436,18 +440,6 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
|
|||||||
|
|
||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
<P>
|
|
||||||
Bug fixes towards xorriso-0.3.0.pl00:
|
|
||||||
<UL>
|
|
||||||
<LI>Options -extract and -extract_single were not disabled with -osirrox off
|
|
||||||
<!--
|
|
||||||
<LI>- none -</LI>
|
|
||||||
-->
|
|
||||||
|
|
||||||
</UL>
|
|
||||||
|
|
||||||
</P>
|
|
||||||
|
|
||||||
<P>
|
<P>
|
||||||
Bug fixes towards xorriso-0.3.2.pl00:
|
Bug fixes towards xorriso-0.3.2.pl00:
|
||||||
<UL>
|
<UL>
|
||||||
@ -461,30 +453,7 @@ Bug fixes towards xorriso-0.3.2.pl00:
|
|||||||
</P>
|
</P>
|
||||||
|
|
||||||
<P>
|
<P>
|
||||||
Enhancements towards previous stable version xorriso-0.3.0.pl00:
|
Enhancements towards previous stable version xorriso-0.3.2.pl00:
|
||||||
<UL>
|
|
||||||
<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>
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><H3>Development snapshot, version 0.3.3 :</H3></DT>
|
|
||||||
<DD>Bug fixes towards xorriso-0.3.2.pl00:
|
|
||||||
<UL>
|
|
||||||
<LI>BD-R were not correctly finalized</LI>
|
|
||||||
<!--
|
|
||||||
<LI>- none yet -</LI>
|
|
||||||
-->
|
|
||||||
</UL>
|
|
||||||
</DD>
|
|
||||||
<DD>Enhancements towards stable version 0.3.2.pl00:
|
|
||||||
<UL>
|
<UL>
|
||||||
<LI>New option -acl controls import and export of ACLs</LI>
|
<LI>New option -acl controls import and export of ACLs</LI>
|
||||||
<LI>New options -getfacl, -getfacl_r, -setfacl , -setfacl_r , -setfacl_list</LI>
|
<LI>New options -getfacl, -getfacl_r, -setfacl , -setfacl_r , -setfacl_list</LI>
|
||||||
@ -495,17 +464,35 @@ Enhancements towards previous stable version xorriso-0.3.0.pl00:
|
|||||||
</LI>
|
</LI>
|
||||||
<LI>New -find tests -has_xattr, -has_aaip, new -find actions getfattr, setfattr
|
<LI>New -find tests -has_xattr, -has_aaip, new -find actions getfattr, setfattr
|
||||||
</LI>
|
</LI>
|
||||||
|
<LI>New -as mkisofs options --acl and --xattr</LI>
|
||||||
<LI>New option -disk_dev_ino can substantially accelerate incremental backups
|
<LI>New option -disk_dev_ino can substantially accelerate incremental backups
|
||||||
</LI>
|
</LI>
|
||||||
<!--
|
</UL>
|
||||||
|
</P>
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
<DL>
|
||||||
|
<DT><H3>Development snapshot, version 0.3.5 :</H3></DT>
|
||||||
|
<DD>Bug fixes towards xorriso-0.3.4.pl00:
|
||||||
|
<UL>
|
||||||
<LI>- none yet -</LI>
|
<LI>- none yet -</LI>
|
||||||
|
<!--
|
||||||
|
-->
|
||||||
|
</UL>
|
||||||
|
</DD>
|
||||||
|
<DD>Enhancements towards stable version 0.3.4.pl00:
|
||||||
|
<UL>
|
||||||
|
<LI>- none yet -</LI>
|
||||||
|
<!--
|
||||||
-->
|
-->
|
||||||
</UL>
|
</UL>
|
||||||
</DD>
|
</DD>
|
||||||
<DD> </DD>
|
<DD> </DD>
|
||||||
<DD><A HREF="README_xorriso_devel">README 0.3.3</A>
|
<DD><A HREF="README_xorriso_devel">README 0.3.5</A>
|
||||||
<DD><A HREF="xorriso_help_devel">xorriso_0.3.3 -help</A></DD>
|
<DD><A HREF="xorriso_help_devel">xorriso_0.3.5 -help</A></DD>
|
||||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.3)</A></DD>
|
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.5)</A></DD>
|
||||||
<DD> </DD>
|
<DD> </DD>
|
||||||
<DT>If you want to distribute development versions of xorriso, then use
|
<DT>If you want to distribute development versions of xorriso, then use
|
||||||
this tarball which produces static linking between xorriso and the
|
this tarball which produces static linking between xorriso and the
|
||||||
@ -515,14 +502,7 @@ libburnia libraries.
|
|||||||
installation see README)
|
installation see README)
|
||||||
</DD>
|
</DD>
|
||||||
<DD>
|
<DD>
|
||||||
On Linux the system-side ACL features of this development version depend
|
<A HREF="xorriso-0.3.5.tar.gz">xorriso-0.3.5.tar.gz</A>
|
||||||
on <B>libacl</B> and <B>libacl-devel</B>.
|
|
||||||
On FreeBSD the system ACL features are part of libc.
|
|
||||||
The availability of ACL features depends on the individual filesystems
|
|
||||||
and on their mount options.
|
|
||||||
</DD>
|
|
||||||
<DD>
|
|
||||||
<A HREF="xorriso-0.3.3.tar.gz">xorriso-0.3.3.tar.gz</A>
|
|
||||||
(1160 KB).
|
(1160 KB).
|
||||||
</DD>
|
</DD>
|
||||||
<DT>A dynamically linked development version of xorriso can be obtained
|
<DT>A dynamically linked development version of xorriso can be obtained
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#ifndef Xorriso_private_includeD
|
#ifndef Xorriso_private_includeD
|
||||||
#define Xorriso_private_includeD yes
|
#define Xorriso_private_includeD yes
|
||||||
|
|
||||||
#define Xorriso_program_versioN "0.3.3"
|
#define Xorriso_program_versioN "0.3.4"
|
||||||
|
|
||||||
/** The source code release timestamp */
|
/** The source code release timestamp */
|
||||||
#include "xorriso_timestamp.h"
|
#include "xorriso_timestamp.h"
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2009.02.28.181750"
|
#define Xorriso_timestamP "2009.03.01.103001"
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
#define xorriso_libisoburn_req_major 0
|
#define xorriso_libisoburn_req_major 0
|
||||||
#define xorriso_libisoburn_req_minor 3
|
#define xorriso_libisoburn_req_minor 3
|
||||||
#define xorriso_libisoburn_req_micro 3
|
#define xorriso_libisoburn_req_micro 4
|
||||||
|
|
||||||
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user