From 2a8f9ca160c6cf8e0804e24266bf822a66988670 Mon Sep 17 00:00:00 2001 From: Justin Hayes <52832301+justinh-rahb@users.noreply.github.com> Date: Wed, 16 Oct 2019 20:11:04 -0400 Subject: [PATCH] Update unix.inc.php (#10698) --- includes/polling/os/unix.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/polling/os/unix.inc.php b/includes/polling/os/unix.inc.php index 90633292d4..bdd44a5b88 100644 --- a/includes/polling/os/unix.inc.php +++ b/includes/polling/os/unix.inc.php @@ -19,6 +19,8 @@ if (in_array($device['os'], array("linux", "endian", "proxmox", "recoveryos"))) $hardware = "Generic ARMv6"; } elseif (strstr($device['sysDescr'], "armv7")) { $hardware = "Generic ARMv7"; + } elseif (strstr($device['sysDescr'], "aarch64")) { + $hardware = "Generic ARMv8 64-bit"; } elseif (strstr($device['sysDescr'], "armv")) { $hardware = "Generic ARM"; }