summaryrefslogtreecommitdiff
path: root/packages/gsm/files/fic-gta01/gsmd
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2007-03-18 08:31:48 +0000
committerKoen Kooi <koen@openembedded.org>2007-03-18 08:31:48 +0000
commit50633fb4c81554ea39f0ff6c81af8bb73d7c0462 (patch)
treef47454a637c8392ae896f4195c7f0972791b9ea5 /packages/gsm/files/fic-gta01/gsmd
parent220c6a6b42b294f284963fce11caf047cf835b76 (diff)
libgsmd: contrary to popular belief at FIC, you can't actually make calls with a GPS, you need a GSM
Diffstat (limited to 'packages/gsm/files/fic-gta01/gsmd')
-rw-r--r--packages/gsm/files/fic-gta01/gsmd6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/gsm/files/fic-gta01/gsmd b/packages/gsm/files/fic-gta01/gsmd
index f5e54dc06d..82fbd29f80 100644
--- a/packages/gsm/files/fic-gta01/gsmd
+++ b/packages/gsm/files/fic-gta01/gsmd
@@ -45,17 +45,17 @@ start() {
# 2. We don't need all the logging crud that daemon/initlog sets
# up -- gsmd does its own syslog calls.
#
- if [ -e "${GPS_DEV}" ]
+ if [ -e "${GSM_DEV}" ]
then
chown uucp.uucp ${GSM_DEV}
mkdir -fp /usr/spool/uucp
chown uucp.uucp /usr/spool/uucp
stty -F /dev/ttySAC0 crtscts
- gsmd -p ${GPS_DEV} ${GPSD_OPTS}
+ gsmd -p ${GSM_DEV} ${GSMD_OPTS}
echo "success"
else
# User needs to symlink ${GPS_DEV} to the right thing
- echo "No ${GPS_DEV} device, aborting gsmd startup."
+ echo "No ${GSM_DEV} device, aborting gsmd startup."
fi
RETVAL=$?
echo