[PC-BSD Commits] r3446 - pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts
svn at pcbsd.org
svn at pcbsd.org
Fri Feb 13 08:21:44 PST 2009
Author: kris
Date: 2009-02-13 08:21:44 -0800 (Fri, 13 Feb 2009)
New Revision: 3446
Modified:
pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardboard.sh
pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardbus.sh
pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardvendor.sh
pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monmodel.sh
pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monvendor.sh
Log:
Fixed bugs detecting the auto-detected xorg settings, which corrects issues with lots of NVIDIA systems not working properly
Modified: pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardboard.sh
===================================================================
--- pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardboard.sh 2009-02-13 15:55:32 UTC (rev 3445)
+++ pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardboard.sh 2009-02-13 16:21:44 UTC (rev 3446)
@@ -22,6 +22,7 @@
if [ "$?" = "0" ]
then
echo "$line" | cut -d '"' -f 2
+ break
fi
fi
Modified: pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardbus.sh
===================================================================
--- pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardbus.sh 2009-02-13 15:55:32 UTC (rev 3445)
+++ pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardbus.sh 2009-02-13 16:21:44 UTC (rev 3446)
@@ -22,6 +22,7 @@
if [ "$?" = "0" ]
then
echo "$line" | cut -d '"' -f 2
+ break
fi
fi
Modified: pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardvendor.sh
===================================================================
--- pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardvendor.sh 2009-02-13 15:55:32 UTC (rev 3445)
+++ pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/cardvendor.sh 2009-02-13 16:21:44 UTC (rev 3446)
@@ -22,6 +22,7 @@
if [ "$?" = "0" ]
then
echo "$line" | cut -d '"' -f 2
+ break
fi
fi
Modified: pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monmodel.sh
===================================================================
--- pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monmodel.sh 2009-02-13 15:55:32 UTC (rev 3445)
+++ pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monmodel.sh 2009-02-13 16:21:44 UTC (rev 3446)
@@ -3,7 +3,7 @@
while read line
do
- # Check if we are in the monitor sectiono
+ # Check if we are in the monitor section
if [ "$INMON" = "0" ]
then
echo "$line" | grep "Section" | grep "Monitor" >/dev/null 2>/dev/null
@@ -22,6 +22,7 @@
if [ "$?" = "0" ]
then
echo "$line" | cut -d '"' -f 2
+ break
fi
fi
Modified: pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monvendor.sh
===================================================================
--- pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monvendor.sh 2009-02-13 15:55:32 UTC (rev 3445)
+++ pcbsd/trunk/system-overlay/PCBSD/xorg-gui/scripts/monvendor.sh 2009-02-13 16:21:44 UTC (rev 3446)
@@ -22,6 +22,7 @@
if [ "$?" = "0" ]
then
echo "$line" | cut -d '"' -f 2
+ break
fi
fi
More information about the Commits
mailing list