Compare commits
4 Commits
1.4.2
...
ZeroSixFou
Author | SHA1 | Date | |
---|---|---|---|
3a4a03a4c6 | |||
ba5c0c7be9 | |||
7436e99f5e | |||
d2b130c079 |
20
ChangeLog
20
ChangeLog
@ -1,16 +1,24 @@
|
||||
SVN trunk (to become libisoburn-0.6.4.pl00.tar.gz)
|
||||
SVN trunk (to become libisoburn-0.6.6.pl00.tar.gz)
|
||||
===============================================================================
|
||||
libisoburn novelties:
|
||||
- none yet -
|
||||
xorriso novelties:
|
||||
- none yet -
|
||||
|
||||
libisoburn-0.6.4.pl00.tar.gz Tue Oct 26 2010
|
||||
===============================================================================
|
||||
libisoburn novelties:
|
||||
* New API call isoburn_libjte_req()
|
||||
* New API calls isoburn_igopt_attach_jte() and isoburn_igopt_detach_jte()
|
||||
* New API call isoburn_igopt_set_tail_blocks()
|
||||
* New API call isoburn_libjte_req()
|
||||
xorriso novelties:
|
||||
* New option -jigdo
|
||||
* New -as mkisofs options -jigdo-* and -md5-list as of genisoimage
|
||||
* New -as mkisofs options -checksum_algorithm_iso, -checksum_algorithm_template
|
||||
* New bootspecs mips_path= and mipsel_path= for Debian MIPS releases
|
||||
* New -as mkisofs options -mips-boot and -mipsel-boot
|
||||
* New option -append_partition, -as mkisofs -append_partition
|
||||
* New API call isoburn_libjte_req()
|
||||
* New API calls isoburn_igopt_attach_jte() and isoburn_igopt_detach_jte()
|
||||
* New API call isoburn_igopt_set_tail_blocks()
|
||||
* New API call isoburn_libjte_req()
|
||||
|
||||
|
||||
libisoburn-0.6.2.pl00.tar.gz Sat Sep 18 2010
|
||||
===============================================================================
|
||||
|
15
README
15
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.2.pl00.tar.gz
|
||||
http://files.libburnia-project.org/releases/libisoburn-0.6.4.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.2 :
|
||||
- libburn.so.4 , version libburn-0.8.4 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.36 or higher
|
||||
Dynamic library and compile time header requirements for libisoburn-0.6.4 :
|
||||
- libburn.so.4 , version libburn-0.8.8 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.38 or higher
|
||||
libisoburn and xorriso will not start with libraries which are older than their
|
||||
include headers seen at compile time.
|
||||
|
||||
Obtain libisoburn-0.6.2.pl00.tar.gz, take it to a directory of your choice
|
||||
Obtain libisoburn-0.6.4.pl00.tar.gz, take it to a directory of your choice
|
||||
and do:
|
||||
|
||||
tar xzf libisoburn-0.6.2.pl00.tar.gz
|
||||
cd libisoburn-0.6.2
|
||||
tar xzf libisoburn-0.6.4.pl00.tar.gz
|
||||
cd libisoburn-0.6.4
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -96,6 +96,7 @@ Other deliberate dependency reduction options of ./configure are:
|
||||
--disable-libacl avoid use of ACL functions like acl_to_text()
|
||||
--disable-xattr avoid use of xattr functions like listxattr()
|
||||
--disable-zlib avoid use of zlib functions like compress2()
|
||||
--disable-libjte avoid use of libjte for -jigdo command
|
||||
|
||||
xorriso allows to use external processes as file content filters. This is
|
||||
a potential security risk which may be avoided by ./configure option
|
||||
|
16
configure.ac
16
configure.ac
@ -1,4 +1,4 @@
|
||||
AC_INIT([libisoburn], [0.6.3], [http://libburnia-project.org])
|
||||
AC_INIT([libisoburn], [0.6.4], [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=3
|
||||
ISOBURN_MICRO_VERSION=4
|
||||
|
||||
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 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 ts B01026
|
||||
dnl This is the release version 0.6.4 = libisoburn.so.1.53.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 = 52 - 51 = 1 . Library name = libisoburn.so.1.51.0
|
||||
dnl SONAME = 54 - 53 = 1 . Library name = libisoburn.so.1.53.0
|
||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||
LT_CURRENT=52
|
||||
LT_AGE=51
|
||||
LT_CURRENT=54
|
||||
LT_AGE=53
|
||||
LT_REVISION=0
|
||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||
|
||||
|
@ -287,7 +287,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 3
|
||||
#define isoburn_header_version_micro 4
|
||||
/** 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.3.tar.gz
|
||||
ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.6.4.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.3.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain xorriso-0.6.4.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf xorriso-0.6.3.tar.gz
|
||||
cd xorriso-0.6.3
|
||||
tar xzf xorriso-0.6.4.tar.gz
|
||||
cd xorriso-0.6.4
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -98,7 +98,8 @@ Never omit the "make clean" command after switching libreadline enabling.
|
||||
Other deliberate dependency reduction options of ./configure are:
|
||||
--disable-libacl avoid use of ACL functions like acl_to_text()
|
||||
--disable-xattr avoid use of xattr functions like listxattr()
|
||||
--disable-zlib avoid use of zlib functions like compress2()
|
||||
--disable-zlib avoid use of zlib functions like compress2()
|
||||
this also avoids the use of libjte and option -jigdo.
|
||||
|
||||
xorriso brings own system adapters which allow burning optical media on
|
||||
GNU/Linux, FreeBSD, Solaris.
|
||||
@ -290,9 +291,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.2 :
|
||||
- libburn.so.4 , version libburn-0.8.4 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.36 or higher
|
||||
Dynamic library and compile time header requirements for libisoburn-0.6.4 :
|
||||
- libburn.so.4 , version libburn-0.8.8 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.38 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.
|
||||
@ -418,8 +419,7 @@ Libburn. By Derek Foreman <derek@signalmarketing.com> and
|
||||
Ben Jansens <xor@orodu.net>
|
||||
Copyright (C) 2002-2006 Derek Foreman and Ben Jansens
|
||||
|
||||
GNU xorriso contains
|
||||
libjte
|
||||
GNU xorriso contains libjte
|
||||
Copyright (C) 2000-2007 Free Software Foundation, Inc.
|
||||
2004-2010 Steve McIntyre
|
||||
2010-2010 George Danchev, Thomas Schmitt
|
||||
|
@ -8548,15 +8548,407 @@ Version leap to libisoburn-0.6.3
|
||||
libisoburn/isoburn.c
|
||||
Fixed a bug with uninitialized variable introduced by rev 3364
|
||||
|
||||
[]
|
||||
19 Sep 2010 [3391]
|
||||
ChangeLog
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 - 2010.09.19.135354
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 -
|
||||
------------------------------------ cycle - xorriso-0.6.3 -
|
||||
|
||||
19 Sep 2010 [3392]
|
||||
svn move -m Promoted branch to tag
|
||||
http://svn.libburnia-project.org/libisoburn/branches/ZeroSixTwo
|
||||
http://svn.libburnia-project.org/libisoburn/tags/ZeroSixTwo
|
||||
|
||||
2010.09.21.142424 [3393]
|
||||
acinclude.m4
|
||||
configure.ac
|
||||
Makefile.am
|
||||
On Linux: Run ldconfig during make install,if not --disable-ldconfig-at-install
|
||||
|
||||
2010.09.21.150325 [3394]
|
||||
acinclude.m4
|
||||
configure.ac
|
||||
Makefile.am
|
||||
On Linux: More tolerance towards failures of ldconfig
|
||||
|
||||
22 Sep 2009 [3396]
|
||||
README
|
||||
Mentioned --disable-ldconfig-at-install
|
||||
|
||||
2010.09.23.135551 [3400]
|
||||
Makefile.am
|
||||
xorriso/make_xorriso_standalone.sh
|
||||
+ doc/partition_offset.wiki
|
||||
Explaining the partition offset feature
|
||||
|
||||
2010.09.24.110727 [3406]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libburn-0.8.7 now
|
||||
|
||||
2010.09.24.110841 [3407]
|
||||
xorriso/drive_mgt.c
|
||||
Reporting BD spare area info with -list_formats
|
||||
|
||||
29 Sep 2010 [3409]
|
||||
doc/partition_offset.wiki
|
||||
Updated partition offset wike about GRUB experiment
|
||||
|
||||
2010.09.29.091541 [3410]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
libisoburn/libisoburn.ver
|
||||
ChangeLog
|
||||
New API calls isoburn_igopt_attach_jte() and isoburn_igopt_detach_jte()
|
||||
|
||||
2010.09.29.092348 [3411]
|
||||
configure.ac
|
||||
xorriso/xorriso.h
|
||||
libisoburn/libisoburn.ver
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/xorrisoburn.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/parse_exec.c
|
||||
xorriso/opts_i_o.c
|
||||
xorriso/emulators.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/write_run.c
|
||||
ChangeLog
|
||||
New -as mkisofs options -jigdo-* and -md5-list as of genisoimage
|
||||
|
||||
2010.09.29.092537 [3412]
|
||||
xorriso/configure_ac.txt
|
||||
Enabled use of libjte for GNU xorriso
|
||||
|
||||
2010.09.29.124423 [3413]
|
||||
xorriso/write_run.c
|
||||
Avoided trailing 64 kB alignment with -compliance no_emul_toc
|
||||
|
||||
2010.09.29.152827 [3414]
|
||||
xorriso/parse_exec.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
xorriso/convert_man_to_html.sh
|
||||
ChangeLog
|
||||
New option -jigdo
|
||||
|
||||
2010.09.29.164121 [3415]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/text_io.c
|
||||
xorriso/aux_objects.h
|
||||
xorriso/aux_objects.c
|
||||
Enabled -status -jigdo
|
||||
|
||||
2010.09.30.074208 [3416]
|
||||
xorriso/lib_mgt.c
|
||||
Switched from old libjte API names to new ones
|
||||
|
||||
2010.10.01.190235 [3417]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
Made two non-public parameters independent of Xorriso_with_libjtE
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 - 2010.10.01.190235
|
||||
* New API calls isoburn_igopt_attach_jte() and isoburn_igopt_detach_jte()
|
||||
* New -as mkisofs options -jigdo-* and -md5-list as of genisoimage
|
||||
* New option -jigdo
|
||||
|
||||
|
||||
2010.10.02.121147 [3418]
|
||||
xorriso/emulators.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New -as mkisofs option -jigdo-template-compress
|
||||
|
||||
2010.10.02.150240 [3419]
|
||||
xorriso/lib_mgt.c
|
||||
Added a blank to xorriso Preparer Id string
|
||||
|
||||
2010.10.02.164306 [3420]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libisofs-0.6.37 now
|
||||
|
||||
2010.10.02.210023 [3421]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
libisoburn/libisoburn.ver
|
||||
ChangeLog
|
||||
New API call isoburn_igopt_set_tail_blocks()
|
||||
|
||||
2010.10.02.210305 [3422]
|
||||
xorriso/write_run.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Letting libisofs do the padding with -jigdo, rather than disabling padding
|
||||
|
||||
2010.10.03.082304 [3423]
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New -as mkisofs options -checksum_algorithm_iso, -checksum_algorithm_template
|
||||
|
||||
03 Oct 2010 [3424]
|
||||
ChangeLog
|
||||
Forgot to commit ChangeLog
|
||||
|
||||
2010.10.03.171305 [3425]
|
||||
xorriso/lib_mgt.c
|
||||
Reacting with FATAL event on failure to create libjte_handle
|
||||
|
||||
03 Oct 2010 [3426]
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Corrected xorriso docs about meaning of -jigdo-map and .md5 file addresses
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 - 2010.10.03.171305
|
||||
* New API call isoburn_igopt_set_tail_blocks()
|
||||
* New -as mkisofs options -checksum_algorithm_iso, -checksum_algorithm_template
|
||||
|
||||
|
||||
2010.10.04.112234 [3427]
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/write_run.c
|
||||
Enabled use of libjte message list
|
||||
|
||||
2010.10.04.113140 [3428]
|
||||
xorriso/lib_mgt.c
|
||||
Silenced compiler warning about unused variable
|
||||
|
||||
2010.10.04.155110 [3429]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/burn_wrap.c
|
||||
libisoburn/libisoburn.ver
|
||||
ChangeLog
|
||||
Tests for version of libjte, new API call isoburn_libjte_req()
|
||||
|
||||
2010.10.04.155226 [3430]
|
||||
xorriso/lib_mgt.c
|
||||
Reporting libjte version with option -version
|
||||
|
||||
2010.10.05.180016 [3431]
|
||||
xorriso/iso_manip.c
|
||||
Fixed a potential SIGSEGV by pointer offset -1. Detected by valgrind.
|
||||
|
||||
2010.10.06.162230 [3432]
|
||||
xorriso/write_run.c
|
||||
Fixed a theoretically possible race condition of burn end and ISO generator end
|
||||
|
||||
2010.10.07.114916 [3433]
|
||||
libisoburn/burn_wrap.c
|
||||
xorriso/base_obj.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/write_run.c
|
||||
Preparing for GNU xorriso to include libjte source
|
||||
|
||||
7 Oct 2010 [3434]
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Enhanced xorriso docs about meaning of .md5 file addresses
|
||||
|
||||
2010.10.07.180935 [3435]
|
||||
libisoburn/burn_wrap.c
|
||||
xorriso/base_obj.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/write_run.c
|
||||
Corrected compile problems introduced with rev 3433
|
||||
|
||||
2010.10.08.093338 [3436]
|
||||
libisoburn/burn_wrap.c
|
||||
Fixed inability to compile without enabled libjte. Introduced by rev 3429.
|
||||
|
||||
8 Oct 2010 [3437]
|
||||
COPYRIGHT
|
||||
Removed unrelated copyright statements from libisoburn COPYRIGHT
|
||||
|
||||
2010.10.12.103027 [3438]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.c
|
||||
Allowed to set System Area type via isoburn_igopt_set_system_area()
|
||||
|
||||
2010.10.12.103157 [3439]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/emulators.c
|
||||
Provisorily: -boot_image mips_path= , -as mkisofs -mips-boot. No Eltorito then.
|
||||
|
||||
2010.10.12.183125 [3440]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/xorrisoburn.h
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/emulators.c
|
||||
xorriso/iso_img.c
|
||||
Lifted the ban to combine MIPS Big Endian boot with El Torito
|
||||
|
||||
2010.10.13.170641 [3441]
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/iso_img.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Polished and documented MIPS booting option
|
||||
|
||||
2010.10.15.112050 [3442]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/iso_img.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
-boot_image mipsel_path= , -as mkisofs -mipsel-boot.
|
||||
|
||||
2010.10.15.121533 [3443]
|
||||
xorriso/make_xorriso_standalone.sh
|
||||
xorriso/configure_ac.txt
|
||||
xorriso/xorriso_makefile_am.txt
|
||||
xorriso/COPYRIGHT_gnu_xorriso
|
||||
xorriso/README_gnu_xorriso
|
||||
xorriso/AUTHORS_gnu_xorriso
|
||||
xorriso/xorriso_eng.html
|
||||
Included libjte in GNU xorriso
|
||||
|
||||
2010.10.15.125440 [3444]
|
||||
libisoburn/burn_wrap.c
|
||||
xorriso/base_obj.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/configure_ac.txt
|
||||
United macro Xorriso_jte_standalonE with macro Xorriso_standalonE
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 - 2010.10.15.125440
|
||||
* New API call isoburn_libjte_req()
|
||||
* New bootspecs mips_path= and mipsel_path= for Debian MIPS releases
|
||||
* New -as mkisofs options -mips-boot and -mipsel-boot
|
||||
|
||||
|
||||
2010.10.18.155353 [3446]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
libisoburn/libisoburn.ver
|
||||
New API calls isoburn_igopt_set_partition_img, isoburn_igopt_get_partition_img
|
||||
|
||||
2010.10.18.160132 [3448]
|
||||
xorriso/xorriso.h
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/parse_exec.c
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/iso_img.c
|
||||
xorriso/write_run.c
|
||||
libisoburn/libisoburn.ver
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New option -append_partition, -as mkisofs -append_partition
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 - 2010.10.18.160132
|
||||
* New option -append_partition, -as mkisofs -append_partition
|
||||
|
||||
|
||||
2010.10.19.104814 [3449]
|
||||
xorriso/xorriso.h
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Minor adjustments
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.3 - 2010.10.19.104814
|
||||
|
||||
2010.10.19.170704 [3451]
|
||||
ChangeLog
|
||||
xorriso/write_run.c
|
||||
Avoiding potential endless write pacifier loop. Introduced with rev 3432.
|
||||
|
||||
2010.10.20.075221 [3452]
|
||||
xorriso/write_run.c
|
||||
Cancelling libisofs write thread in case of early libburn end
|
||||
|
||||
2010.10.20.170430 [3461]
|
||||
xorriso/configure_ac.txt
|
||||
Version leap to libburn-0.8.9
|
||||
|
||||
2010.10.20.170546 [3462]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libburn-0.8.8 now
|
||||
|
||||
2010.10.21.180343 [3463]
|
||||
xorriso/drive_mgt.c
|
||||
Corrected -check_media handling of last track on BD-R resp. BD-ROM
|
||||
|
||||
2010.10.23.162213 [3464]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libisofs-0.6.38 now
|
||||
|
||||
2010.10.23.162302 [3465]
|
||||
xorriso/configure_ac.txt
|
||||
Adapted GNU xorriso to version leap libisofs-0.6.39
|
||||
|
||||
26 Oct 2010 [3466]
|
||||
svn copy -m Branching for libisoburn release 0.6.4
|
||||
http://svn.libburnia-project.org/libisoburn/trunk
|
||||
http://svn.libburnia-project.org/libisoburn/branches/ZeroSixFour
|
||||
|
||||
2010.10.26.100001 [3467]
|
||||
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
|
||||
|
||||
26 Oct 2010 []
|
||||
ChangeLog
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
----------------------------------- release - xorriso-0.6.4 - 2010.10.26.100001
|
||||
* New API call isoburn_libjte_req()
|
||||
* New API calls isoburn_igopt_attach_jte() and isoburn_igopt_detach_jte()
|
||||
* New API call isoburn_igopt_set_tail_blocks()
|
||||
* New API call isoburn_libjte_req()
|
||||
* New option -jigdo
|
||||
* New -as mkisofs options -jigdo-* and -md5-list as of genisoimage
|
||||
* New -as mkisofs options -checksum_algorithm_iso, -checksum_algorithm_template
|
||||
* New bootspecs mips_path= and mipsel_path= for Debian MIPS releases
|
||||
* New -as mkisofs options -mips-boot and -mipsel-boot
|
||||
* New option -append_partition, -as mkisofs -append_partition
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 -
|
||||
------------------------------------ cycle - xorriso-0.6.5 -
|
||||
|
||||
|
||||
**********************************************************************
|
||||
@ -8569,6 +8961,103 @@ Important: When adding a public API function then add its name to file
|
||||
===============================================================================
|
||||
|
||||
|
||||
- If libburn ends reading before libisofs is done and without canceling
|
||||
burn source, then xorriso pacifier finally has to give up waiting
|
||||
- Does isoburn_cancel_prepared_write() guarantee wait until it is done ?
|
||||
- Does ecma119.c:bs_cancel() guarantee this ?
|
||||
|
||||
|
||||
/sbin/mkfs.msdos -n Bla -C /dvdbuffer/test.fat 8192
|
||||
|
||||
dd if=/dvdbuffer/RIPLinux-9.3-non-X.iso bs=1K count=32 \
|
||||
of=/dvdbuffer/RIPLinux-9.3-non-X.sysarea
|
||||
|
||||
mount -o loop /dvdbuffer/RIPLinux-9.3-non-X.iso /mnt
|
||||
|
||||
../jte/bin/jigdo-gen-md5-list /mnt >/dvdbuffer/riplinux-9.3-non-X.md5
|
||||
|
||||
r -as mkisofs \
|
||||
-o /dvdbuffer/riplinux-9.3-non-X.iso \
|
||||
-b boot/isolinux/isolinux.bin -c boot/boot.cat \
|
||||
-no-emul-boot -boot-load-size 4 -boot-info-table \
|
||||
-isohybrid-mbr /dvdbuffer/RIPLinux-9.3-non-X.sysarea \
|
||||
-partition_offset 16 \
|
||||
-append_partition 2 0x01 /dvdbuffer/test.fat \
|
||||
\
|
||||
-R -V 'RIPLinux_9_3' \
|
||||
-jigdo-template-compress gzip \
|
||||
-checksum_algorithm_iso md5,sha1,sha256,sha512 \
|
||||
-checksum_algorithm_template all \
|
||||
-jigdo-jigdo /dvdbuffer/riplinux-9.3-non-X.jigdo \
|
||||
-jigdo-template /dvdbuffer/riplinux-9.3-non-X.template \
|
||||
-jigdo-map Debian=/mnt/ \
|
||||
-jigdo-exclude boot/syslinux \
|
||||
-md5-list /dvdbuffer/riplinux-9.3-non-X.md5 \
|
||||
-jigdo-min-file-size 0 \
|
||||
-J -joliet-long -cache-inodes \
|
||||
\
|
||||
/mnt
|
||||
|
||||
On debian:
|
||||
$ jigit-mkimage \
|
||||
-t ~/test/test_jte.template \
|
||||
-j ~/test/test_jte.jigdo \
|
||||
-m Debian=/home/thomas/projekte/libburn_dir/cdrskin-0.7.2/ \
|
||||
-o ~/test/test_jte.rebuilt
|
||||
|
||||
|
||||
|
||||
r -as mkisofs \
|
||||
-jigdo-template-compress gzip \
|
||||
-checksum_algorithm_iso md5,sha1,sha256,sha512 \
|
||||
-checksum_algorithm_template md5,sha512 \
|
||||
-R -V 'Debian 5.0.6 amd64 Bin-1' \
|
||||
-o /home/test/test_jte.iso \
|
||||
-jigdo-jigdo /home/test/test_jte.jigdo \
|
||||
-jigdo-template /home/test/test_jte.template \
|
||||
-jigdo-map Debian=/home/test/cdrskin-0.7.2/ \
|
||||
-jigdo-exclude xorriso-0.5.6 \
|
||||
-md5-list /home/test/test_jte.md5 \
|
||||
-jigdo-min-file-size 0 \
|
||||
-jigdo-exclude 'README*' \
|
||||
-jigdo-exclude /doc/ \
|
||||
-jigdo-exclude /md5sum.txt \
|
||||
-jigdo-exclude /.disk/ \
|
||||
-jigdo-exclude /pics/ \
|
||||
-jigdo-exclude 'Release*' \
|
||||
-jigdo-exclude 'Packages*' \
|
||||
-jigdo-exclude 'Sources*' \
|
||||
-J -J -joliet-long -cache-inodes \
|
||||
-b libburn/libdax_audioxtr.h \
|
||||
-c libburn/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table \
|
||||
/home/test/xorriso-0.5.6 \
|
||||
/home/test/cdrskin-0.7.2 \
|
||||
|
||||
? jte-develop/bin/jigdo-gen-md5-list
|
||||
? jte-develop/doc/jigdo-gen-md5-list.1
|
||||
|
||||
|
||||
- Should iso_write() buffer up to full 2k blocks ?
|
||||
Currently it forwards many small chunks to .template.
|
||||
|
||||
|
||||
------------------------------------------------- For Debian:
|
||||
|
||||
- Need specs for the exotic boot options
|
||||
-mips-boot is implemented
|
||||
- recognize at load time and build boot file list
|
||||
-mipsel-boot is implemented
|
||||
- recognize at load time and build boot file list
|
||||
-sparc-boot
|
||||
|
||||
|
||||
# Make the firmware volume.
|
||||
tmpdir="$(mktemp -d)"
|
||||
firmware_volume_file="$tmpdir/fat"
|
||||
mkfs.msdos -n "$firmware_volume_name" -C "$firmware_volume_file" \
|
||||
$(expr $firmware_volume_size_M \* 1024)
|
||||
|
||||
|
||||
------------------------------------------------- For Solaris
|
||||
|
||||
(The mount command needs to be adapted to Solaris.
|
||||
@ -8770,21 +9259,6 @@ xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
|
||||
very slow with high workload.
|
||||
Some hash accelerator would be nice.
|
||||
|
||||
- isohybrid
|
||||
- as of syslinux-3.81pre10/utils/isohybrid.in :
|
||||
- new signature {0xf7, 0xe3, 0xef, 0x0d}
|
||||
- read $id from previous session: byte 440, 4 bytes,
|
||||
if not {0,0,0,0} write the same byte string to new MBR byte 440
|
||||
- user adjustable parameters
|
||||
- $pentry {1..4} = 1
|
||||
- $fstype {0...255} = 0x17
|
||||
- $offset {0...64} = 0
|
||||
- $h {1...256} = 64
|
||||
- $s {1...63} = 32
|
||||
- $id {0...0xffffffff]
|
||||
- $hd0 {0...2} = 0
|
||||
- $partok {0...1} = 0
|
||||
|
||||
|
||||
- A dummy option in IsoWriteOpts which causes iso_image_create_burn_source()
|
||||
to end before actually data get written. (For -print_size)
|
||||
|
@ -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.3], [http://libburnia-project.org])
|
||||
AC_INIT([xorriso], [0.6.4], [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.3
|
||||
xorriso_rev=0.6.4
|
||||
# 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 3
|
||||
#define Xorriso_header_version_micrO 4
|
||||
|
||||
|
||||
/** Eventually something like ".pl01" to indicate a bug fix. Normally empty.
|
||||
|
@ -82,7 +82,7 @@ but rather not with CD, DVD-R, DVD+R, BD-R.
|
||||
<DT>libacl and libacl-devel</DT>
|
||||
<DD>eventually allow on GNU/Linux to get and set ACLs.</DD>
|
||||
<DT>zlib and zlib-devel</DT>
|
||||
<DD>eventually allow zisofs and gzip compression.</DD>
|
||||
<DD>eventually allow zisofs, gzip compression, and Jigdo file production.</DD>
|
||||
<DT>libbz2 and libbz2-devel</DT>
|
||||
<DD>eventually allow bzip2 compression of Jigdo template files.</DD>
|
||||
</DL>
|
||||
@ -442,19 +442,19 @@ files or trees to disk:
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Download as source code (see README):</H3></DT>
|
||||
<DD><A HREF="xorriso-0.6.2.tar.gz">xorriso-0.6.2.tar.gz</A>
|
||||
<DD><A HREF="xorriso-0.6.4.tar.gz">xorriso-0.6.4.tar.gz</A>
|
||||
(1670 KB).
|
||||
</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>(Released 26 Oct 2010)</DD>
|
||||
<DD><A HREF="xorriso-0.6.4.tar.gz.sig">xorriso-0.6.4.tar.gz.sig</A></DD>
|
||||
<DD>
|
||||
(detached GPG signature for verification by
|
||||
<KBD>gpg --verify xorriso-0.6.2.tar.gz.sig xorriso-0.6.2.tar.gz</KBD>).
|
||||
<KBD>gpg --verify xorriso-0.6.4.tar.gz.sig xorriso-0.6.4.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.2.tar.gz
|
||||
as xorriso/xorriso-0.6.4.tar.gz
|
||||
</DD>
|
||||
</DL>
|
||||
</DD>
|
||||
@ -482,9 +482,9 @@ as xorriso/xorriso-0.6.2.tar.gz
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
Bug fixes towards xorriso-0.6.0:
|
||||
Bug fixes towards xorriso-0.6.2:
|
||||
<UL>
|
||||
<LI>Regression with -hardlinks and -compliance old_rr, 0.4.2, Aug 2009</LI>
|
||||
<LI>- none -</LI>
|
||||
<!--
|
||||
<LI>- none -</LI>
|
||||
-->
|
||||
@ -502,33 +502,23 @@ Bug fixes in .pl01 towards xorriso-:
|
||||
-->
|
||||
|
||||
<P>
|
||||
Enhancements towards previous stable version xorriso-0.6.0:
|
||||
Enhancements towards previous stable version xorriso-0.6.2:
|
||||
<UL>
|
||||
|
||||
<LI>
|
||||
New option -preparer_id, -as mkisofs options -p and -preparer
|
||||
New option -jigdo
|
||||
</LI>
|
||||
<LI>
|
||||
New -boot_image specifier emul_type=none|hard_disk|floppy
|
||||
New -as mkisofs options -jigdo-* , -md5-list , -checksum_algorithm_* as of genisoimage
|
||||
</LI>
|
||||
<LI>
|
||||
New boot_image boot specs partition_offset, partition_hd_cyl, partition_sec_hd
|
||||
New bootspecs mips_path= and mipsel_path= for Debian MIPS releases
|
||||
</LI>
|
||||
<LI>
|
||||
Made behavior of -as mkisofs with unknown options more similar to original
|
||||
New -as mkisofs options -mips-boot and -mipsel-boot
|
||||
</LI>
|
||||
<LI>
|
||||
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".
|
||||
New option -append_partition, -as mkisofs -append_partition
|
||||
</LI>
|
||||
|
||||
<!--
|
||||
@ -547,28 +537,32 @@ Software copies included in GNU xorriso:
|
||||
<DT>
|
||||
GNU xorriso is feature-wise equivalent to the dynamic compilation of
|
||||
<A HREF="http://libburnia-project.org/"> libburnia </A>
|
||||
libraries and libburnia program xorriso.
|
||||
libraries, libjte, and libburnia program xorriso.
|
||||
It restricts itself to a technical form where the legal commitments of the
|
||||
libburnia project and the legal intentions of
|
||||
<A HREF="http://www.fsf.org/"> FSF </A> match completely.
|
||||
</DT>
|
||||
<DD> </DD>
|
||||
<DT>libburn-0.8.7</DT>
|
||||
<DT>libburn-0.8.9</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.37</DT>
|
||||
<DT>libisofs-0.6.39</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.2</DT>
|
||||
<DT>libisoburn-0.6.4</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
|
||||
a C language API.</DD>
|
||||
<DD>(By Vreixo Formoso and Thomas Schmitt
|
||||
from team of libburnia-project.org)</DD>
|
||||
<DT>libjte-0.1.1</DT>
|
||||
<DD>produces jigdo and template file together with the emerging ISO image.</DD>
|
||||
<DD>(By Free Software Foundation, Steve McIntyre, George Danchev,
|
||||
Thomas Schmitt)</DD>
|
||||
<DD> </DD>
|
||||
<DT>The source code of this software is independent of
|
||||
cdrecord and mkisofs.</DT>
|
||||
@ -579,8 +573,8 @@ cdrecord and mkisofs.</DT>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 0.6.3 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.6.2:
|
||||
<DT><H3>Development snapshot, version 0.6.5 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.6.4:
|
||||
<UL>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
@ -588,20 +582,9 @@ cdrecord and mkisofs.</DT>
|
||||
-->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD>Enhancements towards stable version 0.6.2:
|
||||
<DD>Enhancements towards stable version 0.6.4:
|
||||
<UL>
|
||||
<LI>
|
||||
New option -jigdo
|
||||
</LI>
|
||||
<LI>
|
||||
New -as mkisofs options -jigdo-* , -md5-list , -checksum_algorithm_* as of genisoimage
|
||||
</LI>
|
||||
<LI>
|
||||
New bootspecs mips_path= and mipsel_path= for Debian MIPS releases
|
||||
</LI>
|
||||
<LI>
|
||||
New -as mkisofs options -mips-boot and -mipsel-boot
|
||||
</LI>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
<LI>- none yet -</LI>
|
||||
-->
|
||||
@ -612,9 +595,9 @@ New -as mkisofs options -mips-boot and -mipsel-boot
|
||||
<DD> </DD>
|
||||
|
||||
<DD> </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><A HREF="README_xorriso_devel">README 0.6.5</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.6.5 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.6.5)</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
|
||||
@ -624,8 +607,8 @@ libburnia libraries.
|
||||
installation see README)
|
||||
</DD>
|
||||
<DD>
|
||||
<A HREF="xorriso-0.6.3.tar.gz">xorriso-0.6.3.tar.gz</A>
|
||||
(1730 KB).
|
||||
<A HREF="xorriso-0.6.5.tar.gz">xorriso-0.6.5.tar.gz</A>
|
||||
(1750 KB).
|
||||
</DD>
|
||||
<DT>A dynamically linked development version of xorriso can be obtained
|
||||
from repositories of
|
||||
@ -654,8 +637,8 @@ versions for dynamic linking. Only release versions are safe for that.
|
||||
But after the run of <KBD>./bootstrap</KBD>, only
|
||||
vanilla tools like make and gcc are needed.
|
||||
</DT>
|
||||
<DT>The development version of GNU xorriso contains a copy of libjte-0.1.1
|
||||
which produces jigdo and template file together with the emerging ISO image,
|
||||
<DT>GNU xorriso contains a copy of libjte-0.1.1
|
||||
which produces jigdo and template file together with the emerging ISO image.
|
||||
(By Free Software Foundation, Steve McIntyre, George Danchev,
|
||||
Thomas Schmitt)
|
||||
</DT>
|
||||
|
@ -111,7 +111,7 @@
|
||||
*/
|
||||
#define Xorriso_req_majoR 0
|
||||
#define Xorriso_req_minoR 6
|
||||
#define Xorriso_req_micrO 3
|
||||
#define Xorriso_req_micrO 4
|
||||
|
||||
|
||||
static void yell_xorriso()
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2010.10.23.162302"
|
||||
#define Xorriso_timestamP "2010.10.26.100001"
|
||||
|
@ -19,7 +19,7 @@
|
||||
*/
|
||||
#define xorriso_libisoburn_req_major 0
|
||||
#define xorriso_libisoburn_req_minor 6
|
||||
#define xorriso_libisoburn_req_micro 3
|
||||
#define xorriso_libisoburn_req_micro 4
|
||||
|
||||
|
||||
struct SpotlisT; /* List of intervals with different read qualities */
|
||||
@ -512,14 +512,20 @@ int Xorriso_attach_boot_image(struct XorrisO *xorriso, int flag);
|
||||
int Xorriso_boot_image_status(struct XorrisO *xorriso, char *filter, FILE *fp,
|
||||
int flag);
|
||||
|
||||
int Xorriso_add_mips_boot_file(struct XorrisO *xorriso, char *path, int flag);
|
||||
|
||||
int Xorriso_coordinate_system_area(struct XorrisO *xorriso, int sa_type,
|
||||
int options, char *cmd, int flag);
|
||||
|
||||
|
||||
|
||||
|
||||
/* A pseudo file type for El-Torito bootsectors as in man 2 stat :
|
||||
For now take the highest possible value.
|
||||
*/
|
||||
#define Xorriso_IFBOOT S_IFMT
|
||||
|
||||
|
||||
int Xorriso_add_mips_boot_file(struct XorrisO *xorriso, char *path, int flag);
|
||||
|
||||
|
||||
int Exprtest_match(struct XorrisO *xorriso, struct ExprtesT *ftest,
|
||||
void *node_pt, char *name, char *path,
|
||||
|
Reference in New Issue
Block a user