Re: Troubles with debian-cd

2013-05-14 Thread Thomas Schmitt
Hi,

 Built wheezy images for i386 and amd64 and they 
 booted of CDs and flash drives. ;)

Good to know.


To Steve McIntyre:

Is there a chance to get it tested on the Debian ISO production
machine within the next few days ?

Else i would now begin to prepare the next release.


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20597624227454385...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-13 Thread Thomas Schmitt
Hi,

there goes my theory with the missing -b option.

I will have to make experiments. Possibly i will have to ask for
adding image inspection commands after the -as mkisofs options.

Hopefully i have some insight this evening.


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1578262427259683...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-13 Thread Thomas Schmitt
Hi,

it is reproducible now. The current release 1.2.8 is affected, too.
1.2.6 indeed works.
Thanks for reporting.

I will give you a note when i found out how i managed to spoil it.


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5451624278240263...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-13 Thread Thomas Schmitt
Hi,

the regression was introduced by
  http://www.libburnia-project.org/changeset/4985
in xorriso/write_run.c lines 2361 to 2365.

I can get
   xorriso-1.2.9 -as mkisofs -print-size -b ... -isohybrid-mbr ...
to work by re-instating the call of Xorriso_genisofs_add_boot()
if -print-size was given:

 if(xorriso-boot_image_bin_path[0]  do_print_size) {
   ret= Xorriso_genisofs_add_boot(xorriso, 0);
   if(ret = 0)
 goto ex;
 }

(Its parameter list has changed during rev 4985.)


I removed that call from the end of emulation, in order to allow
further manipulation of the most recently added boot image.
(xorriso has an own life outside mkisofs and cdrecord emulation.)

Now i have to realize that it hid a bug in the processing of the
last registered boot image in xorriso's genuine command mode.
Thanks again for reporting.


This all explains why the production of BIOS/EFI hybrid images does
not fail with xorriso-1.2.9. Option
   -eltorito-alt-boot
forces a call to Xorriso_genisofs_add_boot(). Afterwards, the
production of isohybrid MBR had its BIOS boot image in reach.
The EFI image was not properly registered during the -print-size
run, but that did not even cause an inaccuracy of size prediction.

Runs without -print-size add the last boot image shortly before
writing begins. So they are not affected by the bug.


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/8753624268881621...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-13 Thread Philip Charles
On Mon, 13 May 2013, Thomas Schmitt wrote:
 Hi,
 
 the regression was introduced by
   http://www.libburnia-project.org/changeset/4985
 in xorriso/write_run.c lines 2361 to 2365.
 
 I can get
xorriso-1.2.9 -as mkisofs -print-size -b ... -isohybrid-mbr ...
 to work by re-instating the call of Xorriso_genisofs_add_boot()
 if -print-size was given:
 
  if(xorriso-boot_image_bin_path[0]  do_print_size) {
ret= Xorriso_genisofs_add_boot(xorriso, 0);
if(ret = 0)
  goto ex;
  }
 
 (Its parameter list has changed during rev 4985.)
 
 
 I removed that call from the end of emulation, in order to allow
 further manipulation of the most recently added boot image.
 (xorriso has an own life outside mkisofs and cdrecord emulation.)
 
 Now i have to realize that it hid a bug in the processing of the
 last registered boot image in xorriso's genuine command mode.
 Thanks again for reporting.

Glad to be of help.

Phil.

-- 
  Philip Charles; 39a Paterson Street, Abbotsford, Dunedin, New Zealand
   +64 3 488 2818Fax +64 3 488 2875Mobile 027 663 4453
   phil...@copyleft.co.nz - personal.i...@copyleft.co.nz - business


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201305132333.28367.phil...@copyleft.co.nz



Re: Troubles with debian-cd

2013-05-13 Thread Thomas Schmitt
Hi,

hopefully
  http://www.libburnia-project.org/changeset/5039
fixes the problem with xorriso-1.2.[89] and -print-size without
introducing new bugs. The change is small and in theory should
only affect the buggy case. In theory ...

I would appreciate if this could be tested during the next days.
As said, i plan to release 1.3.0 soon and hope it will be the
first new xorriso version in Debian since a year.

  http://www.gnu.org/software/xorriso/xorriso-1.2.9.tar.gz
  MD5 9348502abb1a6cd4f6fe47c68412b270

