From f2b885d82e6e7859f7cc32b557bbd80735e32b47 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Mon, 6 Feb 2017 20:23:48 +0100 Subject: [PATCH] bcm53xx: set Netgear R8000 USB LEDs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Miłecki --- .../bcm53xx/base-files/etc/board.d/01_leds | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 target/linux/bcm53xx/base-files/etc/board.d/01_leds diff --git a/target/linux/bcm53xx/base-files/etc/board.d/01_leds b/target/linux/bcm53xx/base-files/etc/board.d/01_leds new file mode 100755 index 0000000000..ebfe363fc1 --- /dev/null +++ b/target/linux/bcm53xx/base-files/etc/board.d/01_leds @@ -0,0 +1,18 @@ +#!/bin/sh + +. /lib/functions/uci-defaults.sh + +board_config_update + +board=$(cat /proc/device-tree/compatible | tr '\0' '\t' | cut -f 1) + +case "$board" in +netgear,r8000) + ucidef_set_led_usbport "usb2" "USB 2.0" "bcm53xx:white:usb2" "usb1-port2" "usb2-port2" + ucidef_set_led_usbport "usb3" "USB 3.0" "bcm53xx:white:usb3" "usb1-port1" "usb2-port1" "usb4-port1" + ;; +esac + +board_config_flush + +exit 0 -- 2.30.2