Compare commits
6 Commits
master
...
ZeroSixTwo
Author | SHA1 | Date | |
---|---|---|---|
2acdac105c | |||
057ac2ebe0 | |||
268f114fbf | |||
c1cbd169f8 | |||
33109cfd8e | |||
fc98907c16 |
19
ChangeLog
19
ChangeLog
@ -1,3 +1,19 @@
|
||||
libisoburn-0.6.2.pl00.tar.gz Sat Sep 18 2010
|
||||
===============================================================================
|
||||
libisoburn novelties:
|
||||
* New API function isoburn_igopt_set_part_offset()
|
||||
* Hiding all non-API symbols from the linker by use of --version-script
|
||||
* Now with history of release notes in ./ChangeLog file.
|
||||
xorriso novelties:
|
||||
* Bug fix: Regression with -hardlinks and -compliance old_rr, 0.4.2, Aug 2009
|
||||
* New option -preparer_id, -as mkisofs options -p and -preparer
|
||||
* New -boot_image specifier emul_type=none|hard_disk|floppy
|
||||
* New boot_image boot specs partition_offset,partition_hd_cyl,partition_sec_hd
|
||||
* Made behavior of -as mkisofs with unknown options more similar to original
|
||||
* New -as mkisofs option -hard-disk-boot, enabled -b without -no-emul-boot
|
||||
* New -as mkisofs option -e from Fedora genisoimage
|
||||
* New -as mkisofs options -partition_offset,-partition_hd_cyl,-partition_sec_hd
|
||||
|
||||
libisoburn-0.6.0.pl00.tar.gz Fri Jul 02 2010
|
||||
===============================================================================
|
||||
libisoburn novelties:
|
||||
@ -340,4 +356,5 @@ libisoburn-0.1.0.pl01.tar.gz Fri Feb 15 2008
|
||||
* due to a subtle mistake in ABI usage with libisofs this release had to be
|
||||
restricted to dynamic linking with exactly libisofs-0.6.2 where the mistake
|
||||
does no harm. A version of libisoburn which is open to all future libisofs
|
||||
versions will be released shortly after libisofs.0.6.4.
|
||||
versions will be released shortly after libisofs.0.6.4.
|
||||
|
||||
|
14
README
14
README
@ -4,7 +4,7 @@
|
||||
libisoburn and xorriso. 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.6.0.pl00.tar.gz
|
||||
http://files.libburnia-project.org/releases/libisoburn-0.6.2.pl00.tar.gz
|
||||
Copyright (C) 2006-2010 Vreixo Formoso, Thomas Schmitt.
|
||||
Provided under GPL version 2 or later.
|
||||
------------------------------------------------------------------------------
|
||||
@ -34,17 +34,17 @@ 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.6.0 :
|
||||
Dynamic library and compile time header requirements for libisoburn-0.6.2 :
|
||||
- libburn.so.4 , version libburn-0.8.4 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.34 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.36 or higher
|
||||
libisoburn and xorriso will not start with libraries which are older than their
|
||||
headers seen at compile time.
|
||||
include headers seen at compile time.
|
||||
|
||||
Obtain libisoburn-0.6.0.pl00.tar.gz, take it to a directory of your choice
|
||||
Obtain libisoburn-0.6.2.pl00.tar.gz, take it to a directory of your choice
|
||||
and do:
|
||||
|
||||
tar xzf libisoburn-0.6.0.pl00.tar.gz
|
||||
cd libisoburn-0.6.0
|
||||
tar xzf libisoburn-0.6.2.pl00.tar.gz
|
||||
cd libisoburn-0.6.2
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
|
16
configure.ac
16
configure.ac
@ -1,4 +1,4 @@
|
||||
AC_INIT([libisoburn], [0.6.1], [http://libburnia-project.org])
|
||||
AC_INIT([libisoburn], [0.6.2], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
@ -23,7 +23,7 @@ dnl
|
||||
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
||||
ISOBURN_MAJOR_VERSION=0
|
||||
ISOBURN_MINOR_VERSION=6
|
||||
ISOBURN_MICRO_VERSION=1
|
||||
ISOBURN_MICRO_VERSION=2
|
||||
|
||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||
|
||||
@ -36,16 +36,16 @@ dnl Libtool versioning
|
||||
dnl Generate libisoburn.so.1.x.y
|
||||
dnl SONAME will become LT_CURRENT - LT_AGE
|
||||
dnl
|
||||
dnl ts B00702
|
||||
dnl ### This is the release version 0.6.0 = libisoburn.so.1.49.0
|
||||
dnl This is the development version after above stable release
|
||||
dnl ts B00918
|
||||
dnl This is the release version 0.6.2 = libisoburn.so.1.51.0
|
||||
dnl ### This is the development version after above stable release
|
||||
dnl LT_CURRENT++, LT_AGE++ have not happened yet.
|
||||
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
||||
dnl
|
||||
dnl SONAME = 50 - 49 = 1 . Library name = libisoburn.so.1.49.0
|
||||
dnl SONAME = 52 - 51 = 1 . Library name = libisoburn.so.1.51.0
|
||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||
LT_CURRENT=50
|
||||
LT_AGE=49
|
||||
LT_CURRENT=52
|
||||
LT_AGE=51
|
||||
LT_REVISION=0
|
||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||
|
||||
|
@ -500,9 +500,6 @@ int isoburn_prepare_disc_aux(struct burn_drive *in_d, struct burn_drive *out_d,
|
||||
ret= isoburn_adjust_target_iso_head(out_o, opts->partition_offset, 0);
|
||||
if(ret <= 0)
|
||||
{ret= -1; goto ex;}
|
||||
iso_write_opts_set_overwrite_buf(wopts,
|
||||
nwa>0 ? out_o->target_iso_head : NULL);
|
||||
|
||||
if(opts->no_emul_toc) {
|
||||
if(out_o->nwa == out_o->zero_nwa &&
|
||||
out_o->zero_nwa == Libisoburn_overwriteable_starT
|
||||
@ -523,6 +520,8 @@ int isoburn_prepare_disc_aux(struct burn_drive *in_d, struct burn_drive *out_d,
|
||||
}
|
||||
iso_write_opts_set_ms_block(wopts, nwa);
|
||||
iso_write_opts_set_appendable(wopts, !new_img);
|
||||
iso_write_opts_set_overwrite_buf(wopts,
|
||||
nwa>0 ? out_o->target_iso_head : NULL);
|
||||
iso_write_opts_set_part_offset(wopts, opts->partition_offset,
|
||||
opts->partition_secs_per_head,
|
||||
opts->partition_heads_per_cyl);
|
||||
|
@ -268,7 +268,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define isoburn_header_version_major 0
|
||||
#define isoburn_header_version_minor 6
|
||||
#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.
|
||||
|
@ -4,7 +4,7 @@
|
||||
GNU xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
||||
Derived from and supported by libburnia-project.org, published via:
|
||||
http://www.gnu.org/software/xorriso/xorriso_eng.html
|
||||
ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.6.1.tar.gz
|
||||
ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.6.2.tar.gz
|
||||
Provided under GPL version 3 or later. No warranty.
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
@ -46,10 +46,10 @@ Optional at compile time are:
|
||||
If they were present at compile time, then the optional libraries have to
|
||||
be present at runtime, too.
|
||||
|
||||
Obtain xorriso-0.6.1.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain xorriso-0.6.2.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf xorriso-0.6.1.tar.gz
|
||||
cd xorriso-0.6.1
|
||||
tar xzf xorriso-0.6.2.tar.gz
|
||||
cd xorriso-0.6.2
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -290,9 +290,9 @@ and a matching dynamically linked xorriso binary.
|
||||
This binary is very lean but depends on properly installed libraries of
|
||||
suitable revision.
|
||||
|
||||
Dynamic library and compile time header requirements for libisoburn-0.6.0 :
|
||||
Dynamic library and compile time header requirements for libisoburn-0.6.2 :
|
||||
- libburn.so.4 , version libburn-0.8.4 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.34 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.36 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.
|
||||
|
@ -8254,7 +8254,7 @@ Implemented -as mkisofs options -dir-mode, -file-mode
|
||||
Implemented -as mkisofs options -abstract, -biblio, -copyright
|
||||
|
||||
|
||||
2010.07.02.195907 []
|
||||
2010.07.02.195907 [3320]
|
||||
configure.ac
|
||||
README
|
||||
libisoburn/libisoburn.h
|
||||
@ -8268,20 +8268,283 @@ xorriso/configure_ac.txt
|
||||
xorriso/xorriso_timestamp.h
|
||||
Version leap to libisoburn-0.6.1
|
||||
|
||||
2 Jul 2010 []
|
||||
2 Jul 2010 [3321]
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
2 Jul 2010 [3322]
|
||||
svn move -m Promoted branch to tag
|
||||
http://svn.libburnia-project.org/libisoburn/branches/ZeroSixZero
|
||||
http://svn.libburnia-project.org/libisoburn/tags/ZeroSixZero
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.1 -
|
||||
------------------------------------ cycle - xorriso-0.6.1 - 2010.07.02.195907
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.1 -
|
||||
------------------------------------ cycle - xorriso-0.6.1 -
|
||||
4 Jul 2010 [3324]
|
||||
acinclude.m4
|
||||
Added -L/usr/local/lib to libisoburn LDFLAGS for Solaris
|
||||
|
||||
2010.07.05.090409 [3327]
|
||||
xorriso/xorriso.h
|
||||
Removed definition of phantom xorriso options
|
||||
|
||||
2010.07.05.122901 [3328]
|
||||
configure.ac
|
||||
Makefile.am
|
||||
README
|
||||
+ libisoburn/libisoburn.ver
|
||||
Hiding all non-API symbols from the linker by use of --version-script
|
||||
|
||||
2010.07.06.114102 [3331]
|
||||
configure.ac
|
||||
acinclude.m4
|
||||
Let configure perform linker test with --version-script if enabled
|
||||
|
||||
2010.07.06.114503 [3332]
|
||||
libisoburn/libisoburn.h
|
||||
xorriso/xorriso.h
|
||||
Mentioned that public API calls must be in libisofs/libisofs.ver
|
||||
|
||||
2010.07.08.155900 [3333]
|
||||
xorriso/emulators.c
|
||||
Made behavior of -as mkisofs with unknown options more similar to original
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.1 - 2010.07.08.155900
|
||||
* Made behavior of -as mkisofs with unknown options more similar to original
|
||||
|
||||
|
||||
2010.07.29.164843 [3338]
|
||||
Makefile.am
|
||||
Detached make target "doc" from target "all".
|
||||
|
||||
29 Jul 2010 [3339]
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Corrected manual text about -read_mkisofsrc
|
||||
|
||||
2010.07.30.155123 [3340]
|
||||
libisoburn/libisoburn.ver
|
||||
xorriso/xorriso.h
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/xorrisoburn.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/parse_exec.c
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/opts_p_z.c
|
||||
xorriso/emulators.c
|
||||
xorriso/text_io.c
|
||||
xorriso/write_run.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New option -preparer_id, -as mkisofs options -p and -preparer
|
||||
|
||||
30 Jul 2010 [3342]
|
||||
doc/doxygen.conf.in
|
||||
Removed problematic DETAILS_AT_TOP to silence warning of Debian buildd
|
||||
|
||||
30 Jul 2010 [3343]
|
||||
doc/doxygen.conf.in
|
||||
Corrected FILE_PATTERNS
|
||||
|
||||
2010.07.31.085437 [3344]
|
||||
xorriso/cmp_update.c
|
||||
Missing device,inode numbers caused -compare_r to report a difference
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.1 - 2010.07.31.085437
|
||||
* New option -preparer_id, -as mkisofs options -p and -preparer
|
||||
|
||||
|
||||
2010.08.09.092037 [3351]
|
||||
libisoburn/libisoburn.h
|
||||
doc/comments
|
||||
Hopefully silenced warnings of doxygen on Debian buildd
|
||||
|
||||
2010.08.18.102709 [3353]
|
||||
xorriso/emulators.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New -as mkisofs option -e from Fedora genisoimage
|
||||
|
||||
2010.08.18.181640 [3354]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New -boot_image specifier emul_type=none|hard_disk|floppy
|
||||
|
||||
2010.08.18.181855 [3355]
|
||||
xorriso/emulators.c
|
||||
New -as mkisofs option -hard-disk-boot, enabled -b without -no-emul-boot
|
||||
|
||||
2010.08.21.103003 [3357]
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
xorriso/xorriso_eng.html
|
||||
Mentioned support for DVD-R DL as single-session media
|
||||
|
||||
2010.09.04.100823 [3359]
|
||||
xorriso/iso_manip.c
|
||||
This was obviously forgotten to commit with rev 3289
|
||||
|
||||
2010.09.05.113621 [3360]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
New API function isoburn_igopt_set_part_offset(), requiring libisofs 0.6.35
|
||||
|
||||
2010.09.05.113655 [3361]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/text_io.c
|
||||
xorriso/write_run.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New boot_image boot specs partition_offset, partition_hd_cyl, partition_sec_hd
|
||||
|
||||
2010.09.05.113945 [3362]
|
||||
xorriso/emulators.c
|
||||
New -as mkisofs options -partition_offset, -partition_hd_cyl, -partition_sec_hd
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.1 - 2010.09.05.113945
|
||||
* New API function isoburn_igopt_set_part_offset()
|
||||
* New -boot_image specifier emul_type=none|hard_disk|floppy
|
||||
* New -as mkisofs option -hard-disk-boot, enabled -b without -no-emul-boot
|
||||
* New -as mkisofs option -e from Fedora genisoimage
|
||||
* New boot_image boot specs partition_offset, partition_hd_cyl, partition_sec_hd
|
||||
* New -as mkisofs options -partition_offset, -partition_hd_cyl, -partition_sec_hd
|
||||
|
||||
|
||||
2010.09.06.103347 [3363]
|
||||
libisoburn/isoburn.c
|
||||
Bug fix: Re-enabled use of iso_write_opts_set_rrip_1_10_px_ino()
|
||||
|
||||
2010.09.10.170925 [3364]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
libisoburn/isofs_wrap.c
|
||||
libisoburn/burn_wrap.c
|
||||
Enabled multi-session with partition offset
|
||||
|
||||
2010.09.10.171223 [3365]
|
||||
xorriso/drive_mgt.c
|
||||
xorriso/write_run.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Enabled multi-session with partition offset
|
||||
|
||||
2010.09.11.125002 [3366]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
libisoburn/isofs_wrap.c
|
||||
Removed development marks
|
||||
|
||||
2010.09.11.125039 [3367]
|
||||
xorriso/xorriso_private.h
|
||||
Removed development marks
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.1 - 2010.09.11.125039
|
||||
* Bug fix: Regression with -hardlinks and -compliance old_rr, 0.4.2, Aug 2009
|
||||
|
||||
|
||||
2010.09.15.065722 [3370]
|
||||
Makefile.am
|
||||
ChangeLog
|
||||
Meaningful change log file derived by George Danchev from web site
|
||||
|
||||
2010.09.15.091546 [3371]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libisofs-0.6.36 now
|
||||
|
||||
2010.09.15.092023 [3372]
|
||||
xorriso/configure_ac.txt
|
||||
Version leap to 0.6.37
|
||||
|
||||
17 Sep 2010 [3380]
|
||||
xorriso/configure_ac.txt
|
||||
Version leap to libburn-0.8.7
|
||||
|
||||
18 Sep 2010 [3382]
|
||||
svn copy -m Branching for libisoburn release 0.6.0
|
||||
http://svn.libburnia-project.org/libisoburn/trunk
|
||||
http://svn.libburnia-project.org/libisoburn/branches/ZeroSixZero
|
||||
|
||||
18 Sep 2010 [3383]
|
||||
svn delete http://svn.libburnia-project.org/libisoburn/branches/ZeroSixZero
|
||||
Removed falsely named branch
|
||||
|
||||
18 Sep 2010 [3384]
|
||||
svn copy -m Branching for libisoburn release 0.6.2
|
||||
http://svn.libburnia-project.org/libisoburn/trunk
|
||||
http://svn.libburnia-project.org/libisoburn/branches/ZeroSixTwo
|
||||
|
||||
2010.09.18.120001 [3385]
|
||||
configure.ac
|
||||
README
|
||||
libisoburn/libisoburn.h
|
||||
xorriso/README_gnu_xorriso
|
||||
xorriso/xorriso.h
|
||||
xorriso/xorrisoburn.h
|
||||
xorriso/xorriso_main.c
|
||||
xorriso/xorriso_eng.html
|
||||
xorriso/make_xorriso_standalone.sh
|
||||
xorriso/configure_ac.txt
|
||||
xorriso/xorriso_timestamp.h
|
||||
Version leap to libisoburn-0.6.2
|
||||
|
||||
18 Sep 2010 [3386]
|
||||
ChangeLog
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
2010.09.18.210001 [3387]
|
||||
libisoburn/isoburn.c
|
||||
Fixed a bug with uninitialized variable introduced by rev 3364
|
||||
|
||||
19 Sep 2010 []
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
----------------------------------- release - xorriso-0.6.2 - 2010.09.18.210001
|
||||
libisoburn novelties:
|
||||
* New API function isoburn_igopt_set_part_offset()
|
||||
* Hiding all non-API symbols from the linker by use of --version-script
|
||||
* Now with history of release notes in ./ChangeLog file.
|
||||
xorriso novelties:
|
||||
* Bug fix: Regression with -hardlinks and -compliance old_rr, 0.4.2, Aug 2009
|
||||
* New option -preparer_id, -as mkisofs options -p and -preparer
|
||||
* New -boot_image specifier emul_type=none|hard_disk|floppy
|
||||
* New boot_image boot specs partition_offset, partition_hd_cyl, partition_sec_hd
|
||||
* Made behavior of -as mkisofs with unknown options more similar to original
|
||||
* New -as mkisofs option -hard-disk-boot, enabled -b without -no-emul-boot
|
||||
* New -as mkisofs option -e from Fedora genisoimage
|
||||
* New -as mkisofs options -partition_offset,-partition_hd_cyl,-partition_sec_hd
|
||||
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 -
|
||||
------------------------------------ cycle - xorriso-0.6.3 -
|
||||
|
||||
|
||||
**********************************************************************
|
||||
Important: When adding a public API function then add its name to file
|
||||
libisoburn/libisoburn.ver
|
||||
**********************************************************************
|
||||
|
||||
===============================================================================
|
||||
TODO
|
||||
===============================================================================
|
||||
|
||||
|
||||
------------------------------------------------- For Solaris
|
||||
|
||||
(The mount command needs to be adapted to Solaris.
|
||||
@ -8316,19 +8579,39 @@ Documented changes and release timestamp
|
||||
|
||||
- try
|
||||
qemu -m 256 -cdrom /tmp/R.iso -boot d
|
||||
>>> does not do anything recognizable. Not even fails.
|
||||
|
||||
------------------------------------------------- bugs
|
||||
|
||||
- Make first pass of -as mkisofs fool proof.
|
||||
Currently it would accept arguments of unhandled options as options.
|
||||
- Empty boot image file
|
||||
-boot_image any bin_path=/with_bytes
|
||||
-boot_image any next
|
||||
-boot_image any bin_path=/empty_file
|
||||
reports no problems during write but causes strange load messages
|
||||
xorriso : NOTE : Loading ISO image tree from LBA 0
|
||||
libisofs: WARNING : More than one ISO node has been found for the same boot image.
|
||||
xorriso : UPDATE : 3905 nodes read in 1 seconds
|
||||
libisofs: WARNING : More than one ISO node has been found for the same boot image.
|
||||
libisofs: WARNING : Found hidden El-Torito image. Its size could not be figure out, so image modify or boot image patching may lead to bad results.
|
||||
-boot_image any show_status
|
||||
yields
|
||||
Boot record : El Torito
|
||||
Boot catalog : '/u/boot.cat'
|
||||
Boot image : '/u/x'
|
||||
Boot image : -not-found-any-more-
|
||||
|
||||
|
||||
- xorriso ... -b ... -c does/not/exist/in/image ...
|
||||
yields riddling error message:
|
||||
libisofs: FAILURE : A requested node does not exist
|
||||
xorriso : FAILURE : Could not attach El-Torito boot image to ISO 9660 image
|
||||
|
||||
- one-time delimiter which overrides -list_delimiter for only the
|
||||
next command.
|
||||
E.g. for --back_to_xorriso in emulations
|
||||
|
||||
- An ISO image as first file of a stdout stream might start at LBA 32
|
||||
and thus look like a session. It has not the proper ofsset, though.
|
||||
and thus look like a session. It has not the proper offset, though.
|
||||
|
||||
- reduce xorriso -abort_on default to FAILURE ?
|
||||
or increase "Not a known option" to FATAL ?
|
||||
|
||||
- xorriso_eng.html on www.gnu.org it should rather be xorriso.html
|
||||
|
||||
@ -8358,8 +8641,6 @@ xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
|
||||
|
||||
- options -print_info , -print_mark
|
||||
|
||||
- (ECMA-119 names in: -copyright_id , -abstract_id , -biblio_id)
|
||||
|
||||
- Mark data blocks of -check_md5 matching files as valid in sector map ?
|
||||
|
||||
- tree of name nodes to represent the cached paths of hardlink candidates.
|
||||
@ -8374,6 +8655,10 @@ xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
|
||||
- what about differently filtered streams ?
|
||||
It is not wrong but a waste to update them as siblings.
|
||||
|
||||
- one-time delimiter which overrides -list_delimiter for only the
|
||||
next command.
|
||||
E.g. for --back_to_xorriso in emulations
|
||||
|
||||
|
||||
|
||||
- sudo and setuid chapter in man page
|
||||
|
@ -3,7 +3,7 @@
|
||||
# Copyright (c) 2007 - 2010 Thomas Schmitt <scdbackup@gmx.net>
|
||||
# Provided under GPL version 2 or later.
|
||||
|
||||
AC_INIT([xorriso], [0.6.1], [http://libburnia-project.org])
|
||||
AC_INIT([xorriso], [0.6.2], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
|
||||
AC_CANONICAL_HOST
|
||||
|
@ -40,7 +40,7 @@ create_gnu_xorriso="yes"
|
||||
current_dir=$(pwd)
|
||||
lone_dir="$current_dir"/"xorriso-standalone"
|
||||
|
||||
xorriso_rev=0.6.1
|
||||
xorriso_rev=0.6.2
|
||||
# For unstable uploads and patch level 0 of stable releases:
|
||||
xorriso_pl=""
|
||||
# For higher patch levels of stable releases:
|
||||
|
@ -61,7 +61,7 @@ struct XorrisO;
|
||||
*/
|
||||
#define Xorriso_header_version_majoR 0
|
||||
#define Xorriso_header_version_minoR 6
|
||||
#define Xorriso_header_version_micrO 1
|
||||
#define Xorriso_header_version_micrO 2
|
||||
|
||||
|
||||
/** Eventually something like ".pl01" to indicate a bug fix. Normally empty.
|
||||
@ -115,7 +115,7 @@ void Xorriso__version(int *major, int *minor, int *micro);
|
||||
@param flag Bitfield for control purposes. Unused yet. Submit 0.
|
||||
@return 1= library can work for caller
|
||||
0= library is not usable in some aspects. Caller must restrict
|
||||
itself to an earlier API version or must not use this libray
|
||||
itself to an earlier API version or must not use this library
|
||||
at all.
|
||||
*/
|
||||
int Xorriso__is_compatible(int major, int minor, int micro, int flag);
|
||||
@ -190,7 +190,7 @@ int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
||||
functions from the Options API.
|
||||
|
||||
Wenn all desired activities are done, you may check whether there are
|
||||
uncommited chages pending, compute an exit value, destroy the XorrisO
|
||||
uncommited changes pending, compute an exit value, destroy the XorrisO
|
||||
object, and exit your program.
|
||||
*/
|
||||
|
||||
@ -295,8 +295,9 @@ int Xorriso_program_arg_bsl(struct XorrisO *xorriso, int argc, char ***argv,
|
||||
be at least 1, argv[*idx] must be a command.
|
||||
*idx will iterate over commands and parameters until this
|
||||
function aborts or until argc is reached.
|
||||
@param flag bit0= recursion
|
||||
bit1= these are the main() program start arguments
|
||||
@param flag bit0= reserved. Indicates recursion. Submit 0.
|
||||
bit1= Indicates that these are the main() program start
|
||||
arguments
|
||||
@return <=0 = error
|
||||
1 = success
|
||||
2 = problem event ignored
|
||||
@ -353,8 +354,9 @@ int Xorriso_dialog(struct XorrisO *xorriso, int flag);
|
||||
A final newline character gets appended automatically.
|
||||
@param os_errno Eventual errno related to the message. Submit 0 if
|
||||
the message is not related to a operating system error.
|
||||
@param severity One of "ABORT", "FATAL", "SORRY", "WARNING", "HINT",
|
||||
"NOTE", "UPDATE", "DEBUG". Defaults to "FATAL".
|
||||
@param severity One of "ABORT", "FATAL", "FAILURE", "MISHAP", "SORRY",
|
||||
"WARNING", "HINT", "NOTE", "UPDATE", "DEBUG".
|
||||
Defaults to "FATAL".
|
||||
@param flag Bitfield for control purposes
|
||||
bit0= use pager (as with result)
|
||||
bit1= permission to suppress output
|
||||
|
@ -59,7 +59,7 @@ Images or add-on sessions may be written to about any kind of file object.
|
||||
<DD>With kernel 2.6 ide-scsi is not needed.</DD>
|
||||
<DT>or FreeBSD, libc, libpthread :</DT>
|
||||
<DD>PATA/IDE drives need atapicam running.</DD>
|
||||
<DD>SATA drives need atapicam or ahci running.</DD>
|
||||
<DD>SATA drives need atapicam running or need to be driven by ahci.</DD>
|
||||
<DD>libcam has to be installed.</DD>
|
||||
<DD>libiconv has to be installed.</DD>
|
||||
<DT>or Solaris, libc, libpthread :</DT>
|
||||
@ -142,7 +142,8 @@ Scans for optical drives, blanks re-useable optical media, formats media.
|
||||
</LI>
|
||||
<LI>
|
||||
Suitable for:
|
||||
CD-R, CD-RW, DVD-R, DVD-RW, DVD+R, DVD+R DL, DVD+RW, DVD-RAM, BD-R, BD-RE.
|
||||
CD-R, CD-RW, DVD-R, DVD-R DL, DVD-RW, DVD+R, DVD+R DL, DVD+RW, DVD-RAM,
|
||||
BD-R, BD-RE.
|
||||
</LI>
|
||||
<LI>
|
||||
Reads its instructions from command line arguments, dialog, and batch files.
|
||||
@ -439,19 +440,19 @@ files or trees to disk:
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Download as source code (see README):</H3></DT>
|
||||
<DD><A HREF="xorriso-0.6.0.tar.gz">xorriso-0.6.0.tar.gz</A>
|
||||
(1650 KB).
|
||||
<DD><A HREF="xorriso-0.6.2.tar.gz">xorriso-0.6.2.tar.gz</A>
|
||||
(1670 KB).
|
||||
</DD>
|
||||
<DD>(Released 02 Jul 2010)</DD>
|
||||
<DD><A HREF="xorriso-0.6.0.tar.gz.sig">xorriso-0.6.0.tar.gz.sig</A></DD>
|
||||
<DD>(Released 18 Sep 2010)</DD>
|
||||
<DD><A HREF="xorriso-0.6.2.tar.gz.sig">xorriso-0.6.2.tar.gz.sig</A></DD>
|
||||
<DD>
|
||||
(detached GPG signature for verification by
|
||||
<KBD>gpg --verify xorriso-0.6.0.tar.gz.sig xorriso-0.6.0.tar.gz</KBD>).
|
||||
<KBD>gpg --verify xorriso-0.6.2.tar.gz.sig xorriso-0.6.2.tar.gz</KBD>).
|
||||
</DD>
|
||||
<DD>
|
||||
Also on <A HREF="http://www.gnu.org/prep/ftp.html">
|
||||
mirrors of ftp://ftp.gnu.org/gnu/ </A>
|
||||
as xorriso/xorriso-0.6.0.tar.gz
|
||||
as xorriso/xorriso-0.6.2.tar.gz
|
||||
</DD>
|
||||
</DL>
|
||||
</DD>
|
||||
@ -479,10 +480,9 @@ as xorriso/xorriso-0.6.0.tar.gz
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
Bug fixes towards xorriso-0.5.8:
|
||||
Bug fixes towards xorriso-0.6.0:
|
||||
<UL>
|
||||
<LI>-check_media patch_lba0= could install wrong image size</LI>
|
||||
<LI>-as mkisofs option -volset was wrongly interpreted like -volid</LI>
|
||||
<LI>Regression with -hardlinks and -compliance old_rr, 0.4.2, Aug 2009</LI>
|
||||
<!--
|
||||
<LI>- none -</LI>
|
||||
-->
|
||||
@ -500,26 +500,33 @@ Bug fixes in .pl01 towards xorriso-:
|
||||
-->
|
||||
|
||||
<P>
|
||||
Enhancements towards previous stable version xorriso-0.5.8:
|
||||
Enhancements towards previous stable version xorriso-0.6.0:
|
||||
<UL>
|
||||
<LI>Enabled use of libreadline on Solaris</LI>
|
||||
<LI>New find test -disk_name</LI>
|
||||
<LI>New option -hide, -find action -hide, -find test -hidden</LI>
|
||||
<LI>New -boot_image bootspec cat_hidden=on</LI>
|
||||
|
||||
<LI>
|
||||
New options -copyright_file , -biblio_file , -abstract_file
|
||||
New option -preparer_id, -as mkisofs options -p and -preparer
|
||||
</LI>
|
||||
<LI>
|
||||
New option -read_mkisofsrc interprets .mkisofsrc
|
||||
New -boot_image specifier emul_type=none|hard_disk|floppy
|
||||
</LI>
|
||||
<LI>
|
||||
Implemented -as mkisofs options -hide, -hide-joliet, -hide-list, -hide-joliet-list
|
||||
New boot_image boot specs partition_offset, partition_hd_cyl, partition_sec_hd
|
||||
</LI>
|
||||
<LI>
|
||||
New -as mkisofs option --boot-catalog-hide
|
||||
Made behavior of -as mkisofs with unknown options more similar to original
|
||||
</LI>
|
||||
<LI>
|
||||
Implemented -as mkisofs options -dir-mode, -file-mode, -abstract, -biblio, -copyright
|
||||
New -as mkisofs option -hard-disk-boot, enabled -b without -no-emul-boot
|
||||
</LI>
|
||||
<LI>
|
||||
New -as mkisofs option -e from Fedora genisoimage
|
||||
</LI>
|
||||
<LI>
|
||||
New -as mkisofs options -partition_offset,-partition_hd_cyl,-partition_sec_hd
|
||||
</LI>
|
||||
<LI>
|
||||
DVD-R DL are supported as single-session media.
|
||||
I.e. only with option -close "on".
|
||||
</LI>
|
||||
|
||||
<!--
|
||||
@ -544,16 +551,16 @@ libburnia project and the legal intentions of
|
||||
<A HREF="http://www.fsf.org/"> FSF </A> match completely.
|
||||
</DT>
|
||||
<DD> </DD>
|
||||
<DT>libburn-0.8.5</DT>
|
||||
<DT>libburn-0.8.7</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.35</DT>
|
||||
<DT>libisofs-0.6.37</DT>
|
||||
<DD>operates on ISO 9660 filesystem images.</DD>
|
||||
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
|
||||
from team of libburnia-project.org)</DD>
|
||||
<DT>libisoburn-0.6.0</DT>
|
||||
<DT>libisoburn-0.6.2</DT>
|
||||
<DD>coordinates libburn and libisofs, emulates multi-session where needed,
|
||||
and hosts the original source code of program xorriso.</DD>
|
||||
<DD>It provides the complete functionality of xorriso via
|
||||
@ -570,8 +577,8 @@ cdrecord and mkisofs.</DT>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 0.6.1 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.6.0:
|
||||
<DT><H3>Development snapshot, version 0.6.3 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.6.2:
|
||||
<UL>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
@ -579,26 +586,18 @@ cdrecord and mkisofs.</DT>
|
||||
-->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD>Enhancements towards stable version 0.6.0:
|
||||
<DD>Enhancements towards stable version 0.6.2:
|
||||
<UL>
|
||||
<LI> Made behavior of -as mkisofs with unknown options more similar to original
|
||||
</LI>
|
||||
<LI>
|
||||
New option -preparer_id, -as mkisofs options -p and -preparer
|
||||
</LI>
|
||||
<LI>
|
||||
DVD-R DL are supported as single-session media.
|
||||
I.e. only with option -close "on".
|
||||
</LI>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
<LI>- none yet -</LI>
|
||||
-->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD> </DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 0.6.1</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.6.1 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.6.1)</A></DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 0.6.3</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.6.3 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.6.3)</A></DD>
|
||||
<DD> </DD>
|
||||
<DT>If you want to distribute development versions of xorriso, then use
|
||||
this tarball which produces static linking between xorriso and the
|
||||
@ -608,8 +607,8 @@ libburnia libraries.
|
||||
installation see README)
|
||||
</DD>
|
||||
<DD>
|
||||
<A HREF="xorriso-0.6.1.tar.gz">xorriso-0.6.1.tar.gz</A>
|
||||
(1650 KB).
|
||||
<A HREF="xorriso-0.6.3.tar.gz">xorriso-0.6.3.tar.gz</A>
|
||||
(1670 KB).
|
||||
</DD>
|
||||
<DT>A dynamically linked development version of xorriso can be obtained
|
||||
from repositories of
|
||||
|
@ -111,7 +111,7 @@
|
||||
*/
|
||||
#define Xorriso_req_majoR 0
|
||||
#define Xorriso_req_minoR 6
|
||||
#define Xorriso_req_micrO 1
|
||||
#define Xorriso_req_micrO 2
|
||||
|
||||
|
||||
static void yell_xorriso()
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2010.09.15.065722"
|
||||
#define Xorriso_timestamP "2010.09.18.210001"
|
||||
|
@ -19,7 +19,7 @@
|
||||
*/
|
||||
#define xorriso_libisoburn_req_major 0
|
||||
#define xorriso_libisoburn_req_minor 6
|
||||
#define xorriso_libisoburn_req_micro 0
|
||||
#define xorriso_libisoburn_req_micro 2
|
||||
|
||||
|
||||
struct SpotlisT; /* List of intervals with different read qualities */
|
||||
|
Reference in New Issue
Block a user