mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
Switch Marvell Orion CPU to kernel 2.6.32 plus LED support for all LEDs
on LinkSys WRT350Nv2. Signed-off by: Matthias Buecher <mail@maddes.net> and Dirk Teurlings <info@upexia.nl> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20185 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
54
target/linux/orion/base-files/etc/hotplug.d/usb/10-usb
Normal file
54
target/linux/orion/base-files/etc/hotplug.d/usb/10-usb
Normal file
@@ -0,0 +1,54 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2009-2010 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
usb_led=''
|
||||
usb_device=''
|
||||
|
||||
led_set_attr() {
|
||||
[ -f "/sys/class/leds/$1/$2" ] && echo "$3" > "/sys/class/leds/$1/$2"
|
||||
}
|
||||
|
||||
usb_led_set_timer() {
|
||||
led_set_attr "${usb_led}" 'trigger' 'timer'
|
||||
led_set_attr "${usb_led}" 'delay_on' "$1"
|
||||
led_set_attr "${usb_led}" 'delay_off' "$2"
|
||||
}
|
||||
|
||||
usb_led_on() {
|
||||
led_set_attr "${usb_led}" 'trigger' 'none'
|
||||
led_set_attr "${usb_led}" 'brightness' 255
|
||||
}
|
||||
|
||||
usb_led_off() {
|
||||
led_set_attr "${usb_led}" 'trigger' 'none'
|
||||
led_set_attr "${usb_led}" 'brightness' 0
|
||||
}
|
||||
|
||||
get_usb_led() {
|
||||
local hardware=`sed -n /Hardware/s/.*:.//p /proc/cpuinfo`
|
||||
|
||||
case "${hardware}" in
|
||||
'Linksys WRT350N v2')
|
||||
usb_led='wrt350nv2:green:usb'
|
||||
usb_device='1-1:1.0'
|
||||
;;
|
||||
esac;
|
||||
}
|
||||
|
||||
get_usb_led
|
||||
|
||||
case "${ACTION}" in
|
||||
add)
|
||||
# update LEDs
|
||||
[ "${usb_device}" = "${DEVICENAME}" ] && usb_led_on
|
||||
;;
|
||||
remove)
|
||||
# update LEDs
|
||||
[ "${usb_device}" = "${DEVICENAME}" ] && usb_led_off
|
||||
;;
|
||||
esac
|
||||
37
target/linux/orion/base-files/etc/uci-defaults/hardware
Normal file
37
target/linux/orion/base-files/etc/uci-defaults/hardware
Normal file
@@ -0,0 +1,37 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2010 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
#
|
||||
# This script sets system defaults for the hardware on firstboot
|
||||
#
|
||||
|
||||
local hardware=`sed -n /Hardware/s/.*:.//p /proc/cpuinfo`
|
||||
|
||||
wrt350nv2_default() {
|
||||
# leds
|
||||
uci batch <<__EOF
|
||||
set system.power_led=led
|
||||
set system.power_led.name='Power LED (green)'
|
||||
set system.power_led.sysfs='wrt350nv2:green:power'
|
||||
set system.power_led.default='1'
|
||||
set system.wifi_led=led
|
||||
set system.wifi_led.name='Wireless LED (green)'
|
||||
set system.wifi_led.sysfs='wrt350nv2:green:wireless'
|
||||
set system.wifi_led.trigger='netdev'
|
||||
set system.wifi_led.dev='wlan0'
|
||||
set system.wifi_led.mode='link tx rx'
|
||||
set system.wifi_led.default='0'
|
||||
commit system
|
||||
__EOF
|
||||
}
|
||||
|
||||
case "${hardware}" in
|
||||
'Linksys WRT350N v2')
|
||||
wrt350nv2_default
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user