Re: Two different libpng2_1.0.12-3.woody.3_i386.deb?

2003-12-03 Thread Gabor Burjan
On Wed, Dec 03, 2003 at 05:44:36PM +0100, Santiago Vila wrote:

> wget -q -O 1.deb http://ftp.debian.org/debian/pool/$file
> wget -q -O 2.deb http://security.debian.org/pool/updates/$file
> diff 1.deb 2.deb
> 
> Binary files 1.deb and 2.deb differ
> 
> How could this happen? Should I worry about it?

$ diff -u <(cd 1 && find . -type f -print0 | xargs -0 md5sum) <(cd 2 && find . 
-type f -print0 | xargs -0 md5sum)
--- /dev/fd/63  Wed Dec  3 18:11:59 2003
+++ /dev/fd/62  Wed Dec  3 18:11:59 2003
@@ -4,5 +4,5 @@
 efcb0a3d92c575963f4cd4e4f79f425f  ./usr/share/doc/libpng2/changelog.gz
 54119d0a36cff7d0822489193119fc83  ./usr/share/doc/libpng2/ANNOUNCE.gz
 ebe766baed86109342285496d792d3ef  ./usr/share/doc/libpng2/KNOWNBUG.gz
-9371022fb0313ab0b2062202383c57ec  ./usr/share/doc/libpng2/changelog.Debian.gz
+3f9dfa57c390b6465b655e12f4b3490a  ./usr/share/doc/libpng2/changelog.Debian.gz
 27164cfa4772e8424149aaa801119ead  ./usr/lib/libpng.so.2.1.0.12
$ diff -u <(zcat 1/usr/share/doc/libpng2/changelog.Debian.gz) <(zcat 
2/usr/share/doc/libpng2/changelog.Debian.gz)
$

It looks like that the two binary packages were built on different places but
have basically the same content.

Gabor




Re: Initrd rocks! (was Re: Backporting 2.4.23 kernel packages)

2003-12-11 Thread Gabor Burjan
On Wed, Dec 10, 2003 at 09:32:16AM +1100, Brian May wrote:

> I believe the kernel raid1 autodetection only works if raid1 is
> compiled into the kernel.
> 
> In anycase, initrd images generated from mkinitrd in Debian do not
> autodetect.

It is possible to invite the autodetection from initrd using the
appropriate ioctl.  Our not too elegant solution is available here:

http://debian.caesar.elte.hu/dists/woody/itk/source/initrd-raid-autorun_0.2.dsc
http://debian.caesar.elte.hu/dists/woody/itk/source/initrd-raid-autorun_0.2.tar.gz

This contains a script which hooks the automagically generated ramdisk
during the build phase.

Gabor