aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xserver-kdrive-common
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:43:49 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:58 -0500
commit75def7a51b2e8acc682bb27cedcab5f600447546 (patch)
tree8a81cd6fe823e6ede1e26e4e1caea5926edaecfe /recipes/xserver-kdrive-common
parentdae51c8dd4fa9c89872afe0595b525cbb8704bdf (diff)
downloadopenembedded-75def7a51b2e8acc682bb27cedcab5f600447546.tar.gz
xserver-kdrive-common: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/xserver-kdrive-common')
-rw-r--r--recipes/xserver-kdrive-common/xserver-kdrive-common/Xserver2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/xserver-kdrive-common/xserver-kdrive-common/Xserver b/recipes/xserver-kdrive-common/xserver-kdrive-common/Xserver
index c1a9a44012..cb158cb56c 100644
--- a/recipes/xserver-kdrive-common/xserver-kdrive-common/Xserver
+++ b/recipes/xserver-kdrive-common/xserver-kdrive-common/Xserver
@@ -132,7 +132,7 @@ case `module_id` in
ARGS="$ARGS -nocursor"
fi
ARGS="$ARGS -dpi ${DPI} vt1"
- elif [ `module_id` == "GTA02" ] ; then
+ elif [ `module_id` = "GTA02" ] ; then
ARGS="$ARGS -dpi ${DPI} -screen ${SCREEN_SIZE} -mouse tslib -hide-cursor ${PPM} vt1"
XSERVER=/usr/bin/Xglamo
fi