2010.08.11. 22:13 keltezéssel, Antonio Anselmi írta:
> I want re-introduce and confirm the patch from Xavier Martinez which
> allow to enable/disable the PoE passthrough in NanoStation-M5
> (disabled per default).
> I just compiled it on r22566, branch backfire, and it works like a
> charm. You can disable or disable the feature by issuing:
> 
> echo 1 > /sys/class/leds/ubnt\:poe/brightness
> echo 0 > /sys/class/leds/ubnt\:poe/brightness
>
> --- a/arch/mips/ar71xx/mach-ubnt.c    2010-08-04 11:25:28.000000000 +0200
> +++ b/arch/mips/ar71xx/mach-ubnt.c    2010-08-11 16:52:15.000000000 +0200
> @@ -37,6 +37,7 @@
>  #define UBNT_M_GPIO_LED_L3   11
>  #define UBNT_M_GPIO_LED_L4   7
>  #define UBNT_M_GPIO_BTN_RESET        12
> +#define UBNT_M_GPIO_POE 8
> 
>  #define UBNT_BUTTONS_POLL_INTERVAL   20
> 
> @@ -97,6 +98,10 @@
>               .name           = "ubnt:green:link4",
>               .gpio           = UBNT_M_GPIO_LED_L4,
>               .active_low     = 0,
> +   }, {
> +      .name        = "ubnt:poe",
> +      .gpio        = UBNT_M_GPIO_POE,
> +      .active_low    = 0,            
>       }
>  };

NACK.

This GPIO line is not connected to any LED, it does not even control anything on
the other devices from the M series.

Additionally, you can use the sysfs interface to control the GPIO line without
any patch:

echo 8 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio8/direction
echo 1 > /sys/class/gpio/gpio8/value

Regards,
Gabor
_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to