From efc723dd59c773dd05e7e8266ec89187aab71c99 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Wed, 1 Nov 2023 20:07:43 +0000 Subject: [PATCH] Add vsock modules into ramdisk A review comment to #1696 suggested I see if I could eliminate a pair of modules needed in the ramdisk to consume an ignition file over vsock. In doing the testing, I experienced a false positive; unfortunately, I have determined they are in fact needed and this PR asks to add them again. Signed-off-by: Brent Baude --- dracut/30ignition/module-setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dracut/30ignition/module-setup.sh b/dracut/30ignition/module-setup.sh index 5271f480c..15bb7276b 100755 --- a/dracut/30ignition/module-setup.sh +++ b/dracut/30ignition/module-setup.sh @@ -103,5 +103,7 @@ installkernel() { # required by applehv platform to read ignition file through vsock instmods -c vsock + instmods -c vmw_vsock_virtio_transport_common + instmods -c vmw_vsock_virtio_transport }