1
0
Fork 0

rpi: set ethaddr as well

Let's set "ethaddr" when we get the ethernet address too, so that
fdt_fixup_ethernet() sets the address in the device tree and the Linux
driver can pick it up.

Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Tested-by: Stephen Warren <swarren@wwwdotorg.org>
utp
Lubomir Rintel 2016-02-03 16:08:09 +01:00 committed by Tom Rini
parent 8e7cba048b
commit 859f143715
1 changed files with 3 additions and 0 deletions

View File

@ -259,6 +259,9 @@ static void set_usbethaddr(void)
eth_setenv_enetaddr("usbethaddr", msg->get_mac_address.body.resp.mac);
if (!getenv("ethaddr"))
setenv("ethaddr", getenv("usbethaddr"));
return;
}