Author: jow Date: 2015-12-04 16:02:42 +0100 (Fri, 04 Dec 2015) New Revision: 47763
Added: trunk/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches Removed: trunk/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches Log: ar71xx: convert gpio switch config to board.d Signed-off-by: Jo-Philipp Wich <[email protected]> Added: trunk/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches =================================================================== --- trunk/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches (rev 0) +++ trunk/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches 2015-12-04 15:02:42 UTC (rev 47763) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Copyright (C) 2015 OpenWrt.org +# + +. /lib/functions/uci-defaults-new.sh +. /lib/ar71xx.sh + +board_config_update + +board=$(ar71xx_board_name) + +case "$board" in +nanostation-m) + ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "8" + ;; +nanostation-m-xw) + ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "2" + ;; +cpe510) + ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "20" + ;; +esac + +board_config_flush + +exit 0 Property changes on: trunk/target/linux/ar71xx/base-files/etc/board.d/03_gpio_switches ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Deleted: trunk/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches =================================================================== --- trunk/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches 2015-12-04 15:02:32 UTC (rev 47762) +++ trunk/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches 2015-12-04 15:02:42 UTC (rev 47763) @@ -1,25 +0,0 @@ -#!/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" "8" - ;; -nanostation-m-xw) - ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "2" - ;; -cpe510) - ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "20" - ;; -esac - -ucidef_commit_gpio_switches - -exit 0 _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
