summaryrefslogtreecommitdiff
path: root/hw/vfb
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-04-23 17:21:09 -0400
committerAdam Jackson <ajax@redhat.com>2018-04-24 14:44:06 -0400
commitd2d664df974ac5a55d5819f0379fcdac05d22fa3 (patch)
tree8190837c86dcc8a0d50dab151e8b07348e65a514 /hw/vfb
parent79a7137557d33d4e92713ae8cabe838c44fea488 (diff)
vfb: Fix man page in re depth
32 is not a valid depth, and the default is now 24 not 8. Signed-off-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'hw/vfb')
-rw-r--r--hw/vfb/man/Xvfb.man13
1 files changed, 6 insertions, 7 deletions
diff --git a/hw/vfb/man/Xvfb.man b/hw/vfb/man/Xvfb.man
index 5fd58eb66..d7959b879 100644
--- a/hw/vfb/man/Xvfb.man
+++ b/hw/vfb/man/Xvfb.man
@@ -55,7 +55,7 @@ manual page, \fIXvfb\fP accepts the following command line switches:
.B "\-screen \fIscreennum\fP \fIWxHxD\fP"
This option creates screen \fIscreennum\fP and sets its width, height,
and depth to W, H, and D respectively. By default, only screen 0 exists
-and has the dimensions 1280x1024x8.
+and has the dimensions 1280x1024x24.
.TP 4
.B "\-pixdepths \fIlist-of-depths\fP"
This option specifies a list of pixmap depths that the server should
@@ -100,18 +100,17 @@ snapshot can be done with a file copy command, and the resulting
snapshot will even contain the cursor image.
.SH EXAMPLES
.TP 8
-Xvfb :1 -screen 0 1600x1200x32
+Xvfb :1 -screen 0 1600x1200x24
The server will listen for connections as server number 1, and screen 0
-will be depth 32 1600x1200.
+will be depth 24 1600x1200.
.TP 8
Xvfb :1 -screen 1 1600x1200x16
-The server will listen for connections as server number 1, will have the
-default screen configuration (one screen, 1280x1024x8), and screen 1
-will be depth 16 1600x1200.
+The server will listen for connections as server number 1, screen 0 will have the
+default screen configuration (1280x1024x24), and screen 1 will be depth 16 1600x1200.
.TP 8
Xvfb -pixdepths 3 27 -fbdir /var/tmp
The server will listen for connections as server number 0, will have the
-default screen configuration (one screen, 1280x1024x8),
+default screen configuration (one screen, 1280x1024x24),
will also support pixmap
depths of 3 and 27,
and will use memory mapped files in /var/tmp for the framebuffer.