lantiq/xrx200: make WLAN button responsive on Fritzbox 3370
Pressing the 'WLAN' button should enable/disable wireless activity. However, on the Fritzbox 3370 this doesn't have an effect. This patch changes the mapping of the physical WLAN button, so a button press will emit an action for the 'rfkill' key instead of 'wlan'. Apparently, this is what stock OpenWRT expects, and also what is implemented for most other devices. Signed-off-by: Dustin Gathmann <dzsoftware@posteo.org>
This commit is contained in:
parent
211548c523
commit
a53bf63756
@ -45,7 +45,7 @@
|
|||||||
wifi {
|
wifi {
|
||||||
label = "wlan";
|
label = "wlan";
|
||||||
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
||||||
linux,code = <KEY_WLAN>;
|
linux,code = <KEY_RFKILL>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
wifi {
|
wifi {
|
||||||
label = "wlan";
|
label = "wlan";
|
||||||
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
||||||
linux,code = <KEY_WLAN>;
|
linux,code = <KEY_RFKILL>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user