From ed55318df19155dd36c30bb1761b1137b8c46fb4 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Wed, 8 Jul 2015 14:25:52 +0000 Subject: base-files: implemented basic GPIO control Internal GPIO pins are used for PoE passthrough setups in multi-port routers. This patch implemnets control over this hardware feature for Ubiquiti Nanostations and TP-Link CPE510. Signed-off-by: Lars Kruse git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46271 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../base-files/etc/uci-defaults/01_gpio-switches | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches (limited to 'target/linux/ar71xx/base-files/etc') diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches b/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches new file mode 100644 index 0000000000..81d3982ed8 --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Copyright (C) 2015 OpenWrt.org +# + +. /lib/functions/uci-defaults.sh +. /lib/ar71xx.sh + +board=$(ar71xx_board_name) + +case "$board" in +nanostation-m) + ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "2" + ;; +nanostation-m-xw) + ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "8" + ;; +cpe510) + ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "20" + ;; +esac + +ucidef_commit_gpio_switches + +exit 0 -- cgit v1.2.3