xorriso -version is supposed to report:
  xorriso version   :  1.2.9
  Version timestamp :  2013.05.13.123951


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/22725624280004592...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-13 Thread Philip Charles
On Tue, 14 May 2013, Thomas Schmitt wrote:
 Hi,
 
 hopefully
   http://www.libburnia-project.org/changeset/5039
 fixes the problem with xorriso-1.2.[89] and -print-size without
 introducing new bugs. The change is small and in theory should
 only affect the buggy case. In theory ...
 
 I would appreciate if this could be tested during the next days.
 As said, i plan to release 1.3.0 soon and hope it will be the
 first new xorriso version in Debian since a year.
 
   http://www.gnu.org/software/xorriso/xorriso-1.2.9.tar.gz
   MD5 9348502abb1a6cd4f6fe47c68412b270
 
 xorriso -version is supposed to report:
   xorriso version   :  1.2.9
   Version timestamp :  2013.05.13.123951

Thomas,
  Built wheezy images for i386 and amd64 and they 
booted of CDs and flash drives. ;)

Phil.

-- 
  Philip Charles; 39a Paterson Street, Abbotsford, Dunedin, New Zealand
   +64 3 488 2818Fax +64 3 488 2875Mobile 027 663 4453
   phil...@copyleft.co.nz - personal.i...@copyleft.co.nz - business


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201305141234.00134.phil...@copyleft.co.nz



Re: Troubles with debian-cd

2013-05-12 Thread Philip Charles
On Sat, 11 May 2013, Thomas Schmitt wrote:
 Hi,
 
 Philip Charles wrote:
  With xorriso 1.2.2 the build stops at 650k.
 
 What happens if you use the same xorriso version as was used
 for the Debian release ?
 
   http://www.gnu.org/software/xorriso/xorriso-1.2.6.tar.gz
 

Works nicely.   Boots off usb stick.  Using 1.2.6.

Hope to get onto 
'xorriso -abort_on FATAL -report_about ALL -as mkisofs ...'
tomorrow.

Regards and thanks.

Phil.

-- 
  Philip Charles; 39a Paterson Street, Abbotsford, Dunedin, New Zealand
   +64 3 488 2818Fax +64 3 488 2875Mobile 027 663 4453
   phil...@copyleft.co.nz - personal.i...@copyleft.co.nz - business


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201305121903.12600.phil...@copyleft.co.nz



Re: Troubles with debian-cd

2013-05-12 Thread Thomas Schmitt
Hi,

http://www.gnu.org/software/xorriso/xorriso-1.2.6.tar.gz

 Works nicely.   Boots off usb stick.  Using 1.2.6.

Now this puzzling.


 Hope to get onto 
 'xorriso -abort_on FATAL -report_about ALL -as mkisofs ...'
 tomorrow.

Please send me the output of runs with each of the three versions
you tested. Especially interesting is whether they really get the
same program arguments.


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/30401623534567183...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-11 Thread Philip Charles
Sorry about the delay.  The rest of my life caught up with me.

On Thu, 09 May 2013, Steve McIntyre wrote:
 On Tue, May 07, 2013 at 07:54:41PM +1200, Philip Charles wrote:
 
 1.  When using xorriso 1.2.2 and the associated iso build
 configuration the resulting image would not boot from a flash drive. 
 A previous version of debian-cd was ok.
 
 My testing at the time *did* work IIRC. Maybe I missed something,
 though.

worked with xorriso 1.2.9  though.

 2.  When building i386 images debian-cd ignored DISKTYPE and put
 everything it could find into the image all 40+GiB.  I had not tried
 building i386 on previous versions of debian-cd.  Using xorriso 1.2.9
 and associated build config.

 As for
 the silly-sized image, I've not seen that before. If you check the
 log for make_disc_trees, it should explicitly list what the configured
 size is.

When using xorriso 1.2.9 the log file does say 650 Mib 332031 2k blocks
BUT about every 650k or so 'xorriso -as mkisofs ..' tries to run and fails 
and the build goes onto the next 650k.  This happens 63 times which 
squares with the final image size.
With xorriso 1.2.2 the build stops at 650k.
 
 A  final point, the i386 DVD 1 has a peculiar structure.  Mind you it
 works.
 
 What do you mean by peculiar? :-)

My misobservation, to put it politely.

I am hoping to try the latest svn version in the next few days.

Phil.

-- 
  Philip Charles; 39a Paterson Street, Abbotsford, Dunedin, New Zealand
   +64 3 488 2818Fax +64 3 488 2875Mobile 027 663 4453
   phil...@copyleft.co.nz - personal.i...@copyleft.co.nz - business


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201305111849.37574.phil...@copyleft.co.nz



Re: Troubles with debian-cd

2013-05-11 Thread Thomas Schmitt
Hi,

Philip Charles wrote:
 When using xorriso 1.2.9 the log file does say 650 Mib 332031 2k blocks
 BUT about every 650k or so 'xorriso -as mkisofs ..' tries to run and fails 
 and the build goes onto the next 650k.  This happens 63 times which 
 squares with the final image size.
 With xorriso 1.2.2 the build stops at 650k.

