Lines Matching defs:xorg
15 used by spiceqxl_drv.so, and then spawn Xorg, giving it the default config file,
54 usage="Xspice [Xspice and Xorg options intermixed]",
55 epilog="Any option not parsed by Xspice gets passed to Xorg as is.")
58 parser.add_argument('--xorg', default=which('Xorg'), help='specify the path to the Xorg binary')
59 parser.add_argument('--config', default='spiceqxl.xorg.conf', help='specify the path to the Xspice configuration')
60 parser.add_argument('--auto', action='store_true', help='automatically create a temporary xorg.conf and start the X server')
61 parser.add_argument('--xsession', help='if given, will run after Xorg launch. Should be a program like x-session-manager')
67 # Don't use any options that are already used by Xorg (unless we must)
169 # and it isn't supplied spice will still abort, and Xorg with it.
179 if not args.xorg:
180 error("Xorg missing")
217 args.config = temp_dir + "/xorg.conf"
221 logfile = temp_dir + "/xorg.log"
326 exec_args = [args.xorg, '-config', args.config]
329 args.xorg = cgdb
341 xorg = launch(executable=args.xorg, args=exec_args + xorg_args)
344 retpid,rc = os.waitpid(xorg.pid, os.WNOHANG)
361 xorg.wait()