summary refs log tree commit diff stats
path: root/hw/misc/sga.c
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2021-09-09 13:32:19 +0100
committerGerd Hoffmann <kraxel@redhat.com>2021-11-02 17:24:18 +0100
commit7c8d295b274f18f582b931c59dba0cba94f6ca7a (patch)
treea67ccaf7cd6002ba478c67fdc4ee169174d21431 /hw/misc/sga.c
parent014b00cc0a6b975fd67d7a1d5d49588c4d325a40 (diff)
downloadfocaccia-qemu-7c8d295b274f18f582b931c59dba0cba94f6ca7a.tar.gz
focaccia-qemu-7c8d295b274f18f582b931c59dba0cba94f6ca7a.zip
hw/misc: deprecate the 'sga' device
This is obsolete since SeaBIOS 1.11.0 introduced native support for
sending messages to the serial console. The new support can be
activated using -machine graphics=off on x86 targets.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20210909123219.862652-1-berrange@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/misc/sga.c')
-rw-r--r--hw/misc/sga.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/misc/sga.c b/hw/misc/sga.c
index 4dbe6d78f9..1d04672b01 100644
--- a/hw/misc/sga.c
+++ b/hw/misc/sga.c
@@ -30,6 +30,7 @@
 #include "hw/loader.h"
 #include "qemu/module.h"
 #include "qom/object.h"
+#include "qemu/error-report.h"
 
 #define SGABIOS_FILENAME "sgabios.bin"
 
@@ -42,6 +43,7 @@ struct ISASGAState {
 
 static void sga_realizefn(DeviceState *dev, Error **errp)
 {
+    warn_report("-device sga is deprecated, use -machine graphics=off");
     rom_add_vga(SGABIOS_FILENAME);
 }