Determine architecture via 'uname -m'
authorGuido Günther <agx@sigxcpu.org>
Sat, 27 Jan 2018 12:11:36 +0000 (13:11 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Sat, 27 Jan 2018 12:19:22 +0000 (12:19 +0000)
'uname -p' only gives unknown on x86_64, i386, arm6l (rpi) and aarch64
(scaleways).

virt-what.in

index 29b7b0d..2011ff4 100644 (file)
@@ -102,9 +102,9 @@ cpuid=$(virt-what-cpuid-helper)
 dmi=$(LANG=C dmidecode 2>&1)
 
 # Architecture.
-# Note for the purpose of testing, we only call uname with -p option.
+# Note for the purpose of testing, we only call uname with -m option.
 
-arch=$(uname -p | sed -e 's/i.86/i386/' | sed -e 's/arm.*/arm/')
+arch=$(uname -m | sed -e 's/i.86/i386/' | sed -e 's/arm.*/arm/')
 
 # Check for VMware.
 # cpuid check added by Chetan Loke.