From: Imre Kaloz Date: Mon, 1 Jun 2009 18:09:36 +0000 (+0000) Subject: fixup mac addresses on gemini boards X-Git-Tag: reboot~23323 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=df7996045aa228ee48906a202c496860461fbf83;hp=9fa14987b88e0e452e09562e0a2936be2edf4f6d fixup mac addresses on gemini boards SVN-Revision: 16271 --- diff --git a/target/linux/gemini/base-files/etc/preinit.arch b/target/linux/gemini/base-files/etc/preinit.arch new file mode 100755 index 0000000000..ecdb41039c --- /dev/null +++ b/target/linux/gemini/base-files/etc/preinit.arch @@ -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