summaryrefslogtreecommitdiffstats
path: root/target/linux/ixp4xx/base-files
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2008-05-28 19:54:47 +0000
committerImre Kaloz <kaloz@openwrt.org>2008-05-28 19:54:47 +0000
commitce3f17dafaeb8bb9ec4f163c7906c1863fc14eb7 (patch)
treec938142500ef80b914d0e3978baae5f5bf96edc6 /target/linux/ixp4xx/base-files
parent197a6c94587f58f85800dbd57de9de28206a34d9 (diff)
downloadmaster-31e0f0ae-ce3f17dafaeb8bb9ec4f163c7906c1863fc14eb7.tar.gz
master-31e0f0ae-ce3f17dafaeb8bb9ec4f163c7906c1863fc14eb7.tar.bz2
master-31e0f0ae-ce3f17dafaeb8bb9ec4f163c7906c1863fc14eb7.zip
fix up mac address setting on ixp4xx for devices that store this info in the RedBoot config partition
SVN-Revision: 11285
Diffstat (limited to 'target/linux/ixp4xx/base-files')
-rwxr-xr-xtarget/linux/ixp4xx/base-files/etc/preinit.arch8
1 files changed, 8 insertions, 0 deletions
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 0000000000..1ee1d7404d
--- /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