Compare commits
4 Commits
1.4.6
...
ZeroSixSix
Author | SHA1 | Date | |
---|---|---|---|
d8e8f9a230 | |||
c17c3dd76b | |||
a0ac2c9cfe | |||
519d6837f1 |
@ -1,4 +1,8 @@
|
||||
SVN trunk (to become libisoburn-0.6.6.pl00.tar.gz)
|
||||
SVN trunk (to become libisoburn-0.6.8.pl00.tar.gz)
|
||||
===============================================================================
|
||||
- no novelties yet
|
||||
|
||||
libisoburn-0.6.6.pl00.tar.gz Sun Dec 12 2010
|
||||
===============================================================================
|
||||
libisoburn novelties:
|
||||
* New API calls isoburn_igopt_set_disc_label(), isoburn_igopt_get_disc_label()
|
||||
|
12
README
12
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.4.pl00.tar.gz
|
||||
http://files.libburnia-project.org/releases/libisoburn-0.6.6.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.4 :
|
||||
Dynamic library and compile time header requirements for libisoburn-0.6.6 :
|
||||
- libburn.so.4 , version libburn-0.8.8 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.38 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.40 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.4.pl00.tar.gz, take it to a directory of your choice
|
||||
Obtain libisoburn-0.6.6.pl00.tar.gz, take it to a directory of your choice
|
||||
and do:
|
||||
|
||||
tar xzf libisoburn-0.6.4.pl00.tar.gz
|
||||
cd libisoburn-0.6.4
|
||||
tar xzf libisoburn-0.6.6.pl00.tar.gz
|
||||
cd libisoburn-0.6.6
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
|
14
configure.ac
14
configure.ac
@ -1,4 +1,4 @@
|
||||
AC_INIT([libisoburn], [0.6.5], [http://libburnia-project.org])
|
||||
AC_INIT([libisoburn], [0.6.6], [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=5
|
||||
ISOBURN_MICRO_VERSION=6
|
||||
|
||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||
|
||||
@ -37,15 +37,15 @@ dnl Generate libisoburn.so.1.x.y
|
||||
dnl SONAME will become LT_CURRENT - LT_AGE
|
||||
dnl
|
||||
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 This is the release version 0.6.6 = libisoburn.so.1.55.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 = 54 - 53 = 1 . Library name = libisoburn.so.1.53.0
|
||||
dnl SONAME = 56 - 55 = 1 . Library name = libisoburn.so.1.55.0
|
||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||
LT_CURRENT=54
|
||||
LT_AGE=53
|
||||
LT_CURRENT=56
|
||||
LT_AGE=55
|
||||
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 5
|
||||
#define isoburn_header_version_micro 6
|
||||
/** 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.5.tar.gz
|
||||
ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.6.6.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.5.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain xorriso-0.6.6.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf xorriso-0.6.5.tar.gz
|
||||
cd xorriso-0.6.5
|
||||
tar xzf xorriso-0.6.6.tar.gz
|
||||
cd xorriso-0.6.6
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -291,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.4 :
|
||||
Dynamic library and compile time header requirements for libisoburn-0.6.6 :
|
||||
- libburn.so.4 , version libburn-0.8.8 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.38 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.40 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.
|
||||
|
@ -8962,14 +8962,280 @@ xorriso/configure_ac.txt
|
||||
xorriso/xorriso_timestamp.h
|
||||
Version leap to libisoburn-0.6.5
|
||||
|
||||
26 Oct 2010 []
|
||||
26 Oct 2010 [3470]
|
||||
ChangeLog
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
26 Oct 2010 [3471]
|
||||
svn move -m Promoted branch to tag
|
||||
http://svn.libburnia-project.org/libisoburn/branches/ZeroSixFour
|
||||
http://svn.libburnia-project.org/libisoburn/tags/ZeroSixFour
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.10.26.104219
|
||||
|
||||
|
||||
2010.10.27.063628 [3472]
|
||||
xorriso/emulators.c
|
||||
Bug fix: -as mkisofs -print-size printed the size but also produced ISO image
|
||||
|
||||
2010.10.27.063705 [3473]
|
||||
xorriso/emulators.c
|
||||
New -as mkisofs option -joliet-long
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.10.27.063705
|
||||
* Bug fix: -as mkisofs -print-size printed the size but also produced ISO image
|
||||
* New -as mkisofs option -joliet-long
|
||||
|
||||
|
||||
2010.10.29.164503 [3475]
|
||||
xorriso/write_run.c
|
||||
Added necessary isoburn_cancel_prepared_write() calls
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.10.29.164503
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.11.01.113243
|
||||
* Build problem fix on Linux 2.4 in GNU xorriso libjte/checksum.c
|
||||
|
||||
|
||||
2010.11.01.191542 [3477]
|
||||
xorriso/iso_manip.c
|
||||
Allowed to perform -rm_r /
|
||||
|
||||
2010.11.03.081124 [3478]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/drive_mgt.h
|
||||
xorriso/drive_mgt.c
|
||||
xorriso/findjob.c
|
||||
xorriso/read_run.c
|
||||
Testing for abort file during -check_media
|
||||
|
||||
2010.11.05.143916 [3470]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
libisoburn/libisoburn.ver
|
||||
New API calls isoburn_igopt_set_disc_label(), isoburn_igopt_get_disc_label()
|
||||
|
||||
2010.11.05.144616 [3480]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/iso_img.c
|
||||
xorriso/write_run.c
|
||||
New bootspec sparc_label=, new -as mkisofs options -sparc-boot , -sparc-label
|
||||
|
||||
05 Nov 2010 [3481]
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Documentation changes of rev 3480
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.11.05.144616
|
||||
* New API calls isoburn_igopt_set_disc_label(), isoburn_igopt_get_disc_label()
|
||||
* New bootspec sparc_label=, new -as mkisofs options -sparc-boot , -sparc-label
|
||||
|
||||
|
||||
2010.11.06.133454 [3482]
|
||||
libisoburn/libisoburn.h
|
||||
xorriso/write_run.c
|
||||
ChangeLog
|
||||
Declared that isoburn_cancel_prepared_write() waits until iso write thread ends
|
||||
|
||||
2010.11.21.065727 [3484]
|
||||
xorriso/make_xorriso_standalone.sh
|
||||
Included jigdo-gen-md5-list in GNU xorriso
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.11.21.065727
|
||||
|
||||
|
||||
2010.11.23.193708 [3485]
|
||||
xorriso/iso_img.c
|
||||
Improved behavior with loading multiple boot images of identical content
|
||||
|
||||
2010.11.23.200346 [3486]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/lib_mgt.c
|
||||
xorriso/write_run.c
|
||||
Avoided to bother libjte if no output paths are given
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.11.23.200346
|
||||
|
||||
2010.11.24.100845 [3487]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
New pseudo extension isoburn_igopt_will_cancel to avoid MISHAP event
|
||||
|
||||
2010.11.24.101056 [3488]
|
||||
xorriso/write_run.c
|
||||
Making use of isoburn_igopt_will_cancel with xorriso -print_size
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.11.24.101056
|
||||
|
||||
|
||||
2010.11.27.134702 [3489]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libisofs-0.6.39 now
|
||||
|
||||
2010.11.30.093929 [3490]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/isoburn.c
|
||||
libisoburn/isofs_wrap.c
|
||||
libisoburn/data_source.c
|
||||
libisoburn/libisoburn.ver
|
||||
New API calls isoburn_ropt_set_displacement(), isoburn_ropt_get_displacement()
|
||||
|
||||
2010.11.30.094310 [3491]
|
||||
xorriso/xorriso.h
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/parse_exec.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/drive_mgt.c
|
||||
xorriso/text_io.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
libisoburn/libisoburn.ver
|
||||
ChangeLog
|
||||
New option -displacement
|
||||
|
||||
2010.11.30.104719 [3492]
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/opts_i_o.c
|
||||
xorriso/disk_ops.h
|
||||
xorriso/disk_ops.c
|
||||
Improved messages at the end of partially failed -extract runs
|
||||
|
||||
2010.11.30.112050 [3493]
|
||||
xorriso/opts_p_z.c
|
||||
Processing output of -as mkisofs by -pkt_output if enabled
|
||||
|
||||
2010.11.30.170112 [3494]
|
||||
xorriso/parse_exec.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Clarified occasions of -mark message and removed surplus -mark message emitter
|
||||
|
||||
2010.12.01.173750 [3495]
|
||||
libisoburn/libisoburn.h
|
||||
Clarified description of isoburn_ropt_set_displacement()
|
||||
|
||||
2010.12.02.063209 [3496]
|
||||
xorriso/xorriso.h
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/xorriso_main.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/emulators.c
|
||||
xorriso/iso_img.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
No -rollback in -as mkisofs -print-size. New flag in Xorriso_change_is_pending.
|
||||
|
||||
2010.12.02.111029 [3497]
|
||||
xorriso/xorrisoburn.h
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/disk_ops.c
|
||||
xorriso/iso_manip.c
|
||||
xorriso/findjob.h
|
||||
xorriso/findjob.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
New action estimate_size for -find and -findx
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 - 2010.12.02.111029
|
||||
* New API calls isoburn_ropt_set_displacement(), isoburn_ropt_get_displacement()
|
||||
* New option -displacement
|
||||
* New action estimate_size for -find and -findx
|
||||
|
||||
|
||||
2010.12.04.174311 [3498]
|
||||
libisoburn/isofs_wrap.c
|
||||
Fixed a bug about read displacement introduced with rev 3490
|
||||
|
||||
2010.12.04.174431 [3499]
|
||||
xorriso/write_run.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Preliminarily banned writing while read displacement is non-zero
|
||||
|
||||
2010.12.06.094347 [3500]
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/write_run.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Allowed writing with read displacement if target media is blank
|
||||
|
||||
2010.12.07.174921 [3501]
|
||||
xorriso/iso_img.c
|
||||
Made -rom_toc_scan emul_off work with -mount ... sbsector ...
|
||||
|
||||
2010.12.08.194225 [3510]
|
||||
xorriso/opts_d_h.c
|
||||
Fixed a potential bug introduced with rev 3497
|
||||
|
||||
2010.12.08.194325 [3511]
|
||||
xorriso/iso_img.c
|
||||
Fixed a bug introduced with rev 3501
|
||||
|
||||
08 Dec 2010 [3512]
|
||||
xorriso/configure_ac.txt
|
||||
GNU xorriso version leap to libburn-0.9.1
|
||||
|
||||
2010.12.10.123534 [3513]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libisofs-0.6.40 now
|
||||
|
||||
2010.12.10.123634 [3514]
|
||||
xorriso/configure_ac.txt
|
||||
Adapted GNU xorriso to version leap libisofs-0.6.41
|
||||
|
||||
11 Dec 2010 [3515]
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Clarification about -md5, -check_media and -find ... -damaged
|
||||
|
||||
12 Dec 2010 [2516]
|
||||
svn copy -m Branching for libisoburn release 0.6.6
|
||||
http://svn.libburnia-project.org/libisoburn/trunk
|
||||
http://svn.libburnia-project.org/libisoburn/branches/ZeroSixSix
|
||||
|
||||
12 Dec 2010 [3517]
|
||||
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.6
|
||||
|
||||
12 Dec 2010 []
|
||||
ChangeLog
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------ cycle - xorriso-0.6.5 -
|
||||
------------------------------------ cycle - xorriso-0.6.5 -
|
||||
@ -8985,12 +9251,6 @@ 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 \
|
||||
@ -9061,9 +9321,6 @@ r -as mkisofs \
|
||||
? 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:
|
||||
|
||||
@ -9072,14 +9329,10 @@ r -as mkisofs \
|
||||
- recognize at load time and build boot file list
|
||||
-mipsel-boot is implemented
|
||||
- recognize at load time and build boot file list
|
||||
-sparc-boot
|
||||
-sparc-boot is implemented
|
||||
- recognize at load time
|
||||
|
||||
|
||||
# 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)
|
||||
r -abort_on NEVER -report_about ALL -dialog on -page 20 80 -as mkisofs -o /dvdbuffer/pseudo_drive /u/gruenbeck -G /u/x -B ... -sparc-label 'xorriso test'
|
||||
|
||||
|
||||
------------------------------------------------- For Solaris
|
||||
@ -9120,30 +9373,6 @@ mkfs.msdos -n "$firmware_volume_name" -C "$firmware_volume_file" \
|
||||
|
||||
------------------------------------------------- bugs
|
||||
|
||||
- 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
|
||||
|
||||
|
||||
- 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 offset, though.
|
||||
|
||||
@ -9173,8 +9402,12 @@ xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
|
||||
|
||||
------------------------------------------------- important
|
||||
|
||||
- introduce a read offset for displaced ISO images ?
|
||||
(Copy from CD block 123456 to disk. Apply -img_displaced_by 123456s )
|
||||
- introduce a read offset for displaced ISO images
|
||||
- coordinate -displacement with image growing
|
||||
|
||||
- improve find action estimate_size.
|
||||
- take into account indispensible RR and eventual Joliet stuff
|
||||
- take into account the eventual file checksums.
|
||||
|
||||
- options -print_info , -print_mark
|
||||
|
||||
@ -9208,10 +9441,6 @@ xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
|
||||
|
||||
------------------------------------------------- development
|
||||
|
||||
- Is it possible to make use of iso_node_set_hidden()
|
||||
to hide e.g. boot catalogs ?
|
||||
Eventually emulate mkisofs -hide -hide-list
|
||||
|
||||
- Special pseudo ACL: "--remove-default"
|
||||
|
||||
- libisofs , libburn , own system adapter ? :
|
||||
@ -9221,9 +9450,6 @@ xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
|
||||
|
||||
- -load option to ignore existing images
|
||||
|
||||
- image sort weight control:
|
||||
isoburn_igopt_set_sort_files iso_node_set_sort_weight
|
||||
|
||||
- random access read and write option
|
||||
|
||||
- option to patch the mount image size and location on overwriteables
|
||||
@ -9284,9 +9510,6 @@ xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
|
||||
Some hash accelerator would be nice.
|
||||
|
||||
|
||||
- A dummy option in IsoWriteOpts which causes iso_image_create_burn_source()
|
||||
to end before actually data get written. (For -print_size)
|
||||
|
||||
- Re-use unchanged sub trees in the previous image in order to
|
||||
reduce the session overhead.
|
||||
|
||||
|
@ -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.5], [http://libburnia-project.org])
|
||||
AC_INIT([xorriso], [0.6.6], [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.5
|
||||
xorriso_rev=0.6.6
|
||||
# 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 5
|
||||
#define Xorriso_header_version_micrO 6
|
||||
|
||||
|
||||
/** Eventually something like ".pl01" to indicate a bug fix. Normally empty.
|
||||
|
@ -421,6 +421,10 @@ files or trees to disk:
|
||||
<DD><KBD> /home/her/buttercup_dir -- \</KBD>
|
||||
<DD><KBD> -extract /sounds /home/her/sounds_from_me</KBD></DD>
|
||||
</DD>
|
||||
<DT>Each copy command processes its files sorted by block address
|
||||
in the ISO image in order to reduce head moves with optical media.
|
||||
This can bring effective read performance near to the raw media reading speed.
|
||||
</DT>
|
||||
<DT>Consider to enter dialog mode and use commands like
|
||||
<KBD>-cd , -du , -lsl , -find<KBD>.
|
||||
<DT>
|
||||
@ -442,19 +446,19 @@ files or trees to disk:
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Download as source code (see README):</H3></DT>
|
||||
<DD><A HREF="xorriso-0.6.4.tar.gz">xorriso-0.6.4.tar.gz</A>
|
||||
(1750 KB).
|
||||
<DD><A HREF="xorriso-0.6.6.tar.gz">xorriso-0.6.6.tar.gz</A>
|
||||
(1765 KB).
|
||||
</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>(Released 12 Dec 2010)</DD>
|
||||
<DD><A HREF="xorriso-0.6.6.tar.gz.sig">xorriso-0.6.6.tar.gz.sig</A></DD>
|
||||
<DD>
|
||||
(detached GPG signature for verification by
|
||||
<KBD>gpg --verify xorriso-0.6.4.tar.gz.sig xorriso-0.6.4.tar.gz</KBD>).
|
||||
<KBD>gpg --verify xorriso-0.6.6.tar.gz.sig xorriso-0.6.6.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.4.tar.gz
|
||||
as xorriso/xorriso-0.6.6.tar.gz
|
||||
</DD>
|
||||
</DL>
|
||||
</DD>
|
||||
@ -482,9 +486,10 @@ as xorriso/xorriso-0.6.4.tar.gz
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
Bug fixes towards xorriso-0.6.2:
|
||||
Bug fixes towards xorriso-0.6.4:
|
||||
<UL>
|
||||
<LI>- none -</LI>
|
||||
<LI>-as mkisofs -print-size printed the size but also produced ISO image</LI>
|
||||
<LI>Build problem fix on Linux 2.4</LI>
|
||||
<!--
|
||||
<LI>- none -</LI>
|
||||
-->
|
||||
@ -502,23 +507,16 @@ Bug fixes in .pl01 towards xorriso-:
|
||||
-->
|
||||
|
||||
<P>
|
||||
Enhancements towards previous stable version xorriso-0.6.2:
|
||||
Enhancements towards previous stable version xorriso-0.6.4:
|
||||
<UL>
|
||||
|
||||
<LI>New -as mkisofs option -joliet-long</LI>
|
||||
<LI>
|
||||
New option -jigdo
|
||||
New bootspec sparc_label=, new -as mkisofs options -sparc-boot , -sparc-label
|
||||
for SUN SPARC systems.
|
||||
</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>
|
||||
New option -append_partition, -as mkisofs -append_partition
|
||||
New action estimate_size for -find and -findx
|
||||
</LI>
|
||||
|
||||
<!--
|
||||
@ -543,16 +541,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.9</DT>
|
||||
<DT>libburn-0.9.1</DT>
|
||||
<DD>reads and writes data from and to CD, DVD, BD.</DD>
|
||||
<DD>(founded by Derek Foreman and Ben Jansens,
|
||||
developed and maintained since August 2006 by
|
||||
Thomas Schmitt from team of libburnia-project.org)</DD>
|
||||
<DT>libisofs-0.6.39</DT>
|
||||
<DT>libisofs-0.6.41</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.4</DT>
|
||||
<DT>libisoburn-0.6.6</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
|
||||
@ -573,8 +571,8 @@ cdrecord and mkisofs.</DT>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 0.6.5 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.6.4:
|
||||
<DT><H3>Development snapshot, version 0.6.7 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.6.6:
|
||||
<UL>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
@ -582,22 +580,20 @@ cdrecord and mkisofs.</DT>
|
||||
-->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD>Enhancements towards stable version 0.6.4:
|
||||
<DD>Enhancements towards stable version 0.6.6:
|
||||
<UL>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
<LI>- none yet -</LI>
|
||||
-->
|
||||
</UL>
|
||||
|
||||
</DD>
|
||||
|
||||
<DD> </DD>
|
||||
|
||||
<DD> </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><A HREF="README_xorriso_devel">README 0.6.7</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.6.7 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.6.7)</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
|
||||
@ -607,8 +603,8 @@ libburnia libraries.
|
||||
installation see README)
|
||||
</DD>
|
||||
<DD>
|
||||
<A HREF="xorriso-0.6.5.tar.gz">xorriso-0.6.5.tar.gz</A>
|
||||
(1750 KB).
|
||||
<A HREF="xorriso-0.6.7.tar.gz">xorriso-0.6.7.tar.gz</A>
|
||||
(1765 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 5
|
||||
#define Xorriso_req_micrO 6
|
||||
|
||||
|
||||
static void yell_xorriso()
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2010.12.10.123634"
|
||||
#define Xorriso_timestamP "2010.12.12.090001"
|
||||
|
@ -19,7 +19,7 @@
|
||||
*/
|
||||
#define xorriso_libisoburn_req_major 0
|
||||
#define xorriso_libisoburn_req_minor 6
|
||||
#define xorriso_libisoburn_req_micro 5
|
||||
#define xorriso_libisoburn_req_micro 6
|
||||
|
||||
|
||||
struct SpotlisT; /* List of intervals with different read qualities */
|
||||
|
Reference in New Issue
Block a user