[PATCH] xfree86: Add modesetting to list of fallback drivers

2014-06-01 Thread Søren Sandmann
To make X -configure work properly, the output of fixup_video_driver_list() should be in order of preference. Otherwise, the config file may use the incorrect driver for some devices. In particular, the drivers that work for all (or many) devices need to be last in the list. Since the modesetting

Re: [PATCH] xfree86: Add modesetting to list of fallback drivers

2014-06-01 Thread Søren Sandmann
Daniel Stone dan...@fooishbar.org writes: To make X -configure work properly, the output of fixup_video_driver_list() should be in order of preference. Otherwise, the config file may use the incorrect driver for some devices. In particular, the drivers that work for all (or many) devices

Re: [PATCH util/modular] Add gpg signing to release.sh

2014-06-01 Thread Stephen Kitt
On Sat, 31 May 2014 16:49:56 -0700, Alan Coopersmith alan.coopersm...@oracle.com wrote: On 05/20/14 01:49 PM, Stephen Kitt wrote: Peter Hutterer suggested I send this here; it's a patch to add gpg signing to release.sh, both for the git tag and the generated tarballs. This version tries

[PATCH] present: Query the right CRTC to use each time

2014-06-01 Thread Chris Wilson
As the CRTCs may be reconfigured between each invocation, we can not assume that the previous CRTC we used last time will still be valid for this call. Either we need a way to validate the CRTC or, more conveniently, query the CRTC to use each time. Note, that this still does not validate the CRTC

[PATCH] xtensa: add support for xtensa architecture

2014-06-01 Thread Max Filippov
Signed-off-by: Max Filippov jcmvb...@gmail.com --- hw/xfree86/common/compiler.h|5 - hw/xfree86/os-support/linux/lnx_video.c |3 ++- include/servermd.h | 14 ++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git

[PATCH xrandr] Remove duplicate printing of the axis

2014-06-01 Thread Connor Behan
Even in verbose mode, why print the same information twice? Signed-off-by: Connor Behan connor.be...@gmail.com --- xrandr.c | 4 1 file changed, 4 deletions(-) diff --git a/xrandr.c b/xrandr.c index 7a5fa30..d284f78 100644 --- a/xrandr.c +++ b/xrandr.c @@ -3861,10 +3861,6 @@ main (int

[PATCH xrandr] Allow -x and -y switches to undo themselves

2014-06-01 Thread Connor Behan
People who want to dick around might think it is safe to run xrandr -x before they know any of the other syntax. When xrandr -x again does not get back to a normal screen, they are stuck having to read a manpage with reflected text. Signed-off-by: Connor Behan connor.be...@gmail.com --- xrandr.c

[PATCH xrandr] Allow -x and -y switches to undo themselves

2014-06-01 Thread Connor Behan
People who want to dick around might think it is safe to run xrandr -x before they know any of the other syntax. When xrandr -x again does not get back to a normal screen, they are stuck having to read a manpage with reflected text. Signed-off-by: Connor Behan connor.be...@gmail.com --- xrandr.c

[PATCH 1.5/4 util-modular] release.sh: force /bin/bash

2014-06-01 Thread Peter Hutterer
Trying to meet a hard-to-test standard of /bin/sh is unnecessary for a script that's only run by maintainers. For now, simply force bash but don't change any of the script, over time we can update this to support true bashism like [[ ]]. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net ---

Re: [PATCH 1.5/4 util-modular] release.sh: force /bin/bash

2014-06-01 Thread Alan Coopersmith
On 06/ 1/14 08:18 PM, Peter Hutterer wrote: Trying to meet a hard-to-test standard of /bin/sh is unnecessary for a script that's only run by maintainers. For now, simply force bash but don't change any of the script, over time we can update this to support true bashism like [[ ]].