From 3791fd7c5e5da7c60dc07cf5ae972d7aded415e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Sat, 27 Jan 2018 12:44:11 +0100 Subject: [PATCH] anaconda: fix interrupt remapping detection --- anaconda/pyanaconda/iutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anaconda/pyanaconda/iutil.py b/anaconda/pyanaconda/iutil.py index 166626a..c83bcdd 100644 --- a/anaconda/pyanaconda/iutil.py +++ b/anaconda/pyanaconda/iutil.py @@ -1115,7 +1115,7 @@ def is_unsupported_hw(): missing_features.append('HAP/SLAT/EPT/RVI') # 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: + and b'Interrupt remapping enabled' not in xl_dmesg: missing_features.append('Interrupt Remapping') status = ', '.join(missing_features)