From 339d2e70e65748a8d48ae191f280493250bf489e Mon Sep 17 00:00:00 2001 From: Penny Zheng Date: Tue, 7 Apr 2020 11:23:24 +0800 Subject: [PATCH] config: move mmio-related configs to common dir mmio devices are required in firecracker, and for now, x86_64 and aarch64 are all supporting kata containers with firecracker. So, we need to move mmio-related configs to common dir. Fixes: #1004 Signed-off-by: Penny Zheng --- kernel/configs/fragments/common/mmio.conf | 3 +++ kernel/configs/fragments/x86_64/mmio.conf | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-) create mode 100644 kernel/configs/fragments/common/mmio.conf delete mode 100644 kernel/configs/fragments/x86_64/mmio.conf diff --git a/kernel/configs/fragments/common/mmio.conf b/kernel/configs/fragments/common/mmio.conf new file mode 100644 index 000000000..5afc0b10b --- /dev/null +++ b/kernel/configs/fragments/common/mmio.conf @@ -0,0 +1,3 @@ +# mmio devices are required for firecracker +CONFIG_VIRTIO_MMIO=y +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y diff --git a/kernel/configs/fragments/x86_64/mmio.conf b/kernel/configs/fragments/x86_64/mmio.conf deleted file mode 100644 index be45a7a69..000000000 --- a/kernel/configs/fragments/x86_64/mmio.conf +++ /dev/null @@ -1,5 +0,0 @@ -# x86 specific mmio related items - -# Next config are required for firecracker -CONFIG_VIRTIO_MMIO=y -CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y