From c02ced05d1051162fbe6f213ac3704555dfc8e59 Mon Sep 17 00:00:00 2001 From: Dmitry Yakovlev Date: Sun, 28 Apr 2024 07:45:21 +0300 Subject: [PATCH] hw/display: add a virtual RGB screen for ESP32-S3 targets --- hw/display/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/display/meson.build b/hw/display/meson.build index d3bac9389f65..bb957b5485c7 100644 --- a/hw/display/meson.build +++ b/hw/display/meson.build @@ -37,6 +37,7 @@ system_ss.add(when: 'CONFIG_MACFB', if_true: files('macfb.c')) system_ss.add(when: 'CONFIG_NEXTCUBE', if_true: files('next-fb.c')) system_ss.add(when: 'CONFIG_RISCV_ESP32C3', if_true: files('esp_rgb.c')) system_ss.add(when: 'CONFIG_XTENSA_ESP32', if_true: files('esp_rgb.c')) +system_ss.add(when: 'CONFIG_XTENSA_ESP32S3', if_true: files('esp_rgb.c')) system_ss.add(when: 'CONFIG_VGA', if_true: files('vga.c')) system_ss.add(when: 'CONFIG_VIRTIO', if_true: files('virtio-dmabuf.c'))