33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From faf9c486b086a3af05047fa63a07ad2fd9de4477 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?=
|
|
<marmarek@invisiblethingslab.com>
|
|
Date: Fri, 19 Oct 2018 08:02:12 +0200
|
|
Subject: [PATCH] anaconda: consider Interrupt Remapping as required feature
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
QubesOS/qubes-issues#2977
|
|
|
|
Signed-off-by: Frédéric Pierret <frederic.epitre@orange.fr>
|
|
---
|
|
pyanaconda/iutil.py | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/pyanaconda/iutil.py b/pyanaconda/iutil.py
|
|
index 20ed54302..e3fb28862 100644
|
|
--- a/pyanaconda/iutil.py
|
|
+++ b/pyanaconda/iutil.py
|
|
@@ -1113,6 +1113,8 @@ 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:
|
|
+ missing_features.append('Interrupt Remapping')
|
|
status = ', '.join(missing_features)
|
|
|
|
if status:
|
|
--
|
|
2.14.4
|
|
|