
Hello community, here is the log from the commit of package udev checked in at Fri Nov 28 16:07:27 CET 2008. -------- --- udev/udev.changes 2008-11-17 14:52:33.000000000 +0100 +++ udev/udev.changes 2008-11-26 15:47:19.624646000 +0100 @@ -1,0 +2,8 @@ +Fri Nov 21 20:52:36 CET 2008 - kay.sievers@novell.com + +- fix fibre channel path_id handling (bnc#447275) +- load floppy module on ancient systems (bnc#439170) +- do not probe s390 btibm tapes (bnc#448340) +- cciss rule fix (bnc#449110) + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- udev-cciss.rules udev-path_id-fc.patch udev-s390-tape.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ udev.spec ++++++ --- /var/tmp/diff_new_pack.u31184/_old 2008-11-28 16:06:56.000000000 +0100 +++ /var/tmp/diff_new_pack.u31184/_new 2008-11-28 16:06:56.000000000 +0100 @@ -21,7 +21,7 @@ Name: udev Url: http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html Version: 128 -Release: 8 +Release: 9 License: GPL v2 or later Group: System/Kernel Summary: A Rule-Based Device Node and Kernel Event Manager @@ -45,6 +45,9 @@ Patch18: volume_id-fix-logging.patch Patch19: udev-mdadm-3-names.patch Patch20: udev-delete-uevent_seqnum.patch +Patch21: udev-path_id-fc.patch +Patch22: udev-s390-tape.patch +Patch23: udev-cciss.rules %description udev's main task is to create and remove device nodes in /dev when a @@ -139,6 +142,9 @@ %patch18 -p1 %patch19 -p1 %patch20 -p1 +%patch21 -p1 +%patch22 -p1 +%patch23 -p1 %build # prevent man pages from re-building (xmlto) @@ -322,6 +328,11 @@ /%{_lib}/libvolume_id.so.* %changelog +* Fri Nov 21 2008 kay.sievers@novell.com +- fix fibre channel path_id handling (bnc#447275) +- load floppy module on ancient systems (bnc#439170) +- do not probe s390 btibm tapes (bnc#448340) +- cciss rule fix (bnc#449110) * Mon Nov 17 2008 kay.sievers@novell.com - fix "delete /dev/.udev/uevent_seqnum" patch (bnc#444636) * Wed Nov 05 2008 kay.sievers@novell.com ++++++ pnp-aliases ++++++ --- /var/tmp/diff_new_pack.u31184/_old 2008-11-28 16:06:57.000000000 +0100 +++ /var/tmp/diff_new_pack.u31184/_new 2008-11-28 16:06:57.000000000 +0100 @@ -2,3 +2,4 @@ # installed by udev alias acpi*:PNP0700:* floppy +alias pnp:dPNP0700 floppy ++++++ udev-cciss.rules ++++++ --- a/rules/rules.d/60-persistent-storage.rules +++ b/rules/rules.d/60-persistent-storage.rules @@ -33,9 +33,9 @@ KERNEL=="hd*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}!="?*", SUBSYSTEMS=="usb", IMPORT{program}="usb_id --export %p" KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted -d $tempnode", ENV{ID_BUS}="scsi" -KERNEL=="cciss?c[0-9]d[0-9]*", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted -d $tempnode", ENV{ID_BUS}="cciss" -KERNEL=="sd*[!0-9]|sr*|cciss?c[0-9]d[0-9]*", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}" -KERNEL=="sd*[0-9]|cciss*p[0-9]*", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n" +KERNEL=="cciss*", ENV{DEVTYPE}=="disk", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted -d $tempnode", ENV{ID_BUS}="cciss" +KERNEL=="sd*|sr*|cciss*", ENV{DEVTYPE}=="disk", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}" +KERNEL=="sd*|cciss*", ENV{DEVTYPE}=="partition", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n" # firewire KERNEL=="sd*[!0-9]|sr*", ATTRS{ieee1394_id}=="?*", SYMLINK+="disk/by-id/ieee1394-$attr{ieee1394_id}" ++++++ udev-path_id-fc.patch ++++++ diff --git a/extras/path_id/path_id b/extras/path_id/path_id index 0fad30c..f7b1435 100755 --- a/extras/path_id/path_id +++ b/extras/path_id/path_id @@ -254,7 +254,7 @@ handle_fc () { fc_tgt_lun="${fc_tgt_hcil##*:}" fc_tgt_path="${DEV%/*}" fc_tgt_num="${fc_tgt_path##*/}" - fc_tgt_dev="${fc_tgt_path}/fc_transport:${fc_tgt_num}" + fc_tgt_dev="${fc_tgt_path}/fc_transport/${fc_tgt_num}" if [ -e "$fc_tgt_dev/port_name" ]; then read wwpn < $fc_tgt_dev/port_name fi ++++++ udev-s390-tape.patch ++++++ commit 1f911d94ff6b77511fa4ae37b42eeb5debc22bc1 Author: Kay Sievers <kay.sievers@vrfy.org> Date: Tue Nov 25 15:30:18 2008 +0100 s390 tape diff --git a/rules/rules.d/60-persistent-storage.rules b/rules/rules.d/60-persistent-storage.rules index dec83cf..65dbbb4 100644 --- a/rules/rules.d/60-persistent-storage.rules +++ b/rules/rules.d/60-persistent-storage.rules @@ -10,7 +10,7 @@ ACTION!="add|change", GOTO="persistent_storage_end" SUBSYSTEM!="block", GOTO="persistent_storage_end" # skip rules for inappropriate block devices -KERNEL=="ram*|loop*|fd*|nbd*|gnbd*|dm-*|md*", GOTO="persistent_storage_end" +KERNEL=="ram*|loop*|fd*|nbd*|gnbd*|dm-*|md*|btibm*", GOTO="persistent_storage_end" # never access non-cdrom removable ide devices, the drivers are causing event loops on open() KERNEL=="hd*[!0-9]", ATTR{removable}=="1", DRIVERS=="ide-cs|ide-floppy", GOTO="persistent_storage_end" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de