From: Koen Kooi Date: Sun, 18 Mar 2007 08:31:48 +0000 (+0000) Subject: libgsmd: contrary to popular belief at FIC, you can't actually make calls with a... X-Git-Tag: Release-2010-05/1~8868^2~1068^2^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50633fb4c81554ea39f0ff6c81af8bb73d7c0462;p=openembedded.git libgsmd: contrary to popular belief at FIC, you can't actually make calls with a GPS, you need a GSM --- 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 diff --git a/packages/gsm/libgsmd_svn.bb b/packages/gsm/libgsmd_svn.bb index 99a08436ed..6f65c830ec 100644 --- a/packages/gsm/libgsmd_svn.bb +++ b/packages/gsm/libgsmd_svn.bb @@ -4,7 +4,7 @@ LICENSE = "GPL" SECTION = "libs/gsm" PROVIDES += "gsmd" PV = "0.0+svn${SRCDATE}" -PR = "r3" +PR = "r4" SRC_URI = "svn://svn.openmoko.org/trunk/src/target;module=gsm;proto=http \ file://gsmd"