 da6fdce365
			
		
	
	da6fdce365
	
	
	
		
			
			Lantiq and IPQ806X (which includes IPQ40XX) both define the
same custom function {ipq806x|lantiq}_get_dt_led.
This patch moves the function into the base-file package at
lib/functions/leds.sh to make it more accessible for other
targets as well.
Cc: Mathias Kresin <dev@kresin.me>
Cc: John Crispin <john@phrozen.org>
Cc: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| # Copyright (C) 2013 OpenWrt.org
 | |
| 
 | |
| get_dt_led() {
 | |
| 	local label
 | |
| 	local ledpath
 | |
| 	local basepath="/proc/device-tree"
 | |
| 	local nodepath="$basepath/aliases/led-$1"
 | |
| 
 | |
| 	[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
 | |
| 	[ -n "$ledpath" ] && label=$(cat "$basepath$ledpath/label")
 | |
| 
 | |
| 	echo "$label"
 | |
| }
 | |
| 
 | |
| led_set_attr() {
 | |
| 	[ -f "/sys/class/leds/$1/$2" ] && echo "$3" > "/sys/class/leds/$1/$2"
 | |
| }
 | |
| 
 | |
| led_timer() {
 | |
| 	led_set_attr $1 "trigger" "timer"
 | |
| 	led_set_attr $1 "delay_on" "$2"
 | |
| 	led_set_attr $1 "delay_off" "$3"
 | |
| }
 | |
| 
 | |
| led_on() {
 | |
| 	led_set_attr $1 "trigger" "none"
 | |
| 	led_set_attr $1 "brightness" 255
 | |
| }
 | |
| 
 | |
| led_off() {
 | |
| 	led_set_attr $1 "trigger" "none"
 | |
| 	led_set_attr $1 "brightness" 0
 | |
| }
 | |
| 
 | |
| status_led_set_timer() {
 | |
| 	led_timer $status_led "$1" "$2"
 | |
| 	[ -n "$status_led2" ] && led_timer $status_led2 "$1" "$2"
 | |
| }
 | |
| 
 | |
| status_led_set_heartbeat() {
 | |
| 	led_set_attr $status_led "trigger" "heartbeat"
 | |
| }
 | |
| 
 | |
| status_led_on() {
 | |
| 	led_on $status_led
 | |
| 	[ -n "$status_led2" ] && led_on $status_led2
 | |
| }
 | |
| 
 | |
| status_led_off() {
 | |
| 	led_off $status_led
 | |
| 	[ -n "$status_led2" ] && led_off $status_led2
 | |
| }
 | |
| 
 | |
| status_led_blink_slow() {
 | |
| 	led_timer $status_led 1000 1000
 | |
| }
 | |
| 
 | |
| status_led_blink_fast() {
 | |
| 	led_timer $status_led 100 100
 | |
| }
 | |
| 
 | |
| status_led_blink_preinit() {
 | |
| 	led_timer $status_led 100 100
 | |
| }
 | |
| 
 | |
| status_led_blink_failsafe() {
 | |
| 	led_timer $status_led 50 50
 | |
| }
 | |
| 
 | |
| status_led_blink_preinit_regular() {
 | |
| 	led_timer $status_led 200 200
 | |
| }
 |