Add working CPU model fact for some ARM devices

Works on Sheevaplug, probably works on Rasberry Pi as well
This commit is contained in:
Maxim Burgerhout 2012-08-24 23:11:06 +02:00
parent 150a47c66c
commit 3d44de284a

View file

@ -246,7 +246,9 @@ class LinuxHardware(Hardware):
for line in open("/proc/cpuinfo").readlines():
data = line.split(":", 1)
key = data[0].strip()
if key == 'model name':
# model name is for Intel arch, Processor (mind the uppercase P)
# works for some ARM devices, like the Sheevaplug.
if key == 'model name' or key == 'Processor':
if 'processor' not in self.facts:
self.facts['processor'] = []
self.facts['processor'].append(data[1].strip())