aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/gsm/files/default
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-07-09 18:03:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-10 10:05:54 +0100
commit4cd880c61e9d74dbf1a747f3654239cadadf45ce (patch)
treecb849f41ccaa2df6f50a1a0bb3d6cd734c47468e /meta/recipes-connectivity/gsm/files/default
parentc8f60299424dd912c6402847773f89c0490a1857 (diff)
downloadopenembedded-core-contrib-4cd880c61e9d74dbf1a747f3654239cadadf45ce.tar.gz
libgsmd - remove
This project has been unmaintained for some time, and even the OpenMoko project is not using it any more (in favour of FSO). Since we have ofono in OE-Core which replaces and surpasses its functionality, we can remove libgsmd. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/gsm/files/default')
-rw-r--r--meta/recipes-connectivity/gsm/files/default59
1 files changed, 0 insertions, 59 deletions
diff --git a/meta/recipes-connectivity/gsm/files/default b/meta/recipes-connectivity/gsm/files/default
deleted file mode 100644
index 6ef4f6db57..0000000000
--- a/meta/recipes-connectivity/gsm/files/default
+++ /dev/null
@@ -1,59 +0,0 @@
-# gsmd This shell script configures for the gsmd init script.
-
-. /etc/init.d/functions
-
-case `machine_id` in
- "gta01"|"gta02")
- GSMD_OPTS="-s 115200 -F"
- if [ -d '/sys/bus/platform/devices/gta01-pm-gsm.0' ] ; then
- GSM_POW="/sys/bus/platform/devices/gta01-pm-gsm.0/power_on"
- GSM_RES="/sys/bus/platform/devices/gta01-pm-gsm.0/reset"
- else
- GSM_POW="/sys/bus/platform/devices/neo1973-pm-gsm.0/power_on"
- GSM_RES="/sys/bus/platform/devices/neo1973-pm-gsm.0/reset"
- fi
- GSM_DEV="/dev/ttySAC0"
- GSM_DL="/sys/devices/platform/neo1973-pm-gsm.0/download"
- ;;
- "htc_apache"|"htc_blueangel"|"htc_universal")
- GSMD_OPTS="-s 115200 -F"
- GSM_DEV="/dev/ttyS0"
- ;;
- "htc_himalaya")
- GSMD_OPTS="-s 115200 -F"
- GSM_DEV="/dev/ttyS2"
- ;;
- "htc_magician")
- GSMD_OPTS="-s 115200 -F"
- GSM_DEV="/dev/ttyS1"
- ;;
- "palm_treo_650")
- GSMD_OPTS="-s 460800 -F -w 1"
- GSM_DEV="/dev/ttyS0"
- ;;
- "motorola_ezx_platform")
- GSMD_OPTS="-s 115200 -F -v ti"
- GSM_DEV="/dev/mux0"
- ;;
- "omap3430_ldp_board")
- # Need a machine for the Zoom modem, but this will do
- GSMD_OPTS="-s 460800 -F -v ti -m gta01"
- GSM_DEV="/dev/ttyS0"
- ;;
- *)
- # Unknown board
-
- # If you must specify special options, uncomment and modify the next line
- #GSMD_OPTS="-s 115200 -F"
-
- # If your GSM device needs to be powered up, uncomment and modify the next line
- #GSM_POW="/sys/bus/platform/devices/gta01-pm-gsm.0/power_on"
-
- # If your GSM device then needs to be reset, uncomment and modify the next line
- #GSM_RES="/sys/bus/platform/devices/gta01-pm-gsm.0/reset"
-
- # This should be in a common /etc/default/serial, together with
- # BT_DEV and IR_DEV for devices that have those on a serial port
- #GSM_DEV="/dev/ttyS1"
- ;;
-esac