|
|
a83cc2 |
From 7fd7892a21cf930f3d44dc3205bed9fb9128c11c Mon Sep 17 00:00:00 2001
|
|
|
a83cc2 |
From: Andrew Jones <drjones@redhat.com>
|
|
|
a83cc2 |
Date: Wed, 4 Aug 2021 07:10:15 -0400
|
|
|
a83cc2 |
Subject: [PATCH 23/39] aarch64: Add USB storage devices
|
|
|
a83cc2 |
|
|
|
a83cc2 |
RH-Author: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
a83cc2 |
RH-MergeRequest: 32: Synchronize with RHEL-AV 8.5 release 27 to RHEL 9
|
|
|
a83cc2 |
RH-Commit: [15/15] 7706801381d8dfc97231fa87f6a7c8de7e3c8e84 (mrezanin/centos-src-qemu-kvm)
|
|
|
a83cc2 |
RH-Bugzilla: 1957194
|
|
|
a83cc2 |
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
|
|
|
a83cc2 |
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
a83cc2 |
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
a83cc2 |
RH-Acked-by: Andrew Jones <drjones@redhat.com>
|
|
|
a83cc2 |
|
|
|
a83cc2 |
There's no reason not to support these devices and doing so allows us
|
|
|
a83cc2 |
to match x86 and ppc. Also to match the other architectures we do not
|
|
|
a83cc2 |
enable CONFIG_USB_STORAGE_BOT, as that was disabled for the other
|
|
|
a83cc2 |
architectures for BZ1866133.
|
|
|
a83cc2 |
|
|
|
a83cc2 |
Signed-off-by: Andrew Jones <drjones@redhat.com>
|
|
|
a83cc2 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
a83cc2 |
---
|
|
|
a83cc2 |
default-configs/devices/aarch64-rh-devices.mak | 2 ++
|
|
|
a83cc2 |
1 file changed, 2 insertions(+)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
diff --git a/default-configs/devices/aarch64-rh-devices.mak b/default-configs/devices/aarch64-rh-devices.mak
|
|
|
a83cc2 |
index d8ce902720..a5bab23925 100644
|
|
|
a83cc2 |
--- a/default-configs/devices/aarch64-rh-devices.mak
|
|
|
a83cc2 |
+++ b/default-configs/devices/aarch64-rh-devices.mak
|
|
|
a83cc2 |
@@ -15,6 +15,8 @@ CONFIG_SEMIHOSTING=y
|
|
|
a83cc2 |
CONFIG_USB=y
|
|
|
a83cc2 |
CONFIG_USB_XHCI=y
|
|
|
a83cc2 |
CONFIG_USB_XHCI_PCI=y
|
|
|
a83cc2 |
+CONFIG_USB_STORAGE_CORE=y
|
|
|
a83cc2 |
+CONFIG_USB_STORAGE_CLASSIC=y
|
|
|
a83cc2 |
CONFIG_VFIO=y
|
|
|
a83cc2 |
CONFIG_VFIO_PCI=y
|
|
|
a83cc2 |
CONFIG_VIRTIO_MMIO=y
|
|
|
a83cc2 |
--
|
|
|
a83cc2 |
2.27.0
|
|
|
a83cc2 |
|