X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=openpandora.oe.git;a=blobdiff_plain;f=recipes%2Fpandora-system%2Fpandora-scripts%2Fop_gamma.sh;h=7ac4892afe3526f99795e4e9df4c8dcd8d1644a2;hp=14440b2482c5d075146641f9be654f6d4d30cfd4;hb=f0eba83644cce42fc7aebc88bf890930a14be82a;hpb=fd4f966e5bd4d94acd78b15e2ed941f42d710782 diff --git a/recipes/pandora-system/pandora-scripts/op_gamma.sh b/recipes/pandora-system/pandora-scripts/op_gamma.sh index 14440b2..7ac4892 100755 --- a/recipes/pandora-system/pandora-scripts/op_gamma.sh +++ b/recipes/pandora-system/pandora-scripts/op_gamma.sh @@ -7,14 +7,21 @@ if [ ! -e "$SYSFS_DSS_GAMMA" ]; then exit 1 fi -if [ "$1" = "0" ]; then - # set default gamma - # TODO: we could set some user global setting here instead - echo 0 > $SYSFS_DSS_GAMMA - exit 0 +gamma="$@" + +if [ "$gamma" = "0" ]; then + # set user default gamma + gamma="1" + if [ -f /etc/pandora/conf/dssgamma.state ]; then + dssgamma=$(cat /etc/pandora/conf/dssgamma.state) + dssgamma=$(echo "scale=2;$dssgamma / 100" | bc) + if [ -n "$dssgamma" ]; then + gamma=$dssgamma + fi + fi fi -if [ "$1" = "1" ]; then +if [ "$gamma" = "1" -o "$gamma" = "1.00" ]; then # no gamma adjustment echo 0 > $SYSFS_DSS_GAMMA exit 0 @@ -26,4 +33,4 @@ if [ "`which op_gammatable`" = "" ]; then fi # just forward args to op_gammatable -op_gammatable "$@" > /sys/devices/platform/omapdss/display0/dss_gamma +op_gammatable $gamma > $SYSFS_DSS_GAMMA