fix up mac address setting on ixp4xx for devices that store this info in the RedBoot config partition
SVN-Revision: 11285
This commit is contained in:
parent
197a6c9458
commit
ce3f17dafa
2 changed files with 9 additions and 1 deletions
|
@ -22,6 +22,6 @@ define Kernel/Configure
|
||||||
$(if $(CONFIG_EABI_SUPPORT),echo '# CONFIG_OABI_COMPAT is not set' >> $(LINUX_DIR)/.config)
|
$(if $(CONFIG_EABI_SUPPORT),echo '# CONFIG_OABI_COMPAT is not set' >> $(LINUX_DIR)/.config)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
DEFAULT_PACKAGES += ixp4xx-microcode
|
DEFAULT_PACKAGES += ixp4xx-microcode fconfig
|
||||||
|
|
||||||
$(eval $(call BuildTarget))
|
$(eval $(call BuildTarget))
|
||||||
|
|
8
target/linux/ixp4xx/base-files/etc/preinit.arch
Executable file
8
target/linux/ixp4xx/base-files/etc/preinit.arch
Executable file
|
@ -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
|
Loading…
Reference in a new issue