summaryrefslogtreecommitdiffstats
path: root/system/xf86-video-qxl/05-qxl.conf
diff options
context:
space:
mode:
author ponce2012-02-19 07:23:47 +0100
committer Robby Workman2012-02-20 19:20:44 +0100
commit93778820f9881c72f3045cf0b6dc7bf2d10fc760 (patch)
treeb74e64c2b1163cf1f975e4bf34eb7a72f6f1ea9b /system/xf86-video-qxl/05-qxl.conf
parentb0b1e80e9de7dd0f0cbaadc1e898e708a0169109 (diff)
downloadslackbuilds-93778820f9881c72f3045cf0b6dc7bf2d10fc760.tar.gz
system/xf86-video-qxl: Added (X.org spice qxl video driver)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xf86-video-qxl/05-qxl.conf')
-rw-r--r--system/xf86-video-qxl/05-qxl.conf78
1 files changed, 78 insertions, 0 deletions
diff --git a/system/xf86-video-qxl/05-qxl.conf b/system/xf86-video-qxl/05-qxl.conf
new file mode 100644
index 0000000000..b18867413e
--- /dev/null
+++ b/system/xf86-video-qxl/05-qxl.conf
@@ -0,0 +1,78 @@
+Section "Device"
+ Identifier "XSPICE"
+ Driver "qxl"
+
+ # Enable regular port. Either this or SpiceTlsPort, or one of XSPICE_PORT or
+ # XSPICE_TLS_PORT environment variables must be specified
+ # Defaults to 5900.
+ Option "SpicePort" "5900"
+
+ # Enable a TLS (encrypted) port. Either this or SpicePort must be specified,
+ # either here or via environment varialbes or via xspice --port or --tls-port
+ #Option "SpiceTlsPort" "5901"
+
+ # Listen to a specific interface. Default is to listen to all (0.0.0.0)
+ #Option "SpiceAddr" ""
+
+ # Enable usage of SASL supported by spice-gtk client. Not required,
+ # defaults to false.
+ #Option "SpiceSasl" "True"
+
+ # Do not request any password from client
+ Option "SpiceDisableTicketing" "0"
+
+ # Set directory where cacert, server key and server cert are searched
+ # using the same predefined names qemu uses:
+ # cacert.pem, server-key.pem, server-cert.pem
+ #Option "SpiceX509Dir" ""
+
+ # Set password client will be required to produce.
+ #Option "SpicePassword" ""
+
+ # Set spice server key file.
+ #Option "SpiceX509KeyFile" ""
+
+ # Set cert file location.
+ #Option "SpiceX509CertFile" ""
+
+ # Set key file password.
+ #Option "SpiceX509KeyPassword" ""
+
+ # Set tls ciphers used.
+ #Option "SpiceTlsCiphers" ""
+
+ # Set cacert file.
+ #Option "SpiceCacertFile" ""
+
+ # Set dh file used.
+ #Option "SpiceDhFile" ""
+
+ # Set streaming video method. Options are filter, off, all
+ # defaults to filter.
+ #Option "SpiceStreamingVideo" ""
+
+ # Set zlib glz wan compression. Options are auto, never, always.
+ # defaults to auto.
+ #Option "SpiceZlibGlzWanCompression" ""
+
+ # Set jpeg wan compression. Options are auto, never, always
+ # defaults to auto.
+ #Option "SpiceJpegWanCompression" ""
+
+ # Set image compression. Options are off,auto_glz,auto_lz,quic,glz,lz.
+ # defaults to auto_glz.
+ #Option "SpiceImageCompression" ""
+
+ # Set to true to only listen on ipv4 interfaces.
+ # defaults to false.
+ #Option "SpiceIPV4Only" ""
+
+ # Set to true to only listen on ipv6 interfaces.
+ # defaults to false.
+ #Option "SpiceIPV6Only" ""
+EndSection
+
+# Prevent udev from loading vmmouse in a vm and crashing.
+Section "ServerFlags"
+ Option "AutoAddDevices" "False"
+EndSection