Merge lp:~bzoltan/ubuntu-qtcreator-plugins/flipped into lp:ubuntu-qtcreator-plugins

Proposed by Zoltan Balogh
Status: Needs review
Proposed branch: lp:~bzoltan/ubuntu-qtcreator-plugins/flipped
Merge into: lp:ubuntu-qtcreator-plugins
Diff against target: 269 lines (+76/-23)
18 files modified
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/adb_command (+33/-0)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily (+6/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap (+6/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_hasnetwork (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_reboot (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_rootshell (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_shutdown (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_time_clone (+13/-4)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_version (+4/-3)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_publickey (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_remove (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_version (+2/-2)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_developertools (+1/-1)
ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense (+1/-1)
To merge this branch: bzr merge lp:~bzoltan/ubuntu-qtcreator-plugins/flipped
Reviewer Review Type Date Requested Status
Juhapekka Piiroinen Pending
Review via email: mp+171232@code.launchpad.net

Description of the change

The QtC scripts are fixed for the flipped image and the flasher scripts are extended with the hardware type

To post a comment you must log in.
238. By Zoltan Balogh

introduce the adb_command

239. By Zoltan Balogh

add adb_command and change the device_time_clone to use it

Unmerged revisions

239. By Zoltan Balogh

add adb_command and change the device_time_clone to use it

238. By Zoltan Balogh

introduce the adb_command

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/adb_command'
2--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/adb_command 1970-01-01 00:00:00 +0000
3+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/adb_command 2013-06-25 12:15:34 +0000
4@@ -0,0 +1,33 @@
5+#!/bin/bash
6+# Copyright 2013 Canonical Ltd.
7+#
8+# This program is free software; you can redistribute it and/or modify
9+# it under the terms of the GNU Lesser General Public License as published by
10+# the Free Software Foundation; version 2.1.
11+#
12+# This program is distributed in the hope that it will be useful,
13+# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+# GNU Lesser General Public License for more details.
16+#
17+# You should have received a copy of the GNU Lesser General Public License
18+# along with this program. If not, see <http://www.gnu.org/licenses/>.
19+#
20+# Author: Zoltán Balogh <zoltan.balogh@canonical.com>
21+set -e;
22+
23+while getopts :s:c: flag; do
24+ case $flag in
25+ s)
26+ SERIALNUMBER=$OPTARG;
27+ ;;
28+ c)
29+ COMMAND=$OPTARG;
30+ ;;
31+ ?)
32+ exit;
33+ ;;
34+ esac
35+done
36+
37+adb -s ${SERIALNUMBER} shell usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin ${COMMAND}
38
39=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily'
40--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily 2013-05-01 23:49:31 +0000
41+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily 2013-06-25 12:15:34 +0000
42@@ -20,4 +20,9 @@
43
44 adb -s ${SERIALNUMBER} root
45 adb -s ${SERIALNUMBER} wait-for-device
46-x-terminal-emulator -e "bash -ic 'phablet-flash -s ${SERIALNUMBER}'"
47+
48+SCRIPTPATH=`dirname $0`
49+
50+HARDWARE=`${SCRIPTPATH}/device_version ${SERIALNUMBER} |grep HARDWARE|sed "s/HARDWARE=//g"`
51+
52+x-terminal-emulator -e "bash -ic 'phablet-flash -s ${SERIALNUMBER} -d ${HARDWARE}'"
53
54=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap'
55--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap 2013-05-01 23:49:31 +0000
56+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap 2013-06-25 12:15:34 +0000
57@@ -20,4 +20,9 @@
58
59 adb -s ${SERIALNUMBER} root
60 adb -s ${SERIALNUMBER} wait-for-device
61-x-terminal-emulator -e "bash -ic 'phablet-flash -b -s ${SERIALNUMBER}'"
62+
63+SCRIPTPATH=`dirname $0`
64+
65+HARDWARE=`${SCRIPTPATH}/device_version ${SERIALNUMBER} |grep HARDWARE|sed "s/HARDWARE=//g"`
66+
67+x-terminal-emulator -e "bash -ic 'phablet-flash -b -s ${SERIALNUMBER} -d ${HARDWARE}'"
68
69=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_hasnetwork'
70--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_hasnetwork 2013-05-01 18:19:31 +0000
71+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_hasnetwork 2013-06-25 12:15:34 +0000
72@@ -20,7 +20,7 @@
73
74 adb -s ${SERIALNUMBER} root &> /dev/null
75 adb -s ${SERIALNUMBER} wait-for-device &> /dev/null
76-NM_STATE=`adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin nmcli nm | head -n+2 | awk '{print $2}'`
77+NM_STATE=`adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin nmcli nm | head -n+2 | awk '{print $2}'`
78 if [[ $NM_STATE != *disconnected* ]]; then
79 echo "1"
80 else
81
82=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_reboot'
83--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_reboot 2013-05-01 18:19:31 +0000
84+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_reboot 2013-06-25 12:15:34 +0000
85@@ -20,4 +20,4 @@
86
87 adb -s ${SERIALNUMBER} root &> /dev/null
88 adb -s ${SERIALNUMBER} wait-for-device &> /dev/null
89-adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin reboot
90+adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin reboot
91
92=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_rootshell'
93--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_rootshell 2013-05-01 18:19:31 +0000
94+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_rootshell 2013-06-25 12:15:34 +0000
95@@ -20,4 +20,4 @@
96
97 adb -s ${SERIALNUMBER} root &> /dev/null
98 adb -s ${SERIALNUMBER} wait-for-device &> /dev/null
99-x-terminal-emulator -e "adb -s ${SERIALNUMBER} shell ubuntu_chroot shell"
100+x-terminal-emulator -e "adb -s ${SERIALNUMBER} shell"
101
102=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_shutdown'
103--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_shutdown 2013-05-01 18:19:31 +0000
104+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_shutdown 2013-06-25 12:15:34 +0000
105@@ -20,4 +20,4 @@
106
107 adb -s ${SERIALNUMBER} root &> /dev/null
108 adb -s ${SERIALNUMBER} wait-for-device &> /dev/null
109-adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin shutdown -h now
110+adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin shutdown -h now
111
112=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_time_clone'
113--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_time_clone 2013-05-01 18:19:31 +0000
114+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_time_clone 2013-06-25 12:15:34 +0000
115@@ -22,8 +22,17 @@
116 LOCAL_DATE=`date +%Y%m%d`
117 LOCAL_TIME=`date +%T`
118 TIMEZONE=`cat /etc/timezone`
119-${ADB} sed -i "s#.*/.*#${TIMEZONE=}#" /etc/timezone
120-${ADB} dpkg-reconfigure --frontend noninteractive tzdata >/dev/null
121-${ADB} date +%Y%m%d -s "${LOCAL_DATE}" >/dev/null
122-${ADB} date +%T -s "${LOCAL_TIME}" >/dev/null
123+
124+SCRIPTPATH=`dirname $0`
125+
126+${SCRIPTPATH}/adb_command -s ${SERIALNUMBER} -c "sed -i "s#.*/.*#${TIMEZONE=}#" /etc/timezone"
127+${SCRIPTPATH}/adb_command -s ${SERIALNUMBER} -c "dpkg-reconfigure --frontend noninteractive tzdata >/dev/null"
128+${SCRIPTPATH}/adb_command -s ${SERIALNUMBER} -c "date +%Y%m%d -s ${LOCAL_DATE} >/dev/null"
129+${SCRIPTPATH}/adb_command -s ${SERIALNUMBER} -c "date +%T -s ${LOCAL_TIME} >/dev/null"
130+
131+
132+#${ADB} sed -i "s#.*/.*#${TIMEZONE=}#" /etc/timezone
133+#${ADB} dpkg-reconfigure --frontend noninteractive tzdata >/dev/null
134+#${ADB} date +%Y%m%d -s "${LOCAL_DATE}" >/dev/null
135+#${ADB} date +%T -s "${LOCAL_TIME}" >/dev/null
136
137
138=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_version'
139--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_version 2013-05-01 18:19:31 +0000
140+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/device_version 2013-06-25 12:15:34 +0000
141@@ -17,7 +17,8 @@
142 set -e;
143
144 SERIALNUMBER=$1
145+SCRIPTPATH=`dirname $0`
146
147-adb -s ${SERIALNUMBER} root &> /dev/null
148-adb -s ${SERIALNUMBER} wait-for-device &> /dev/null
149-adb -s ${SERIALNUMBER} shell cat /system/*ubuntu_stamp
150+${SCRIPTPATH}/adb_command -s ${SERIALNUMBER} -c "root &> /dev/null"
151+${SCRIPTPATH}/adb_command -s ${SERIALNUMBER} -c "wait-for-device &> /dev/null"
152+${SCRIPTPATH}/adb_command -s ${SERIALNUMBER} -c "cat /system/*ubuntu_stamp"
153
154=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_publickey'
155--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_publickey 2013-05-01 22:36:21 +0000
156+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_publickey 2013-06-25 12:15:34 +0000
157@@ -20,7 +20,7 @@
158 SERIALNUMBER=$2
159 KEYPATH=~/.ssh/ubuntudevice_${SERIALNUMBER}_id_rsa
160
161-SHELL="adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
162+SHELL="adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
163
164 function check_key {
165
166
167=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_remove'
168--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_remove 2013-05-01 18:19:31 +0000
169+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_remove 2013-06-25 12:15:34 +0000
170@@ -20,6 +20,6 @@
171
172 adb -s ${SERIALNUMBER} root &> /dev/null
173 adb -s ${SERIALNUMBER} wait-for-device &> /dev/null
174-adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin apt-get remove openssh-server -y
175+adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin apt-get remove openssh-server -y
176
177
178
179=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_version'
180--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_version 2013-05-01 22:44:56 +0000
181+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/openssh_version 2013-06-25 12:15:34 +0000
182@@ -20,7 +20,7 @@
183
184 adb -s ${SERIALNUMBER} root &> /dev/null
185 adb -s ${SERIALNUMBER} wait-for-device &> /dev/null
186-adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin apt-get -f install &> /dev/null
187-adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin apt-cache policy openssh-server|grep Installed|sed "s/Installed\://g"
188+adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin apt-get -f install &> /dev/null
189+adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin apt-cache policy openssh-server|grep Installed|sed "s/Installed\://g"
190
191
192
193=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage'
194--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage 2013-05-02 21:46:53 +0000
195+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage 2013-06-25 12:15:34 +0000
196@@ -37,7 +37,7 @@
197
198 SCP="scp -i ${SSHIDENTITY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -P${TARGET_DEVICE_PORT}"
199 SSH="ssh -i ${SSHIDENTITY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p${TARGET_DEVICE_PORT} ${TARGET_DEVICE}"
200-ADB="adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
201+ADB="adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
202
203 SCRIPTPATH=`dirname $0`
204
205
206=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage'
207--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage 2013-05-02 21:46:53 +0000
208+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage 2013-06-25 12:15:34 +0000
209@@ -66,7 +66,7 @@
210
211 SCP="scp -i ${SSHIDENTITY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -P${TARGET_DEVICE_PORT}"
212 SSH="ssh -i ${SSHIDENTITY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p${TARGET_DEVICE_PORT} ${TARGET_DEVICE}"
213-ADB="adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin "
214+ADB="adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin "
215 SCRIPTPATH=`dirname $0`
216
217 ${SCRIPTPATH}/device_portforward ${SERIALNUMBER} ${TARGET_DEVICE_PORT} 3768
218
219=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps'
220--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps 2013-05-01 18:19:31 +0000
221+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps 2013-06-25 12:15:34 +0000
222@@ -19,7 +19,7 @@
223
224 SERIALNUMBER=$1
225 APPLICATION=$2
226-ADB="adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
227+ADB="adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
228
229 if [[ -z ${APPLICATION} ]]; then
230 ${ADB} kill -s 9 \`pidof qmlscene\`
231
232=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package'
233--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package 2013-06-12 08:00:14 +0000
234+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package 2013-06-25 12:15:34 +0000
235@@ -57,7 +57,7 @@
236
237 SCP="scp -i ${SSHIDENTITY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -P${TARGET_DEVICE_PORT}"
238 SSH="ssh -i ${SSHIDENTITY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p${TARGET_DEVICE_PORT} ${TARGET_DEVICE}"
239-ADB="adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
240+ADB="adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
241
242 # -- actions --
243 $SCP ${PACKAGE} ${TARGET_DEVICE}:${TARGET_DEVICE_HOME}
244
245=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_developertools'
246--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_developertools 2013-06-14 07:35:47 +0000
247+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_developertools 2013-06-25 12:15:34 +0000
248@@ -18,7 +18,7 @@
249
250 SERIALNUMBER=$1
251
252-ADB="adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
253+ADB="adb -s ${SERIALNUMBER} shell usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
254
255 adb -s ${SERIALNUMBER} root
256 adb -s ${SERIALNUMBER} wait-for-device
257
258=== modified file 'ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense'
259--- ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense 2013-05-01 18:19:31 +0000
260+++ ubuntu-qtcreator-plugins/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense 2013-06-25 12:15:34 +0000
261@@ -17,7 +17,7 @@
262 set -e;
263
264 SERIALNUMBER=$1
265-ADB="adb -s ${SERIALNUMBER} shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
266+ADB="adb -s ${SERIALNUMBER} shell /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
267
268 # -- actions --
269 $ADB kill -s 9 \`pidof unity-applications-daemon\`

Subscribers

People subscribed via source and target branches

to all changes: