debian/changelog | 7 ++++++- debian/xserver-xorg.postinst.in | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-)
New commits: commit 653a2cd4f844fd8c015e043860871ba5945b8b9e Author: Timo Aaltonen <[EMAIL PROTECTED]> Date: Thu Dec 6 19:37:00 2007 +0200 xserver-xorg.postinst.in: Narrow down the drivers to filter from the list, because otherwise radeonhd would not be selectable https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/174311 diff --git a/debian/changelog b/debian/changelog index 41c6c71..c7db1cf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,16 @@ xorg (1:7.3+8) UNRELEASED; urgency=low + [ Julien Cristau ] * Make xorg Architecture: any. Depend on sparc-utils [sparc] instead of sparc-utils | not+sparc. * dexconf: Use xorg.conf/xserver-xorg instead of $REALCONFIG/$XSERVERPKG. Thanks, Timo Aaltonen! - -- Julien Cristau <[EMAIL PROTECTED]> Thu, 06 Dec 2007 09:42:42 +0100 + [ Tormod Volden ] + * xserver-xorg.postinst.in: Narrow down the drivers to filter from the list, + because otherwise radeonhd would not be selectable. (LP: #174311) + + -- Timo Aaltonen <[EMAIL PROTECTED]> Thu, 06 Dec 2007 19:33:18 +0200 xorg (1:7.3+7) unstable; urgency=low diff --git a/debian/xserver-xorg.postinst.in b/debian/xserver-xorg.postinst.in index c0fb730..562a3da 100644 --- a/debian/xserver-xorg.postinst.in +++ b/debian/xserver-xorg.postinst.in @@ -731,7 +731,7 @@ if [ -n "$FIRSTINST" ] || [ -n "$RECONFIGURE" ]; then # v4l is not a display driver, and dummy is for advanced users. DRIVER_LIST="$(find $REAL_DRIVER_DIRS -name '*_drv.*' \ | sed 's|^.*/\([^/]*\)_drv\.[^\._]*|\1|g' \ - | egrep -v '(atimisc|dummy|r128|radeon|v4l)' | sort -u | xargs \ + | egrep -v '^(atimisc|dummy|r128|radeon|v4l)$' | sort -u | xargs \ | sed 's/ /, /g' 2>/dev/null) " fi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]