[openwrt/openwrt] lantiq/xrx200: make WLAN button responsive on Fritzbox 7360 & 7362

LEDE Commits lede-commits at lists.infradead.org
Thu Jul 23 11:42:29 EDT 2020


adrian pushed a commit to openwrt/openwrt.git, branch openwrt-19.07:
https://git.openwrt.org/a785aed70ea6f60d543faa6e44193981fbe9cbe5

commit a785aed70ea6f60d543faa6e44193981fbe9cbe5
Author: Dustin Gathmann <dzsoftware at posteo.org>
AuthorDate: Mon Jul 20 00:07:44 2020 +0200

    lantiq/xrx200: make WLAN button responsive on Fritzbox 7360 & 7362
    
    Pressing the 'WLAN' button should enable/disable wireless activity.
    Currently, the button is mapped to the KEY_WLAN, which will not
    have this effect.
    This patch changes the mapping of the WLAN button, so a button
    press will emit an action for the 'rfkill' key instead of 'wlan'.
    Apparently, this is what stock OpenWRT expects.
    
    This fix is analogous to the preceding patch for Fritzbox 3370.
    
    Signed-off-by: Dustin Gathmann <dzsoftware at posteo.org>
    (cherry picked from commit d5a148f5c8f6d6dee7041fd348bd0f52839d0f4e)
---
 target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ736X.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ736X.dtsi b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ736X.dtsi
index 8ed23deb44..6e8103916f 100644
--- a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ736X.dtsi
+++ b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/FRITZ736X.dtsi
@@ -40,7 +40,7 @@
 		wifi {
 			label = "wifi";
 			gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
-			linux,code = <KEY_WLAN>;
+			linux,code = <KEY_RFKILL>;
 		};
 	};
 



More information about the lede-commits mailing list