]> git.ipfire.org Git - ipfire.org.git/commitdiff
fireinfo: Fix QEMU CPU string.
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 11 Feb 2011 08:49:16 +0000 (09:49 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 11 Feb 2011 08:49:16 +0000 (09:49 +0100)
www/webapp/backend/stasy.py

index 8dd1365137ac57cc28befce618dfa19970e31bf0..192d20f380418bef481097c64b316d74e7913e99 100644 (file)
@@ -57,6 +57,9 @@ CPU_STRINGS = (
 
        # VIA
        (r"(VIA \w*).*", r"\1"),
+
+       # Qemu
+       (r"QEMU Virtual CPU version .*", r"QEMU CPU"),
 )
 
 CPU_CORES = range(1, 9)