From 7489992dddf94aae18483d4ee5dea45506ab05df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Sun, 3 Dec 2017 02:25:25 +0100 Subject: [PATCH] anaconda: check also for message about AMD interrupt remapping Fixes QubesOS/qubes-issues#3208 --- anaconda/pyanaconda/iutil.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/anaconda/pyanaconda/iutil.py b/anaconda/pyanaconda/iutil.py index e3fb288..166626a 100644 --- a/anaconda/pyanaconda/iutil.py +++ b/anaconda/pyanaconda/iutil.py @@ -1113,7 +1113,9 @@ def is_unsupported_hw(): missing_features.append('IOMMU/VT-d/AMD-Vi') if b'HVM: Hardware Assisted Paging (HAP) detected' not in xl_dmesg: missing_features.append('HAP/SLAT/EPT/RVI') - if b'Intel VT-d Interrupt Remapping enabled' not in xl_dmesg: + # slightly different wording for Intel and AMD + if b'Intel VT-d Interrupt Remapping enabled' not in xl_dmesg \ + and 'Interrupt remapping enabled' not in xl_dmesg: missing_features.append('Interrupt Remapping') status = ', '.join(missing_features)