diff options
Diffstat (limited to 'target/linux/orion/base-files')
-rw-r--r-- | target/linux/orion/base-files/etc/hotplug.d/usb/10-usb | 54 | ||||
-rw-r--r-- | target/linux/orion/base-files/etc/uci-defaults/10-network | 53 |
2 files changed, 0 insertions, 107 deletions
diff --git a/target/linux/orion/base-files/etc/hotplug.d/usb/10-usb b/target/linux/orion/base-files/etc/hotplug.d/usb/10-usb deleted file mode 100644 index 5572dae..0000000 --- a/target/linux/orion/base-files/etc/hotplug.d/usb/10-usb +++ /dev/null @@ -1,54 +0,0 @@ -#!/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 diff --git a/target/linux/orion/base-files/etc/uci-defaults/10-network b/target/linux/orion/base-files/etc/uci-defaults/10-network deleted file mode 100644 index 3baa679..0000000 --- a/target/linux/orion/base-files/etc/uci-defaults/10-network +++ /dev/null @@ -1,53 +0,0 @@ -config_simple() { -cat >> /etc/config/network <<EOF -config interface lan - option ifname eth0 - option type bridge - option proto static - option ipaddr 192.168.1.1 - option netmask 255.255.255.0 - option ip6assign 60 -EOF -} - -config_dsa() { -cat >> /etc/config/network <<EOF -config interface eth0 - option ifname eth0 - -config interface wan - option ifname wan - option proto dhcp - option hostname openwrt - -config interface lan - option ifname "lan1 lan2 lan3 lan4" - option type bridge - option proto static - option ipaddr 192.168.1.1 - option netmask 255.255.255.0 - option ip6assign 60 - -config interface wan6 - option ifname @wan - option proto dhcpv6 - -config globals globals - option ula_prefix auto -EOF -} - -cat > /etc/config/network <<EOF -config interface loopback - option ifname lo - option proto static - option ipaddr 127.0.0.1 - option netmask 255.0.0.0 - -EOF - -if grep -q lan /proc/net/dev; then - config_dsa -else - config_simple -fi |