diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-12 10:04:24 +0100 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-15 17:01:12 +0100 |
| commit | 65561351e32d0cf7f0c1769003529cebec52d579 (patch) | |
| tree | fb72cc00675e92151eaaf59baec45b10913024d7 /hw/usb/meson.build | |
| parent | 31b7bed8b600e10c853595fb48f510c54ec86523 (diff) | |
| download | focaccia-qemu-65561351e32d0cf7f0c1769003529cebec52d579.tar.gz focaccia-qemu-65561351e32d0cf7f0c1769003529cebec52d579.zip | |
usb/storage move usb-storage device to separate source file
Pure code motion, no functional change. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-Id: <20210312090425.772900-4-kraxel@redhat.com>
Diffstat (limited to 'hw/usb/meson.build')
| -rw-r--r-- | hw/usb/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb/meson.build b/hw/usb/meson.build index 518cd1fbbb..9e4da68e3b 100644 --- a/hw/usb/meson.build +++ b/hw/usb/meson.build @@ -42,6 +42,7 @@ softmmu_ss.add(when: 'CONFIG_USB', if_true: files('dev-hid.c')) softmmu_ss.add(when: 'CONFIG_USB_TABLET_WACOM', if_true: files('dev-wacom.c')) softmmu_ss.add(when: 'CONFIG_USB_STORAGE_BOT', if_true: files('dev-storage.c')) softmmu_ss.add(when: 'CONFIG_USB_STORAGE_BOT', if_true: files('dev-storage-bot.c')) +softmmu_ss.add(when: 'CONFIG_USB_STORAGE_BOT', if_true: files('dev-storage-classic.c')) softmmu_ss.add(when: 'CONFIG_USB_STORAGE_UAS', if_true: files('dev-uas.c')) softmmu_ss.add(when: 'CONFIG_USB_AUDIO', if_true: files('dev-audio.c')) softmmu_ss.add(when: 'CONFIG_USB_SERIAL', if_true: files('dev-serial.c')) |