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:
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