PINE64

Full Version: Armbian?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
(09-03-2016, 07:39 AM)martinayotte Wrote: [ -> ]If you wish to get rid of the random MAC on every reboot, you need to specify a fixed on in the DTS.

hi martinayotte, do you have a procedure for that ?
You can set the MAC address during device startup (e.g. /etc/network/interfaces.d/eth0)
Code:
auto eth0
iface eth0 inet dhcp
 hwaddress ether 7e:e1:03:36:61:e0
If done by DTS, you have to decompile DTB into DTS, edit the DTS using the syntax below, and recompile it into DTB.

In the eth@01c30000 (or ethernet@1c30000 for Armbian) section :

Code:
mac_address [7e e1 03 36 61 e0];
Pages: 1 2 3