Blame 0107-qemu-include-the-qemu_fw_cfg-kernel-module.patch

Harald Hoyer 53404a
From 73db316ef2c935f4a80c39664f0ebbf9e0035c40 Mon Sep 17 00:00:00 2001
Harald Hoyer 53404a
From: David Michael <david.michael@coreos.com>
Harald Hoyer 53404a
Date: Tue, 16 Aug 2016 13:43:18 -0700
Harald Hoyer 53404a
Subject: [PATCH] qemu: include the qemu_fw_cfg kernel module
Harald Hoyer 53404a
Harald Hoyer 53404a
This adds support for /sys/firmware/qemu_fw_cfg on QEMU guests
Harald Hoyer 53404a
started with the -fw_cfg option.
Harald Hoyer 53404a
---
Harald Hoyer 53404a
 modules.d/90qemu/module-setup.sh | 3 ++-
Harald Hoyer 53404a
 1 file changed, 2 insertions(+), 1 deletion(-)
Harald Hoyer 53404a
Harald Hoyer 53404a
diff --git a/modules.d/90qemu/module-setup.sh b/modules.d/90qemu/module-setup.sh
Harald Hoyer 53404a
index 8cae124..9f8495a 100755
Harald Hoyer 53404a
--- a/modules.d/90qemu/module-setup.sh
Harald Hoyer 53404a
+++ b/modules.d/90qemu/module-setup.sh
Harald Hoyer 53404a
@@ -27,5 +27,6 @@ installkernel() {
Harald Hoyer 53404a
             ata_piix ata_generic pata_acpi cdrom sr_mod ahci \
Harald Hoyer 53404a
             virtio_blk virtio virtio_ring virtio_pci \
Harald Hoyer 53404a
             virtio_scsi virtio_console virtio_rng \
Harald Hoyer 53404a
-            spapr-vscsi
Harald Hoyer 53404a
+            spapr-vscsi \
Harald Hoyer 53404a
+            qemu_fw_cfg
Harald Hoyer 53404a
 }