Are there any messages by xorriso to see ?


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/28042623435735519...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-11 Thread Thomas Schmitt
Hi,

Philip Charles wrote:
 With xorriso 1.2.2 the build stops at 650k.

What happens if you use the same xorriso version as was used
for the Debian release ?

  http://www.gnu.org/software/xorriso/xorriso-1.2.6.tar.gz


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/6254623584299572...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-11 Thread Thomas Schmitt
Hi,

Philip Charles wrote:
 Are thes helpful?
 libisofs: MISHAP : Cannot patch isolinux boot image
 xorriso : FAILURE : Failed to prepare session write run

The message Cannot patch isolinux boot image is issued on
several occasions. Most of them would be accompanied by
messages other than you see.

I tested the two remaining candidates and only this one produces
matching error messages:

libisofs was told to prepare isohybrid but no boot image
was given. (-isohybrid-mbr without -b)

  xorriso -abort_on FATAL -report_about SORRY \
-as mkisofs \
  -o test.iso \
  -isohybrid-mbr dummy.mbr \
  -print-size \
  some_directory

yields

  GNU xorriso 1.2.9 : RockRidge filesystem manipulator, libburnia project.

  libisofs: MISHAP : Cannot patch isolinux boot image
  xorriso : FAILURE : Failed to prepare session write run
  xorriso : SORRY : -print_size: Failed to set up virtual -commit


Whatever, the problem sits in the arguments for booting (or in
my handling of those arguments).
If possible i would like to see the output of a run with

  xorriso -abort_on FATAL -report_about ALL -as mkisofs ...

This would tell all program arguments and lots of other info.


 Argument  isn't numeric in addition (+) at 
 /home/philipc/.DISC/Installer/debian-cd-efi/tools/make_disc_trees.pl line 227.

This is the caller of xorriso being unhappy about the result.


Have a nice day :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/9815623589280393...@scdbackup.webframe.org



Re: Troubles with debian-cd

2013-05-08 Thread Steve McIntyre
On Tue, May 07, 2013 at 07:54:41PM +1200, Philip Charles wrote:
Hi folks,

Hi Philip,

  Thanks to Thomas Schmitt I got everthing done I 
wanted done.  I had two problems with debian-cd

Hmmm, OK.

1.  When using xorriso 1.2.2 and the associated iso build configuration 
the resulting image would not boot from a flash drive.  A previous version 
of debian-cd was ok.

My testing at the time *did* work IIRC. Maybe I missed something,
though.

2.  When building i386 images debian-cd ignored DISKTYPE and put 
everything it could find into the image all 40+GiB.  I had not tried 
building i386 on previous versions of debian-cd.  Using xorriso 1.2.9 and 
associated build config.

As I do funny things with debian-cd I work directly through makefile and 
CONF.sh and I have noticed that ARCHES and COMPLETE are missing from 
CONF.sh

ACK. They're not there by default; for most people that's fine. As for
the silly-sized image, I've not seen that before. If you check the
log for make_disc_trees, it should explicitly list what the configured
size is.

A  final point, the i386 DVD 1 has a peculiar structure.  Mind you it 
works.

What do you mean by peculiar? :-)

It was great to see the iso's and jigdos up so quickly.  This must have 
involved a lot of work.

It definitely kept us busy on Saturday, yes!

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
Can't keep my eyes from the circling sky,
Tongue-tied  twisted, Just an earth-bound misfit, I...


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130508172631.gh24...@einval.com



Troubles with debian-cd

2013-05-07 Thread Philip Charles
Hi folks,
  Thanks to Thomas Schmitt I got everthing done I 
wanted done.  I had two problems with debian-cd

1.  When using xorriso 1.2.2 and the associated iso build configuration 
the resulting image would not boot from a flash drive.  A previous version 
of debian-cd was ok.
2.  When building i386 images debian-cd ignored DISKTYPE and put 
everything it could find into the image all 40+GiB.  I had not tried 
building i386 on previous versions of debian-cd.  Using xorriso 1.2.9 and 
associated build config.

As I do funny things with debian-cd I work directly through makefile and 
CONF.sh and I have noticed that ARCHES and COMPLETE are missing from 
CONF.sh

A  final point, the i386 DVD 1 has a peculiar structure.  Mind you it 
works.

It was great to see the iso's and jigdos up so quickly.  This must have 
involved a lot of work.

Phil.
-- 
  Philip Charles; 39a Paterson Street, Abbotsford, Dunedin, New Zealand
   +64 3 488 2818Fax +64 3 488 2875Mobile 027 663 4453
   phil...@copyleft.co.nz - personal.i...@copyleft.co.nz - business


-- 
To UNSUBSCRIBE, email to debian-cd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201305071954.41486.phil...@copyleft.co.nz