https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c4 --- Comment #4 from Hammer Faceman <Warhammer@li.ru> 2011-03-14 11:44:11 UTC --- So, I have found out which component of a package "pm-utils" causes failure of my network card. The script /usr/lib/pm-utils/power.d/disable_wol. A temporary solution - manually modify this script like that: #!/bin/sh "${PM_FUNCTIONS}" command_exists ethtool || exit $NA set_wol_status() { for d in "/sys/class/net/"*; do [ -e "$d/wireless" ] && continue [ -h "$d/device/driver" ] || continue printf "Setting Wake On Lan for %s to %s..." "${d##*/}" "$1" case $1 in disable) ethtool -s "${d##*/}" wol d>/dev/null 2>&1;; enable) ethtool -s "${d##*/}" wol g>/dev/null 2>&1;; esac [ "$?" -eq 0 ] && echo Done. || echo Failed. done } do_nothing() { echo Done. } case $1 in true) do_nothing;; false) do_nothing;; *) exit $NA;; esac exit 0 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.