diff options
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/preinit')
9 files changed, 318 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/preinit/.svn/entries b/target/linux/ar71xx/base-files/lib/preinit/.svn/entries new file mode 100644 index 0000000..9561b77 --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/.svn/entries @@ -0,0 +1,164 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/target/linux/ar71xx/base-files/lib/preinit +svn://svn.openwrt.org/openwrt + + + +2012-02-20T10:51:48.710983Z +30660 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +05_set_iface_mac_ar71xx +file + + + + +2013-03-17T12:12:43.000000Z +df6e573edb44f00ce529472b8d7df45a +2010-01-25T17:11:17.955488Z +19331 +nbd + + + + + + + + + + + + + + + + + + + + + +813 + +03_preinit_do_ar71xx.sh +file + + + + +2013-03-17T12:12:43.000000Z +7fcb77902f63078bb9830a36f7bc7cc1 +2011-12-05T12:56:20.589362Z +29432 +juhosg + + + + + + + + + + + + + + + + + + + + + +105 + +05_enable_reset_button_ar71xx +file + + + + +2013-03-17T12:12:43.000000Z +f090cc4852e251e3b4439e0bfa9b608e +2012-02-20T10:51:48.710983Z +30660 +nbd + + + + + + + + + + + + + + + + + + + + + +176 + +05_set_preinit_iface_ar71xx +file + + + + +2013-03-17T12:12:43.000000Z +354c36efd3ad448ed2d895eb1c4c7360 +2010-01-25T17:11:17.955488Z +19331 +nbd + + + + + + + + + + + + + + + + + + + + + +153 + diff --git a/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/03_preinit_do_ar71xx.sh.svn-base b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/03_preinit_do_ar71xx.sh.svn-base new file mode 100644 index 0000000..ff5407a --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/03_preinit_do_ar71xx.sh.svn-base @@ -0,0 +1,9 @@ +#!/bin/sh + +do_ar71xx() { + . /lib/ar71xx.sh + + ar71xx_board_detect +} + +boot_hook_add preinit_main do_ar71xx diff --git a/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_enable_reset_button_ar71xx.svn-base b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_enable_reset_button_ar71xx.svn-base new file mode 100644 index 0000000..317c8d1 --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_enable_reset_button_ar71xx.svn-base @@ -0,0 +1,13 @@ +# +# Copyright (C) 2009 OpenWrt.org +# + +. /lib/ar71xx.sh + + +preinit_enable_reset_button() { + insmod gpio-button-hotplug +} + +boot_hook_add preinit_main preinit_enable_reset_button + diff --git a/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_set_iface_mac_ar71xx.svn-base b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_set_iface_mac_ar71xx.svn-base new file mode 100644 index 0000000..f8bb7b7 --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_set_iface_mac_ar71xx.svn-base @@ -0,0 +1,39 @@ +# +# Copyright (C) 2009 OpenWrt.org +# + +. /lib/ar71xx.sh + +fetch_mac_from_mtd() { + local mtd_part=$1 + local lan_env=$2 + local wan_env=$3 + local mtd mac + + mtd=$(grep $mtd_part /proc/mtd | cut -d: -f1) + [ -z $mtd ] && return + + mac=$(grep $lan_env /dev/$mtd | cut -d= -f2) + [ ! -z $mac ] && ifconfig eth0 hw ether $mac 2>/dev/null + + mac=$(grep $wan_env /dev/$mtd | cut -d= -f2) + [ ! -z $mac ] && ifconfig eth1 hw ether $mac 2>/dev/null +} + +preinit_set_mac_address() { + case $(ar71xx_board_name) in + tew-632brp) + fetch_mac_from_mtd config lan_mac wan_mac + ;; + dir-615-c1) + fetch_mac_from_mtd config lan_mac wan_mac + echo 1 > /sys/class/leds/dir-615-c1:green:wancpu/brightness + ;; + wrt160nl) + fetch_mac_from_mtd nvram lan_hwaddr wan_hwaddr + ;; + esac +} + +boot_hook_add preinit_main preinit_set_mac_address + diff --git a/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_set_preinit_iface_ar71xx.svn-base b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_set_preinit_iface_ar71xx.svn-base new file mode 100644 index 0000000..8611dce --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/.svn/text-base/05_set_preinit_iface_ar71xx.svn-base @@ -0,0 +1,16 @@ +#!/bin/sh + +# +# Copyright (C) 2009 OpenWrt.org +# + +. /lib/ar71xx.sh + +set_preinit_iface() { + ifname=eth0 +} + +boot_hook_add preinit_main set_preinit_iface + + + diff --git a/target/linux/ar71xx/base-files/lib/preinit/03_preinit_do_ar71xx.sh b/target/linux/ar71xx/base-files/lib/preinit/03_preinit_do_ar71xx.sh new file mode 100644 index 0000000..ff5407a --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/03_preinit_do_ar71xx.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +do_ar71xx() { + . /lib/ar71xx.sh + + ar71xx_board_detect +} + +boot_hook_add preinit_main do_ar71xx diff --git a/target/linux/ar71xx/base-files/lib/preinit/05_enable_reset_button_ar71xx b/target/linux/ar71xx/base-files/lib/preinit/05_enable_reset_button_ar71xx new file mode 100644 index 0000000..317c8d1 --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/05_enable_reset_button_ar71xx @@ -0,0 +1,13 @@ +# +# Copyright (C) 2009 OpenWrt.org +# + +. /lib/ar71xx.sh + + +preinit_enable_reset_button() { + insmod gpio-button-hotplug +} + +boot_hook_add preinit_main preinit_enable_reset_button + diff --git a/target/linux/ar71xx/base-files/lib/preinit/05_set_iface_mac_ar71xx b/target/linux/ar71xx/base-files/lib/preinit/05_set_iface_mac_ar71xx new file mode 100644 index 0000000..f8bb7b7 --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/05_set_iface_mac_ar71xx @@ -0,0 +1,39 @@ +# +# Copyright (C) 2009 OpenWrt.org +# + +. /lib/ar71xx.sh + +fetch_mac_from_mtd() { + local mtd_part=$1 + local lan_env=$2 + local wan_env=$3 + local mtd mac + + mtd=$(grep $mtd_part /proc/mtd | cut -d: -f1) + [ -z $mtd ] && return + + mac=$(grep $lan_env /dev/$mtd | cut -d= -f2) + [ ! -z $mac ] && ifconfig eth0 hw ether $mac 2>/dev/null + + mac=$(grep $wan_env /dev/$mtd | cut -d= -f2) + [ ! -z $mac ] && ifconfig eth1 hw ether $mac 2>/dev/null +} + +preinit_set_mac_address() { + case $(ar71xx_board_name) in + tew-632brp) + fetch_mac_from_mtd config lan_mac wan_mac + ;; + dir-615-c1) + fetch_mac_from_mtd config lan_mac wan_mac + echo 1 > /sys/class/leds/dir-615-c1:green:wancpu/brightness + ;; + wrt160nl) + fetch_mac_from_mtd nvram lan_hwaddr wan_hwaddr + ;; + esac +} + +boot_hook_add preinit_main preinit_set_mac_address + diff --git a/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx b/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx new file mode 100644 index 0000000..8611dce --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx @@ -0,0 +1,16 @@ +#!/bin/sh + +# +# Copyright (C) 2009 OpenWrt.org +# + +. /lib/ar71xx.sh + +set_preinit_iface() { + ifname=eth0 +} + +boot_hook_add preinit_main set_preinit_iface + + + |