diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-11-10 10:26:08 +0000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-12-04 10:44:21 +1000 |
commit | d71a17cfab6536df9df46a342a24dd415c020192 (patch) | |
tree | 2b1f5f35a580c94f71a50927847699ff3efecc6e | |
parent | 72ef659874ffe88e88d2f2a35a6e404782cefe9f (diff) |
xf86: select a fake output for headless servers
Following commit 37d956e3ac9513b74078882dff489f9b0a7a5a28
Author: Keith Packard <keithp@keithp.com>
Date: Mon Sep 10 11:14:20 2012 +1000
xf86: fix compat output selection for no output GPUs
headless servers can no longer startup as we no longer select a compat
output for the fake framebuffer.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=56343
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
(cherry picked from commit e54f71a2c7a1677a5c5032d1e7dc099d5204144b)
-rw-r--r-- | hw/xfree86/modes/xf86Crtc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/xfree86/modes/xf86Crtc.c b/hw/xfree86/modes/xf86Crtc.c index 177f7ac11..13251cff4 100644 --- a/hw/xfree86/modes/xf86Crtc.c +++ b/hw/xfree86/modes/xf86Crtc.c @@ -1847,6 +1847,10 @@ SetCompatOutput(xf86CrtcConfigPtr config) output = config->output[config->compat_output]; } + /* All outputs are disconnected, select one to fake */ + if (!output && config->num_output) + output = config->output[0]; + return output; } |