From 5c105d9f3fd086aff195d3849dcf847d6b0bd927 Mon Sep 17 00:00:00 2001 From: blogic Date: Fri, 5 Oct 2012 10:12:53 +0000 Subject: branch Attitude Adjustment git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@33625 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../base-files/etc/hotplug.d/button/10-generic.sh | 22 ++++++ .../etc/hotplug.d/firmware/10-rt2x00-eeprom | 41 ++++++++++ target/linux/lantiq/base-files/etc/inittab | 4 + .../linux/lantiq/base-files/etc/uci-defaults/leds | 58 +++++++++++++++ .../lantiq/base-files/etc/uci-defaults/network | 87 ++++++++++++++++++++++ 5 files changed, 212 insertions(+) create mode 100644 target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh create mode 100644 target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom create mode 100644 target/linux/lantiq/base-files/etc/inittab create mode 100755 target/linux/lantiq/base-files/etc/uci-defaults/leds create mode 100755 target/linux/lantiq/base-files/etc/uci-defaults/network (limited to 'target/linux/lantiq/base-files/etc') diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh b/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh new file mode 100644 index 000000000..b2fdda23f --- /dev/null +++ b/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +[ "${ACTION}" = "released" ] || exit 0 + +. /lib/functions.sh + +case "${BUTTON}" in + BTN_0) + logger "reset pressed" + sync + reboot + ;; + BTN_1) + logger "factory pressed" + jffs2_mark_erase "rootfs_data" + sync + reboot + ;; + *) + logger "unknown button ${BUTTON}" + ;; +esac diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom new file mode 100644 index 000000000..1eee55e22 --- /dev/null +++ b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom @@ -0,0 +1,41 @@ +#!/bin/sh +# based on gabors ralink wisoc implementation + +rt2x00_eeprom_die() { + echo "rt2x00 eeprom: " "$*" + exit 1 +} + +rt2x00_eeprom_extract() { + local part=$1 + local offset=$2 + local count=$3 + local mtd + + . /etc/functions.sh + + mtd=$(find_mtd_part $part) + [ -n "$mtd" ] || \ + rt2x00_eeprom_die "no mtd device found for partition $part" + + dd if=$mtd of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count || \ + rt2x00_eeprom_die "failed to extract from $mtd" +} + +[ -e /lib/firmware/$FIRMWARE ] && exit 0 + +. /lib/lantiq.sh + +case "$FIRMWARE" in +"RT2860.eeprom" ) + local board=$(lantiq_board_name) + case $board in + ARV7525PW|ARV752DPW) + rt2x00_eeprom_extract "board_config" 1040 272 + ;; + *) + rt2x00_eeprom_die "board $board is not supported yet" + ;; + esac + ;; +esac diff --git a/target/linux/lantiq/base-files/etc/inittab b/target/linux/lantiq/base-files/etc/inittab new file mode 100644 index 000000000..96afec9e7 --- /dev/null +++ b/target/linux/lantiq/base-files/etc/inittab @@ -0,0 +1,4 @@ +::sysinit:/etc/init.d/rcS S boot +::shutdown:/etc/init.d/rcS K stop +ttyLTQ0::askfirst:/bin/ash --login +ttyLTQ1::askfirst:/bin/ash --login diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/leds b/target/linux/lantiq/base-files/etc/uci-defaults/leds new file mode 100755 index 000000000..64b080f33 --- /dev/null +++ b/target/linux/lantiq/base-files/etc/uci-defaults/leds @@ -0,0 +1,58 @@ +#!/bin/sh +# +# Copyright (C) 2011 OpenWrt.org +# based on ar71xx +# + +. /lib/functions/uci-defaults.sh +. /lib/lantiq.sh + +board=$(lantiq_board_name) + +case "$board" in +ARV4520PW|ARV452CPW) + ucidef_set_led_netdev "wifi" "wifi" "soc:blue:wifi" "wlan0" + ucidef_set_led_usbdev "usb" "USB" "soc:blue:usb" "1-1" + ucidef_set_led_default "fxs1" "fxs1" "soc:blue:fxs1" "1" + ucidef_set_led_default "fxs2" "fxs2" "soc:blue:fxs2" "1" + ucidef_set_led_default "online" "online" "soc:blue:internet" "1" + ;; + +ARV7525PW) + ucidef_set_led_netdev "wifi" "wifi" "soc:green:wifi" "wlan0" + ucidef_set_led_default "fxs1" "fxs1" "soc:green:fxs1" "1" + ucidef_set_led_default "fxs2" "fxs2" "soc:green:fxs2" "1" + ucidef_set_led_default "dsl" "dsl" "soc:red:dsl" "1" + ucidef_set_led_default "online" "online" "soc:green:online" "1" + ;; + +ARV4525PW) + ucidef_set_led_netdev "wifi" "wifi" "soc:green:wifi" "wlan0" + ucidef_set_led_default "fxs1" "fxs1" "soc:green:fxs1" "1" + ucidef_set_led_default "fxs2" "fxs2" "soc:green:fxs2" "1" + ucidef_set_led_default "dsl" "dsl" "soc:green:dsl" "1" + ucidef_set_led_default "online" "online" "soc:green:online" "1" + ;; + +GIGASX76X) + ucidef_set_led_wlan "wifi" "wifi" "soc:green:wifi" "phy0radio" + ucidef_set_led_netdev "online" "online" "soc:green:online" "pppoe-wan" + ucidef_set_led_usbdev "usb" "USB" "soc:green:usb" "1-1" + ;; + +ARV4519PW) + ucidef_set_led_wlan "wifi" "wifi" "soc:green:wifi" "phy0radio" + ucidef_set_led_netdev "internet" "internet" "soc:green:internet" "pppoe-wan" + ucidef_set_led_usbdev "usb" "USB" "soc:green:usb" "1-1" + ;; + +ARV7518PW) + ucidef_set_led_wlan "wifi" "wifi" "soc:green:wifi" "phy0radio" + ucidef_set_led_netdev "internet" "internet" "soc:green:internet" "pppoe-wan" + ucidef_set_led_usbdev "usb" "USB" "soc:green:usb" "1-1" + ;; +esac + +ucidef_commit_leds + +exit 0 diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/network b/target/linux/lantiq/base-files/etc/uci-defaults/network new file mode 100755 index 000000000..b40134d93 --- /dev/null +++ b/target/linux/lantiq/base-files/etc/uci-defaults/network @@ -0,0 +1,87 @@ +#!/bin/sh +# +# Copyright (C) 2011-2012 OpenWrt.org +# + +[ -e /etc/config/network ] && exit 0 + +set_atm_wan() { + local vpi=$1 + local vci=$2 + local encaps=$3 + local payload=$4 + uci batch <