From: Álvaro Fernández Rojas Date: Sun, 26 Mar 2023 12:38:41 +0000 (+0200) Subject: bmips: sercomm,h500-s: add Quantenna gpio switch X-Git-Tag: v23.05.0-rc1~628 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=741780bd938e39a69d757e82d7474ed004dfe9fc;p=openwrt%2Fopenwrt.git bmips: sercomm,h500-s: add Quantenna gpio switch Sercomm H500-s has a Quantenna SoC for external wifi which can be activated or deactivated through GPIO #20. Signed-off-by: Álvaro Fernández Rojas --- diff --git a/target/linux/bmips/nand/base-files/etc/board.d/03_gpio_switches b/target/linux/bmips/nand/base-files/etc/board.d/03_gpio_switches new file mode 100644 index 0000000000..75ac111b0c --- /dev/null +++ b/target/linux/bmips/nand/base-files/etc/board.d/03_gpio_switches @@ -0,0 +1,16 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +. /lib/functions/uci-defaults.sh + +board_config_update + +case "$(board_name)" in +sercomm,h500-s-lowi |\ +sercomm,h500-s-vfes) + ucidef_add_gpio_switch "qtn_power" "Quantenna Module Power" "480" "1" + ;; +esac + +board_config_flush + +exit 0