fixup mac addresses on the WRT1900AC
authorImre Kaloz <kaloz@openwrt.org>
Sun, 29 Jun 2014 12:51:39 +0000 (12:51 +0000)
committerImre Kaloz <kaloz@openwrt.org>
Sun, 29 Jun 2014 12:51:39 +0000 (12:51 +0000)
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 41382

target/linux/mvebu/base-files/lib/preinit/03_preinit_do_mvebu.sh [new file with mode: 0644]
target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac [new file with mode: 0644]

diff --git a/target/linux/mvebu/base-files/lib/preinit/03_preinit_do_mvebu.sh b/target/linux/mvebu/base-files/lib/preinit/03_preinit_do_mvebu.sh
new file mode 100644 (file)
index 0000000..054c9d3
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+do_mvebu() {
+       . /lib/mvebu.sh
+
+       mvebu_board_detect
+}
+
+boot_hook_add preinit_main do_mvebu
diff --git a/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac b/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac
new file mode 100644 (file)
index 0000000..30f1370
--- /dev/null
@@ -0,0 +1,20 @@
+#
+# Copyright (C) 2014 OpenWrt.org
+#
+
+preinit_set_mac_address() {
+       local mac
+
+       . /lib/functions.sh
+       . /lib/mvebu.sh
+
+       case $(mvebu_board_name) in
+       armada-xp-mamba)
+               mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
+               ifconfig eth0 hw ether $mac 2>/dev/null
+               ifconfig eth1 hw ether $mac 2>/dev/null
+               ;;
+       esac
+}
+
+boot_hook_add preinit_main preinit_set_mac_address