@@ -27,7 +27,6 @@ case $1 in
27
27
CONTACT_COUNT=0
28
28
SMS_COUNT=0
29
29
DIALER_COUNT=0
30
- CAL_COUNT=0
31
30
;;
32
31
33
32
light)
@@ -37,7 +36,6 @@ case $1 in
37
36
CONTACT_COUNT=200
38
37
SMS_COUNT=200
39
38
DIALER_COUNT=50
40
- CAL_COUNT=900
41
39
;;
42
40
43
41
medium)
@@ -47,7 +45,6 @@ case $1 in
47
45
CONTACT_COUNT=500
48
46
SMS_COUNT=500
49
47
DIALER_COUNT=100
50
- CAL_COUNT=1300
51
48
;;
52
49
53
50
heavy)
@@ -57,7 +54,6 @@ case $1 in
57
54
CONTACT_COUNT=1000
58
55
SMS_COUNT=1000
59
56
DIALER_COUNT=200
60
- CAL_COUNT=2400
61
57
;;
62
58
63
59
x-heavy)
@@ -67,7 +63,6 @@ case $1 in
67
63
CONTACT_COUNT=2000
68
64
SMS_COUNT=2000
69
65
DIALER_COUNT=500
70
- CAL_COUNT=3200
71
66
;;
72
67
73
68
* )
110
105
fi
111
106
112
107
if [ -z " $APPS " ]; then
113
- APPS=" gallery music video communications/contacts sms communications/dialer calendar "
108
+ APPS=" gallery music video communications/contacts sms communications/dialer"
114
109
fi
115
110
116
111
SUMMARY=" Summary:\n"
@@ -177,29 +172,6 @@ for app in $APPS; do
177
172
LINE=" Sms Messages: $( printf " %4d" $SMS_COUNT ) "
178
173
;;
179
174
180
- calendar)
181
- echo " Starting calendar"
182
- if [ -z " $IDB_PRESENT " ]; then
183
- echo " Can't push calendar to b2g18 phone..."
184
- LINE=" Calendar: skipped"
185
- else
186
- adb pull /data/local/webapps/webapps.json $SCRIPT_DIR /webapps.json || exit 1
187
- CAL_INFO=$( python $SCRIPT_DIR /readJSON.py $SCRIPT_DIR /webapps.json " calendar.*/localId" )
188
- IFS=' /' read -a CAL_PARTS <<< " $CAL_INFO"
189
- CAL_DOMAIN=${CAL_PARTS[0]}
190
- CAL_ID=${CAL_PARTS[1]}
191
- CAL_DIR=" $CAL_ID +f+app+++$CAL_DOMAIN "
192
- rm -f $SCRIPT_DIR /webapps.json
193
- if [ -z " $CAL_ID " ]; then
194
- echo " Unable to determine calendar application ID - skipping calendar..."
195
- LINE=" Calendar: skipped"
196
- else
197
- adb push $SCRIPT_DIR /calendarDb-$CAL_COUNT .sqlite $IDB_DEFAULT_BASE /$CAL_DIR$IDB_PATH /125582036br2agd-nceal.sqlite || exit 1
198
- LINE=" Calendar: $( printf " %4d" $CAL_COUNT ) "
199
- fi
200
- fi
201
- ;;
202
-
203
175
* )
204
176
echo " APPS includes unknown application name ($app ) - ignoring..."
205
177
LINE=" $app : unknown application name"
0 commit comments