blob: e7c536ba1faffca9724c32f8fc64d77b8504b316 [file] [log] [blame]
Holger Hans Peter Freyther9f86fa32012-06-10 04:53:33 +08001# gsmd This shell script configures for the gsmd init script.
2
3. /etc/init.d/functions
4
5case `machine_id` in
6 "gta01"|"gta02")
7 GSMD_OPTS="-s 115200 -F"
8 if [ -d '/sys/bus/platform/devices/gta01-pm-gsm.0' ] ; then
9 GSM_POW="/sys/bus/platform/devices/gta01-pm-gsm.0/power_on"
10 GSM_RES="/sys/bus/platform/devices/gta01-pm-gsm.0/reset"
11 else
12 GSM_POW="/sys/bus/platform/devices/neo1973-pm-gsm.0/power_on"
13 GSM_RES="/sys/bus/platform/devices/neo1973-pm-gsm.0/reset"
14 fi
15 GSM_DEV="/dev/ttySAC0"
16 GSM_DL="/sys/devices/platform/neo1973-pm-gsm.0/download"
17 ;;
18 "htc_apache"|"htc_blueangel"|"htc_universal")
19 GSMD_OPTS="-s 115200 -F"
20 GSM_DEV="/dev/ttyS0"
21 ;;
22 "htc_himalaya")
23 GSMD_OPTS="-s 115200 -F"
24 GSM_DEV="/dev/ttyS2"
25 ;;
26 "htc_magician")
27 GSMD_OPTS="-s 115200 -F"
28 GSM_DEV="/dev/ttyS1"
29 ;;
30 "palm_treo_650")
31 GSMD_OPTS="-s 460800 -F -w 1"
32 GSM_DEV="/dev/ttyS0"
33 ;;
34 "motorola_ezx_platform")
35 GSMD_OPTS="-s 115200 -F -v ti"
36 GSM_DEV="/dev/mux0"
37 ;;
Holger Hans Peter Freyther4fed1442012-06-11 08:38:52 +020038 "sysmocom_sysmobts_v2")
39 GSMD_OPTS="-v wavecom"
40 GSM_DEV="/dev/ttyS0"
41 ;;
Holger Hans Peter Freyther9f86fa32012-06-10 04:53:33 +080042 *)
43 # Unknown board
44
45 # If you must specify special options, uncomment and modify the next line
46 #GSMD_OPTS="-s 115200 -F"
47
48 # If your GSM device needs to be powered up, uncomment and modify the next line
49 #GSM_POW="/sys/bus/platform/devices/gta01-pm-gsm.0/power_on"
50
51 # If your GSM device then needs to be reset, uncomment and modify the next line
52 #GSM_RES="/sys/bus/platform/devices/gta01-pm-gsm.0/reset"
53
54 # This should be in a common /etc/default/serial, together with
55 # BT_DEV and IR_DEV for devices that have those on a serial port
56 #GSM_DEV="/dev/ttyS1"
57 ;;
58esac