From: David Bauer Date: Sun, 25 Feb 2018 11:09:38 +0000 (+0100) Subject: ar71xx: add model detection for UBNT AC-Mesh X-Git-Tag: v18.06.0-rc1~472 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f8dbafb234c9a0a836ff3bede0540c20914b6d4e;p=openwrt%2Fstaging%2Fchunkeey.git ar71xx: add model detection for UBNT AC-Mesh This commit adds correct model detection for UniFi AC-Mesh. Previously said device was incorrectly detected as UniFi AC-Lite. The Information about the device is stored at 0xC in the EEPROM partition. It corresponds to the sysid in /etc/board.info of the Ubiquiti stock firmware. Signed-off-by: David Bauer --- diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 3586cc99ab..f56494ca46 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -98,6 +98,27 @@ ubnt_xm_board_detect() { [ -z "$model" ] || AR71XX_MODEL="${model}${magic:3:1}" } +ubnt_ac_lite_get_mtd_part_magic() { + ar71xx_get_mtd_offset_size_format EEPROM 12 2 %02x +} + +ubnt_ac_lite_board_detect() { + local model + local magic + + magic="$(ubnt_ac_lite_get_mtd_part_magic)" + case ${magic:0:4} in + "e517") + model="Ubiquiti UniFi-AC-LITE" + ;; + "e557") + model="Ubiquiti UniFi-AC-MESH" + ;; + esac + + [ -z "$model" ] || AR71XX_MODEL="${model}" +} + cybertan_get_hw_magic() { local part @@ -1303,6 +1324,7 @@ ar71xx_board_detect() { ;; *"UniFi-AC-LITE/MESH") name="unifiac-lite" + ubnt_ac_lite_board_detect ;; *"UniFi-AC-PRO") name="unifiac-pro"