From: kaloz Date: Wed, 28 May 2008 19:54:47 +0000 (+0000) Subject: fix up mac address setting on ixp4xx for devices that store this info in the RedBoot... X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=34bf542fa5be40f4363c5b256df997ee86a5fb08;p=10.03%2Fopenwrt.git fix up mac address setting on ixp4xx for devices that store this info in the RedBoot config partition git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11285 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ixp4xx/Makefile b/target/linux/ixp4xx/Makefile index e6b15e537..7b95752cb 100644 --- a/target/linux/ixp4xx/Makefile +++ b/target/linux/ixp4xx/Makefile @@ -22,6 +22,6 @@ define Kernel/Configure $(if $(CONFIG_EABI_SUPPORT),echo '# CONFIG_OABI_COMPAT is not set' >> $(LINUX_DIR)/.config) endef -DEFAULT_PACKAGES += ixp4xx-microcode +DEFAULT_PACKAGES += ixp4xx-microcode fconfig $(eval $(call BuildTarget)) diff --git a/target/linux/ixp4xx/base-files/etc/preinit.arch b/target/linux/ixp4xx/base-files/etc/preinit.arch new file mode 100755 index 000000000..1ee1d7404 --- /dev/null +++ b/target/linux/ixp4xx/base-files/etc/preinit.arch @@ -0,0 +1,8 @@ +RB_CONFIG="$(grep "RedBoot config" /proc/mtd | cut -d: -f1)" + +for npe in eth0 eth1 +do + if [ "$(ifconfig $npe 2>/dev/null | grep -c 00:00:00:00:00:00)" == "1" ]; then + ifconfig $npe hw ether $(fconfig -s -r -d /dev/$RB_CONFIG -n npe_"$npe"_esa) + fi +done