From: Nicolas B. <nbo...@us...> - 2007-06-21 12:22:10
|
Update of /cvsroot/ddccontrol/ddccontrol-db/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv362/scripts Modified Files: samsung Log Message: Add support for Samsung SyncMaster 931BF. Thanks to Johannes Raspe. Index: samsung =================================================================== RCS file: /cvsroot/ddccontrol/ddccontrol-db/scripts/samsung,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- samsung 21 Jun 2007 11:57:02 -0000 1.2 +++ samsung 21 Jun 2007 12:20:52 -0000 1.3 @@ -39,10 +39,11 @@ if [ $? = 0 ]; then COUNT=`grep "0xdc" tmp | sed -e "s:.*/[0-9]*/\([0-9]*\) .*$:\1:"` case $COUNT in + 7) echo "Will include SAMmb6. Altought maximum is 7."; SAMmb6=1 ;; 6) echo "Will include SAMmb6."; SAMmb6=1 ;; 5) echo "Will include SAMmb6."; SAMmb6=1 ;; 4) SAMmb6=0 ;; - *) echo "Unable to detect SAMmb6 ($COUNT)"; exit 0; ;; + *) echo "Unable to detect SAMmb6 ($COUNT), please put a note in the file." ;; esac fi @@ -54,7 +55,7 @@ 10) echo "Will include SAMcp10."; SAMcp10=1 ;; 3) SAMcp10=0 ;; 2) SAMcp10=0 ;; - *) echo "Unable to detect SAMcp10 ($COUNT)"; exit 0; ;; + *) echo "Unable to detect SAMcp10 ($COUNT), please put a note in the file." ;; esac fi @@ -65,7 +66,7 @@ case $COUNT in 9) echo "Will include SAMg9, WARNING, there are 2 kinds of 9-values gamma controls."; SAMg9=1 ;; 2) SAMg9=0 ;; - *) echo "Unable to detect SAMg9 ($COUNT)"; exit 0; ;; + *) echo "Unable to detect SAMg9 ($COUNT), please put a note in the file." ;; esac fi |