diff options
author | Eric Hameleers <alien@slackware.com> | 2021-10-26 13:08:10 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-10-26 13:08:10 +0200 |
commit | fbf9c9e1c3ce6ee6982327a475524e886d271a76 (patch) | |
tree | ef25c5cfdc9535693114f6b0c761e9b05f8c5b94 /make_slackware_live.sh | |
parent | 53d1ce489809bcca6ed8e27d3afb5ee519bc4678 (diff) | |
download | liveslak-fbf9c9e1c3ce6ee6982327a475524e886d271a76.tar.gz liveslak-fbf9c9e1c3ce6ee6982327a475524e886d271a76.tar.xz |
Add virtio modules to the live initrd for better support in VM's
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index ed03889..63e7f5a 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -223,8 +223,9 @@ BLACKLIST_XFCE="lynx mc mozilla-firefox pidgin" # -- START: Used verbatim in upslak.sh -- # # List of kernel modules required for a live medium to boot properly; -# Lots of HID modules added to support keyboard input for LUKS password entry: -KMODS=${KMODS:-"squashfs:overlay:loop:xhci-pci:ohci-pci:ehci-pci:xhci-hcd:uhci-hcd:ehci-hcd:mmc-core:mmc-block:sdhci:sdhci-pci:sdhci-acpi:usb-storage:hid:usbhid:i2c-hid:hid-generic:hid-apple:hid-cherry:hid-logitech:hid-logitech-dj:hid-logitech-hidpp:hid-lenovo:hid-microsoft:hid_multitouch:jbd:mbcache:ext3:ext4:isofs:fat:nls_cp437:nls_iso8859-1:msdos:vfat:ntfs"} +# Lots of HID modules added to support keyboard input for LUKS password entry; +# Virtio modules added to experiment with liveslak in a VM. +KMODS=${KMODS:-"squashfs:overlay:loop:xhci-pci:ohci-pci:ehci-pci:xhci-hcd:uhci-hcd:ehci-hcd:mmc-core:mmc-block:sdhci:sdhci-pci:sdhci-acpi:usb-storage:hid:usbhid:i2c-hid:hid-generic:hid-apple:hid-cherry:hid-logitech:hid-logitech-dj:hid-logitech-hidpp:hid-lenovo:hid-microsoft:hid_multitouch:jbd:mbcache:ext3:ext4:isofs:fat:nls_cp437:nls_iso8859-1:msdos:vfat:ntfs:virtio_ring:virtio:virtio_blk:virtio_balloon:virtio_pci:virtio_net"} # Network kernel modules to include for NFS root support: NETMODS="kernel/drivers/net kernel/drivers/virtio" |