Same problem still exists on Asus A8F in Natty. I still have to fix/add
the scripts

/etc/acpi/events/asus-wireless
==============
event=hotkey (ATKD|HOTK) 0000005d
 action=/etc/acpi/asus-wireless.sh
==============

/etc/acpi/asus-wireless.sh
==============
#!/bin/sh
# Find and toggle wireless devices on Asus laptops

test -f /usr/share/acpi-support/state-funcs || exit 0

. /usr/share/acpi-support/state-funcs

toggleAllWirelessStates;

# Update the Asus LED to reflect the new status of the wireless
! isAnyWirelessPoweredOn;
setLEDAsusWireless $?
==============

and even add the section to file 
/usr/share/acpi-support/state-funcs
at the very end of it:

==============
# Pass '1' to light LED and '0' to dark LED – added back in by donatas
setLEDAsusWireless()
{
    action=`test "$1" -ne 0 && echo 1 || echo 0`

    # (Older) asus-acpi module
    test -w /proc/acpi/asus/wled && echo -n "$action" > /proc/acpi/asus/wled

    # (Newer) asus-laptop module
    test -w /sys/devices/platform/asus_laptop/wlan && echo -n "$action" > 
/sys/devices/platform/asus_laptop/wlan
}
==============

which was previously present in this file (in Karmic perhaps) but
removed since.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/451108

Title:
  Asus Wireless button not updating WLED

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to