aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/rt3883/base-files
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/ramips/rt3883/base-files')
-rwxr-xr-xtarget/linux/ramips/rt3883/base-files/etc/board.d/01_leds35
-rwxr-xr-xtarget/linux/ramips/rt3883/base-files/etc/board.d/02_network100
-rw-r--r--target/linux/ramips/rt3883/base-files/lib/preinit/04_handle_checksumming32
-rwxr-xr-xtarget/linux/ramips/rt3883/base-files/lib/upgrade/platform.sh20
4 files changed, 187 insertions, 0 deletions
diff --git a/target/linux/ramips/rt3883/base-files/etc/board.d/01_leds b/target/linux/ramips/rt3883/base-files/etc/board.d/01_leds
new file mode 100755
index 0000000000..8502c8f417
--- /dev/null
+++ b/target/linux/ramips/rt3883/base-files/etc/board.d/01_leds
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+. /lib/functions/leds.sh
+. /lib/functions/uci-defaults.sh
+
+set_wifi_led() {
+ ucidef_set_led_netdev "wifi_led" "wifi" "${1}" "${2:-wlan0}"
+}
+
+
+board=$(board_name)
+boardname="${board##*,}"
+
+board_config_update
+
+led_wlan="$(get_dt_led wlan)"
+[ -n "$led_wlan" ] && ucidef_set_led_wlan "wifi_led" "wifi" "$led_wlan" "phy0tpt"
+
+case $board in
+belkin,f9k1109v1)
+ set_usb_led "$boardname:green:usb1"
+ ucidef_set_led_netdev "lan" "lan" "$boardname:blue:wps" "eth0"
+ ;;
+edimax,br-6475nd)
+ set_wifi_led "$boardname:amber:wlan"
+ ;;
+omnima,hpm)
+ ucidef_set_led_netdev "eth" "ETH" "$boardname:green:eth" "eth0"
+ set_wifi_led "$boardname:green:wifi"
+ ;;
+esac
+
+board_config_flush
+
+exit 0
diff --git a/target/linux/ramips/rt3883/base-files/etc/board.d/02_network b/target/linux/ramips/rt3883/base-files/etc/board.d/02_network
new file mode 100755
index 0000000000..519d46aae6
--- /dev/null
+++ b/target/linux/ramips/rt3883/base-files/etc/board.d/02_network
@@ -0,0 +1,100 @@
+#!/bin/sh
+
+. /lib/functions.sh
+. /lib/functions/uci-defaults.sh
+. /lib/functions/system.sh
+
+ramips_setup_interfaces()
+{
+ local board="$1"
+
+ case $board in
+ asus,rt-n56u)
+ ucidef_add_switch "switch0" \
+ "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "8@eth0"
+ ;;
+ belkin,f9k1109v1)
+ ucidef_add_switch "switch0" \
+ "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "5@eth0"
+ ;;
+ dlink,dir-645)
+ ucidef_add_switch "switch0" \
+ "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "6@eth0"
+ ;;
+ edimax,br-6475nd)
+ ucidef_add_switch "switch0" \
+ "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "9@eth0"
+ ;;
+ loewe,wmdr-143n|\
+ omnima,hpm)
+ ucidef_set_interface_lan "eth0"
+ ;;
+ samsung,cy-swr1100)
+ ucidef_add_switch "switch0" \
+ "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "9@eth0"
+ ;;
+ sitecom,wlr-6000|\
+ trendnet,tew-691gr|\
+ trendnet,tew-692gr)
+ ucidef_add_switch "switch0" \
+ "1:lan" "2:lan" "3:lan" "4:lan" "5:wan" "0@eth0"
+ ;;
+ *)
+ ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
+ ;;
+ esac
+}
+
+ramips_setup_macs()
+{
+ local board="$1"
+ local lan_mac=""
+ local wan_mac=""
+ local label_mac=""
+
+ case $board in
+ asus,rt-n56u)
+ lan_mac=$(macaddr_setbit_la "$(cat /sys/class/net/eth0/address)")
+ wan_mac=$(mtd_get_mac_binary factory 0x8004)
+ ;;
+ belkin,f9k1109v1)
+ wan_mac=$(mtd_get_mac_ascii uboot-env HW_WAN_MAC)
+ lan_mac=$(mtd_get_mac_ascii uboot-env HW_LAN_MAC)
+ label_mac=$wan_mac
+ ;;
+ dlink,dir-645)
+ lan_mac=$(mtd_get_mac_ascii nvram lanmac)
+ wan_mac=$(mtd_get_mac_ascii nvram wanmac)
+ ;;
+ edimax,br-6475nd)
+ wan_mac=$(mtd_get_mac_binary devdata 0x7)
+ ;;
+ samsung,cy-swr1100)
+ lan_mac=$(mtd_get_mac_ascii factory lanmac)
+ ;;
+ sitecom,wlr-6000)
+ wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x8004)" 2)
+ ;;
+ trendnet,tew-691gr)
+ wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x4)" 3)
+ ;;
+ trendnet,tew-692gr)
+ wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x4)" 1)
+ ;;
+ *)
+ wan_mac=$(macaddr_add "$(cat /sys/class/net/eth0/address)" 1)
+ ;;
+ esac
+
+ [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
+ [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
+ [ -n "$label_mac" ] && ucidef_set_label_macaddr $label_mac
+}
+
+board_config_update
+board=$(board_name)
+ramips_setup_interfaces $board
+ramips_setup_macs $board
+board_config_flush
+
+exit 0
diff --git a/target/linux/ramips/rt3883/base-files/lib/preinit/04_handle_checksumming b/target/linux/ramips/rt3883/base-files/lib/preinit/04_handle_checksumming
new file mode 100644
index 0000000000..e2aef5f1f2
--- /dev/null
+++ b/target/linux/ramips/rt3883/base-files/lib/preinit/04_handle_checksumming
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+# Netgear WNCE2001 has does a checksum check on boot and goes into recovery
+# tftp mode when the check fails. Initializing the JFFS2 partition triggers
+# this, so we make sure to zero checksum and size to be checksummed before
+# that happens, so this needs to run very early during boot.
+
+do_checksumming_disable() {
+ . /lib/functions.sh
+
+ local board=$(board_name)
+
+ case "$board" in
+ asus,rt-n56u)
+ echo "Board is ASUS RT-N56U, replacing uImage header..."
+ local firmware_mtd=$(find_mtd_part firmware)
+ local rootfs_mtd=$(find_mtd_part rootfs)
+ local rootfs_data_mtd=$(find_mtd_part rootfs_data)
+ local rootfs_len=$(grep \"rootfs\" /proc/mtd | awk -F' ' '{print "0x"$2}')
+ local rootfs_data_len=$(grep \"rootfs_data\" /proc/mtd | awk -F' ' '{print "0x"$2}')
+ local offset=$(echo "$rootfs_len $rootfs_data_len 0x40" | awk -F' ' '{printf "%i",$1-$2-$3}')
+ local signature=$(dd if=$rootfs_mtd skip=$offset bs=1 count=4 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"')
+ if [ "$signature" = "27051956" ]; then
+ dd conv=notrunc if=$rootfs_mtd skip=$offset of=$firmware_mtd bs=1 count=64 2>/dev/null
+ fi
+ ;;
+ esac
+
+ return 0
+}
+
+boot_hook_add preinit_main do_checksumming_disable
diff --git a/target/linux/ramips/rt3883/base-files/lib/upgrade/platform.sh b/target/linux/ramips/rt3883/base-files/lib/upgrade/platform.sh
new file mode 100755
index 0000000000..786d57fc70
--- /dev/null
+++ b/target/linux/ramips/rt3883/base-files/lib/upgrade/platform.sh
@@ -0,0 +1,20 @@
+#
+# Copyright (C) 2010 OpenWrt.org
+#
+
+PART_NAME=firmware
+REQUIRE_IMAGE_METADATA=1
+
+platform_check_image() {
+ return 0
+}
+
+platform_do_upgrade() {
+ local board=$(board_name)
+
+ case "$board" in
+ *)
+ default_do_upgrade "$1"
+ ;;
+ esac
+}