From 73a307b29012151c6438e4043e7ce1f4b5854ba4 Mon Sep 17 00:00:00 2001 From: Hector Cao <122458375+hector-cao@users.noreply.github.com> Date: Mon, 8 Apr 2024 14:29:05 +0200 Subject: [PATCH] Fix network module missing (#53) In https://github.com/canonical/tdx/pull/47 , we introduced a regression by not installing modules-extra anymore. This module is still needed for some kernel modules that live in modules-extra (igc, ...) --- setup-tdx-host.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup-tdx-host.sh b/setup-tdx-host.sh index 916191b..e07e5b1 100755 --- a/setup-tdx-host.sh +++ b/setup-tdx-host.sh @@ -35,8 +35,10 @@ EOF apt update +# modules-extra is needed (igc for example) apt install --yes --allow-downgrades \ linux-intel-opt \ + linux-modules-extra-intel-opt \ qemu-system-x86 \ libvirt-daemon-system \ libvirt-clients \