aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-02-02 19:37:57 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-02-02 19:37:57 +0000
commit8a5c4673234e608f24fc82a420476993eea34a4a (patch)
treeae48c617674057c9d18c42d827823ab1674cbce8
parent7d250fbc8dd8ef044be2859b0b57e163d79b4bd3 (diff)
downloadupstream-8a5c4673234e608f24fc82a420476993eea34a4a.tar.gz
upstream-8a5c4673234e608f24fc82a420476993eea34a4a.tar.bz2
upstream-8a5c4673234e608f24fc82a420476993eea34a4a.zip
parse dot-separated MAC address (patch by Jonas <jmajau@ubnt.com>)
SVN-Revision: 14371
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/platform.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/platform.c b/target/linux/ar71xx/files/arch/mips/ar71xx/platform.c
index d8ed28a431..6a29fc46a0 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/platform.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/platform.c
@@ -595,6 +595,10 @@ void __init ar71xx_parse_mac_addr(char *mac_str)
t = sscanf(mac_str, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
&tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5]);
+ if (t != ETH_ALEN)
+ t = sscanf(mac_str, "%02hhx.%02hhx.%02hhx.%02hhx.%02hhx.%02hhx",
+ &tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5]);
+
if (t == ETH_ALEN)
ar71xx_set_mac_base(tmp);
else