check for aarch64 as well as ARM when determing CPU type in lscpu

This commit is contained in:
Richard Pastrick 2022-12-28 23:08:01 -08:00 коммит произвёл LiliDeng
Родитель eba69785ca
Коммит a6328f94d6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -214,7 +214,7 @@ class Lscpu(Tool):
return CpuType.AMD
elif "GenuineIntel" in result.stdout:
return CpuType.Intel
elif "ARM" in result.stdout:
elif "ARM" in result.stdout or "aarch64" in result.stdout:
return CpuType.ARM
else:
raise LisaException(