Update unix.inc.php (#10698)

This commit is contained in:
Justin Hayes
2019-10-16 20:11:04 -04:00
committed by Tony Murray
parent 3c25551a93
commit 2a8f9ca160

View File

@@ -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";
}