0015-ar71xx-assign-proper-GPIO-pin-for-Ubiquiti-Nanostation-models.patch 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. From: Matthias Schiffer <mschiffer@universe-factory.net>
  2. Date: Mon, 7 Mar 2016 06:07:59 +0100
  3. Subject: ar71xx: assign proper GPIO pin for Ubiquiti Nanostation models
  4. The GPIO pins for "POE passthrough" of Ubiquiti Nanostation models are the
  5. following:
  6. * Ubiquiti Nanostation M XM: Pin 8
  7. * Ubiquiti Nanostation M XW: Pin 2
  8. The previous definition of the pins was mixed up between XM and XW model.
  9. Signed-off-by: Lars Kruse <lists@sumpfralle.de>
  10. Backport of r46922
  11. 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
  12. index 81d3982ed8bf98e01ce2e161017f088a1d0f60dc..b41f27554b1e3eac19c22af59731771631a1135b 100644
  13. --- a/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches
  14. +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches
  15. @@ -10,10 +10,10 @@ board=$(ar71xx_board_name)
  16. case "$board" in
  17. nanostation-m)
  18. - ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "2"
  19. + ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "8"
  20. ;;
  21. nanostation-m-xw)
  22. - ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "8"
  23. + ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "2"
  24. ;;
  25. cpe510)
  26. ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "20"