]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
hw/misc: deprecate the 'sga' device
authorDaniel P. Berrangé <berrange@redhat.com>
Thu, 9 Sep 2021 12:32:19 +0000 (13:32 +0100)
committerGerd Hoffmann <kraxel@redhat.com>
Tue, 2 Nov 2021 16:24:18 +0000 (17:24 +0100)
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>
docs/about/deprecated.rst
hw/misc/sga.c

index be19317470a1609302ed657e07f34b23a4279566..25b7ec8d92d9f12b288547895152a8dafde2e3e6 100644 (file)
@@ -313,6 +313,16 @@ full SCSI support.  Use virtio-scsi instead when SCSI passthrough is required.
 Note this also applies to ``-device virtio-blk-pci,scsi=on|off``, which is an
 alias.
 
+``-device sga`` (since 6.2)
+^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The ``sga`` device loads an option ROM for x86 targets which enables
+SeaBIOS to send messages to the serial console. SeaBIOS 1.11.0 onwards
+contains native support for this feature and thus use of the option
+ROM approach is obsolete. The native SeaBIOS support can be activated
+by using ``-machine graphics=off``.
+
+
 Block device options
 ''''''''''''''''''''
 
index 4dbe6d78f9e5251e4ee30ba9a756755b4fa38b70..1d04672b013b28837b0affc5a62119f32bc41922 100644 (file)
@@ -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);
 }