ar71xx: add mac partition to the MR12/MR16
authorChris Blake <chrisrblake93@gmail.com>
Mon, 24 Oct 2016 19:05:54 +0000 (14:05 -0500)
committerJohn Crispin <john@phrozen.org>
Wed, 26 Oct 2016 10:37:45 +0000 (12:37 +0200)
commit28dd52b079d39fa80dd801e2864bea42251fd50b
tree92fdf3ea51892e09d93d7f78cb2eecab1e00100c
parentd8662ac3c6a2ecd3834d109c5d3abd864fb23a50
ar71xx: add mac partition to the MR12/MR16

On the stock Meraki Firmare for the MR12/MR16, a chunk of SPI space
after u-boot-env is used to store the boards Mac address. Sadly as this
was removed on any device already on OpenWRT/LEDE, moving forward a new,
64k partition named "mac" will be used to store the mac address for the
device (which is the minimum size). This allows users to properly set
the correct MAC, without editing the ART partition (which holds the same
MAC for all devices).

The reason the space is taken from kernel instead of rootfs is currently
kernels are only 1.3MB, so that way we can leave the current rootfs
space alone for users who fully utilize the available storage space.

Once this partition is added to a device, you can set your MAC doing the
following:

mtd erase mac
echo -n -e '\x00\x18\x0a\x33\x44\x55' > /dev/mtd5
sync && reboot

Where 00:18:0a:33:44:55 is your MAC address.

This was tested, and confirmed working on both the MR12 and MR16.

Signed-off-by: Chris Blake <chrisrblake93@gmail.com>
target/linux/ar71xx/files/arch/mips/ath79/mach-mr12.c
target/linux/ar71xx/files/arch/mips/ath79/mach-mr16.c
target/linux/ar71xx/image/generic.mk