Mir

Merge lp:~alan-griffiths/mir/install_on_android into lp:mir

Proposed by Alan Griffiths
Status: Merged
Merged at revision: 1855
Proposed branch: lp:~alan-griffiths/mir/install_on_android
Merge into: lp:mir
Diff against target: 33 lines (+8/-3)
1 file modified
tools/install_on_android.sh (+8/-3)
To merge this branch: bzr merge lp:~alan-griffiths/mir/install_on_android
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Needs Fixing
Cemil Azizoglu (community) Approve
Alberto Aguirre (community) Approve
Kevin DuBois (community) Approve
Review via email: mp+231191@code.launchpad.net

Commit message

tools: The tools/install_on_android.sh needs updating with current binaries

Description of the change

tools: The tools/install_on_android.sh needs updating with current binaries

To post a comment you must log in.
Revision history for this message
Kevin DuBois (kdub) wrote :

lgtm, could avoid some of the ci problems

review: Approve
Revision history for this message
Alberto Aguirre (albaguirre) wrote :

LGTM

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Cemil Azizoglu (cemil-azizoglu) wrote :

LGTM.

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Alan Griffiths (alan-griffiths) wrote :

> dpkg: error processing archive /var/cache/apt/archives/lxc-android-config_0.193_all.deb (--unpack):
> unable to make backup link of `./lib/udev/rules.d/70-android.rules' before installing new version: Invalid cross-device link

Is there a problem with mako-0090f741e3d141bc?

Re-approving

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Alan Griffiths (alan-griffiths) wrote :
1852. By Alexandros Frantzis

client: Fix SIGTERM dispatch in our default lifecycle event handler, which
was resulting in clients looping infinitely in exception handlers
(LP: #1353867)

Our default lifecycle event handler used to call raise() to send a TERM
signal to the app when a connection break was detected. However, in a
multi-threaded program raise() sends the signal to the current thread only.
If the signal is blocked in that thread, then the signal is lost.

Depending on thread in which we detected that the connection was lost, the
TERM signal would be dispatched (e.g. in the context of a driver callback
asking for the next buffer) or not (e.g. in the context of our main RPC
threads which block all signals). This MP fixes the issue by explicitly
sending the signal to the process instead of the current thread. This ensures
that it will be dispatched to some thread that doesn't block it.

1853. By Daniel van Vugt

DemoRenderer: Don't try to create a texture of width zero. libGL might crash
and definitely won't produce anything useful. This simple regression was
caused by accidentally changing float corner_radius = 0.5f into an int in
revision 1845. (LP: #1358210)

1854. By Daniel van Vugt

Remove reference to non-existent empty variable ${PROTO_HDRS}

1855. By Alan Griffiths

tools: The tools/install_on_android.sh needs updating with current binaries

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'tools/install_on_android.sh'
2--- tools/install_on_android.sh 2014-03-06 06:05:17 +0000
3+++ tools/install_on_android.sh 2014-08-18 13:44:44 +0000
4@@ -26,14 +26,14 @@
5 adb wait-for-device
6 adb root
7 adb wait-for-device
8- adb shell mkdir -p ${RUN_DIR}
9+ adb shell mkdir -p ${RUN_DIR}/udev_recordings
10
11 for x in bin/mir_acceptance_tests \
12 bin/mir_integration_tests \
13 bin/mir_unit_tests \
14 lib/libmirclient.so.* \
15- lib/libmirprotobuf.so.* \
16- lib/libmirplatform.so \
17+ lib/libmircommon.so.* \
18+ lib/libmirplatform.so.* \
19 lib/libmirplatformgraphics.so \
20 lib/libmirclientplatform.so \
21 lib/libmirserver.so.*
22@@ -41,6 +41,11 @@
23 adb push $x ${RUN_DIR}
24 done
25
26+ for x in bin/udev_recordings/*
27+ do
28+ adb push $x ${RUN_DIR}/udev_recordings
29+ done
30+
31 echo "cd ${RUN_DIR};
32 export GTEST_OUTPUT=xml:./;
33 export LD_LIBRARY_PATH=.;

Subscribers

People subscribed via source and target branches