From: Giacomo Travaglini Date: Fri, 29 Sep 2017 10:49:40 +0000 (+0100) Subject: vnc: Default image writer type set to Auto X-Git-Tag: v19.0.0.0~2588 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4d1ae831f66e5a4ef237ed2c44893e7d0a6b5c4;p=gem5.git vnc: Default image writer type set to Auto This commit modifies the default behaviour of the vnc frame dumping process: rather than using 'Bitmap' as a default parameter value, it is using 'Auto'. Auto parameter is letting gem5 to choose the most efficient image format among the available ones. Change-Id: I3c8e2b5a34a5925d24892880ac362dfe38de36e3 Reviewed-by: Andreas Sandberg Reviewed-on: https://gem5-review.googlesource.com/5182 Reviewed-by: Jason Lowe-Power Maintainer: Andreas Sandberg --- diff --git a/src/base/vnc/Vnc.py b/src/base/vnc/Vnc.py index 0aed0dc84..e440d101e 100644 --- a/src/base/vnc/Vnc.py +++ b/src/base/vnc/Vnc.py @@ -45,7 +45,7 @@ class VncInput(SimObject): cxx_header = "base/vnc/vncinput.hh" frame_capture = Param.Bool(False, "capture changed frames to files") img_format = Param.ImageFormat( - "Bitmap", "Format of the dumped Framebuffer" + "Auto", "Format of the dumped Framebuffer" ) class VncServer(VncInput):