fixup mac addresses on gemini boards
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 1 Jun 2009 18:09:36 +0000 (18:09 +0000)
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 1 Jun 2009 18:09:36 +0000 (18:09 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16271 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/gemini/base-files/etc/preinit.arch [new file with mode: 0755]

diff --git a/target/linux/gemini/base-files/etc/preinit.arch b/target/linux/gemini/base-files/etc/preinit.arch
new file mode 100755 (executable)
index 0000000..ecdb410
--- /dev/null
@@ -0,0 +1,6 @@
+CONFIG_PARTITION="$(grep "VCTL" /proc/mtd | cut -d: -f1)"
+MAC1="$(strings /dev/$CONFIG_PARTITION |grep MAC|cut -d: -f2|cut -c3-14|sed -e 's,\(..\),:\1,g' -e 's,^:,,')"
+MAC2="$(strings /dev/$CONFIG_PARTITION |grep MAC|cut -d: -f8|cut -c3-14|sed -e 's,\(..\),:\1,g' -e 's,^:,,')"
+
+ifconfig eth0 hw ether $MAC1 2>/dev/null
+ifconfig eth1 hw ether $MAC2 2>/dev/null