tags 498504 patch tags 498686 patch thanks Patch for this two problems.
Bastian -- It would be illogical to assume that all conditions remain stable. -- Spock, "The Enterprise Incident", stardate 5027.3
diff -u udev-0.125/extra/initramfs.hook udev-0.125/extra/initramfs.hook --- udev-0.125/extra/initramfs.hook +++ udev-0.125/extra/initramfs.hook @@ -23,12 +23,12 @@ fi -copy_exec /sbin/udevd -copy_exec /sbin/udevadm -copy_exec /sbin/udevsettle +copy_exec /sbin/udevd /sbin +copy_exec /sbin/udevadm /sbin +copy_exec /sbin/udevsettle /sbin mkdir -p $DESTDIR/lib/udev/ cp /lib/udev/hotplug.functions $DESTDIR/lib/udev/ for program in /lib/udev/*_id; do - copy_exec $program + copy_exec $program /lib/udev done diff -u udev-0.125/debian/changelog udev-0.125/debian/changelog --- udev-0.125/debian/changelog +++ udev-0.125/debian/changelog @@ -1,3 +1,12 @@ +udev (0.125-6.1) UNRELEASED; urgency=high + + * Non-maintainer upload. + * Ignore s390 ccwgroup network devices for persistent names again. + (closes: #498504) + * Support the Etch initramfs-tools interface. (closes: #498686) + + -- Bastian Blank <[EMAIL PROTECTED]> Fri, 12 Sep 2008 11:08:12 +0200 + udev (0.125-6) unstable; urgency=high * Re-add support for scsi_id -s, this time for real. (Closes: #493075) diff -u udev-0.125/debian/patches/series udev-0.125/debian/patches/series --- udev-0.125/debian/patches/series +++ udev-0.125/debian/patches/series @@ -8,0 +9 @@ +rules-net-s390 only in patch2: unchanged: --- udev-0.125.orig/debian/patches/rules-net-s390 +++ udev-0.125/debian/patches/rules-net-s390 @@ -0,0 +1,22 @@ +--- udev-0.125.orig/rules/debian/75-persistent-net-generator.rules ++++ udev-0.125/rules/debian/75-persistent-net-generator.rules +@@ -45,10 +45,6 @@ + # ibmveth interfaces have stable locally administered MAC addresses + SUBSYSTEMS=="ibmveth", ENV{MATCHADDR}="$attr{address}" + +-# S/390 interfaces are matched only by id +-SUBSYSTEMS=="ccwgroup", \ +- ENV{MATCHDRV}="$driver", ENV{MATCHID}="$id", ENV{MATCHADDR}="" +- + # terminate processing if there are not enough conditions to create a rule + ENV{MATCHADDR}=="", ENV{MATCHID}=="", ENV{INTERFACE_NAME}=="", \ + GOTO="persistent_net_generator_end" +@@ -61,8 +57,6 @@ + ENV{COMMENT}="PCMCIA device $attr{card_id}:$attr{manf_id}" + SUBSYSTEMS=="usb", \ + ENV{COMMENT}="USB device 0x$attr{idVendor}:0x$attr{idProduct}" +-SUBSYSTEMS=="ccwgroup", \ +- ENV{COMMENT}="S/390 device at $id" + SUBSYSTEMS=="ibmveth", \ + ENV{COMMENT}="LPAR virtual device at $id" + SUBSYSTEMS=="ieee1394", \