WiFi light on my Dell XPS m1530

I have a Dell XPS m1530 that I was running 10.3 on, but yesterday I formatted and installed 11.1 64 bit and everything is working great. There is one minor annoyance, the blue wifi light that dell put between my keyboard and monitor flashes whenever the wireless is in use. I have an Intel 4965AGN card and in 10.3 using the iwlwifi driver the light was off all the time (matter of fact I forgot that I had a light there…). I was wondering if there is any way to turn off this light in 11.1 or at the very least keep it from blinking all the time (short of opening up the computer and removing the led…).

Thanks,
Darren

nobled wrote:
> I have a Dell XPS m1530 that I was running 10.3 on, but yesterday I
> formatted and installed 11.1 64 bit and everything is working great.
> There is one minor annoyance, the blue wifi light that dell put between
> my keyboard and monitor flashes whenever the wireless is in use. I have
> an Intel 4965AGN card and in 10.3 using the iwlwifi driver the light was
> off all the time (matter of fact I forgot that I had a light there…).
> I was wondering if there is any way to turn off this light in 11.1 or at
> the very least keep it from blinking all the time (short of opening up
> the computer and removing the led…).

Try ‘sudo modprobe -rv rfkill_input’. If that works then add
rfkill_input to the blacklist. Note - without this module, your
wireless may not work at all. The code to manipulate the LED was
instituted to warn people that their wireless switch is off.

Larry

I don’t have a rfkill_input module. I ran “sudo lsmod | grep iwl” and here is the output:

iwlagn 98956 0
iwlcore 94612 1 iwlagn
rfkill 11044 2 iwlcore
led_class 5008 1 iwlcore
mac80211 242320 2 iwlagn,iwlcore
cfg80211 28200 3 iwlagn,iwlcore,mac80211

Thanks again,
Darren

I got it to stop flashing, but now it’s always on. This is probably good enough because it’s not as much of a distraction if it’s not flashing. I ran the following as root:

echo 0 > /sys/class/leds/iwl-phy0:radio/brightness

nobled wrote:
> I got it to stop flashing, but now it’s always on. This is probably
> good enough because it’s not as much of a distraction if it’s not
> flashing. I ran the following as root:
>
> echo 0 > /sys/class/leds/iwl-phy0:radio/brightness

Does

echo 1 > /sys/class/leds/iwl-phy0:radio/brightness

turn it off?

No, there is no noticeable difference between 1 and 255 (which is what the default value was).

I also noticed I posted the wrong file the command I had to run was actually:

echo 0 > /sys/class/leds/iwl-phy0:assoc/brightness

Hi

I have XPS M1330 and went from 10.3 to 11.1 64bit.

Also my wi-fi light came on (never worked on 10.3).

I dont mind it, just letting you know your not alone :slight_smile:

Anyone know if dell will offer linux on the new Studio XPS line?

ubuntu was an option on the current XPS laptops in the US.

I had the same problem on my HP 8710w after updating to opensuse 11.3 (with kernel 2.6.34). I found, however, which module causes the blinking ( iwlcore ). Then I checked what parameters has the module:

modinfo iwlcore

filename: /lib/modules/2.6.34-12-desktop/kernel/drivers/net/wireless/iwlwifi/iwlcore.ko
license: GPL
author: Copyright(c) 2003-2010 Intel Corporation <ilw@linux.intel.com>
version: in-tree:
description: iwl core
srcversion: 4D015249F796675130481E8
depends: cfg80211,mac80211
vermagic: 2.6.34-12-desktop SMP preempt mod_unload modversions
parm: led_mode:led mode: 0=blinking, 1=On(RF On)/Off(RF Off), (default 0)
(int)

parm: no_sleep_autoadjust:don’t automatically adjust sleep level according to maximum network latency (bool)
parm: bt_coex_active:enable wifi/bluetooth co-exist
(bool)

Finally, it was easy to add the following to /etc/modprobe.d/99-local.conf:

options iwlcore led_mode=1

IMHO, this is the best solution, because I don’t have /sys/class/leds/something and one does not need to create some special scripts.

I hope this helps anyone having this annoying problem. I also think, that the opensuse guys should remove the blinking from the default setup, as it can nearly drive you crazy.

Cheers!

Thanks! it work well on my dell xps 1530

**add the following to /etc/modprobe.d/99-local.conf:
options iwlcore led_mode=1
**
that is the point

This rocks! Thanks!
(HP Compaq 6710b)