[Bug 1727528] Re: Linking against libgrpc.so fails

2017-10-25 Thread Thomas Voß
We also want the fix in:

  https://github.com/grpc/grpc/issues/11195

** Bug watch added: github.com/grpc/grpc/issues #11195
   https://github.com/grpc/grpc/issues/11195

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1727528

Title:
  Linking against libgrpc.so fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grpc/+bug/1727528/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1727528] Re: Linking against libgrpc.so fails

2017-10-25 Thread Thomas Voß
I generated this debdiff, hope it is helpful:

diff -Nru grpc-1.3.2/debian/changelog grpc-1.3.2/debian/changelog
--- grpc-1.3.2/debian/changelog 2017-08-14 12:44:38.0 +0200
+++ grpc-1.3.2/debian/changelog 2017-10-25 23:36:46.0 +0200
@@ -1,3 +1,9 @@
+grpc (1.3.2-1ubuntu1) bionic; urgency=medium
+
+  * Revert patch openssl-1.1.0 (Closes: #1727528)
+
+ -- Thomas Voß   Wed, 25 Oct 2017 23:36:46 +0200
+
 grpc (1.3.2-1) unstable; urgency=medium
 
   [ Pirate Praveen  ]
diff -Nru grpc-1.3.2/debian/patches/openssl-1.1.0.diff 
grpc-1.3.2/debian/patches/openssl-1.1.0.diff
--- grpc-1.3.2/debian/patches/openssl-1.1.0.diff2017-04-26 
20:21:19.0 +0200
+++ grpc-1.3.2/debian/patches/openssl-1.1.0.diff1970-01-01 
01:00:00.0 +0100
@@ -1,49 +0,0 @@
-Description: Fix compilation of gRPC with OpenSSL 1.1.0.
-Author: Steinar H. Gunderson 
-
-Index: grpc-1.2.5/src/core/lib/security/credentials/jwt/jwt_verifier.c
-===
 grpc-1.2.5.orig/src/core/lib/security/credentials/jwt/jwt_verifier.c
-+++ grpc-1.2.5/src/core/lib/security/credentials/jwt/jwt_verifier.c
-@@ -481,6 +481,7 @@ static EVP_PKEY *pkey_from_jwk(grpc_exec
-const char *kty) {
-   const grpc_json *key_prop;
-   RSA *rsa = NULL;
-+  BIGNUM *n = NULL, *e = NULL;
-   EVP_PKEY *result = NULL;
- 
-   GPR_ASSERT(kty != NULL && json != NULL);
-@@ -495,24 +496,26 @@ static EVP_PKEY *pkey_from_jwk(grpc_exec
-   }
-   for (key_prop = json->child; key_prop != NULL; key_prop = key_prop->next) {
- if (strcmp(key_prop->key, "n") == 0) {
--  rsa->n =
--  bignum_from_base64(exec_ctx, validate_string_field(key_prop, "n"));
--  if (rsa->n == NULL) goto end;
-+  n = bignum_from_base64(exec_ctx, validate_string_field(key_prop, "n"));
-+  if (n == NULL) goto end;
- } else if (strcmp(key_prop->key, "e") == 0) {
--  rsa->e =
--  bignum_from_base64(exec_ctx, validate_string_field(key_prop, "e"));
--  if (rsa->e == NULL) goto end;
-+  e = bignum_from_base64(exec_ctx, validate_string_field(key_prop, "e"));
-+  if (e == NULL) goto end;
- }
-   }
--  if (rsa->e == NULL || rsa->n == NULL) {
-+  if (e == NULL || n == NULL) {
- gpr_log(GPR_ERROR, "Missing RSA public key field.");
- goto end;
-   }
-+  RSA_set0_key(rsa, n, e, NULL);
-+  n = e = NULL;
-   result = EVP_PKEY_new();
-   EVP_PKEY_set1_RSA(result, rsa); /* uprefs rsa. */
- 
- end:
-   if (rsa != NULL) RSA_free(rsa);
-+  if (n != NULL) BN_free(n);
-+  if (e != NULL) BN_free(e);
-   return result;
- }
- 
diff -Nru grpc-1.3.2/debian/patches/series grpc-1.3.2/debian/patches/series
--- grpc-1.3.2/debian/patches/series2017-08-14 12:44:38.0 +0200
+++ grpc-1.3.2/debian/patches/series2017-10-25 23:31:41.0 +0200
@@ -1,4 +1,3 @@
-openssl-1.1.0.diff
 no-werror.diff
 unvendor-zlib.diff
 fix-libgrpc++-soname.diff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1727528

Title:
  Linking against libgrpc.so fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grpc/+bug/1727528/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1727528] [NEW] Linking against libgrpc.so fails

2017-10-25 Thread Thomas Voß
Public bug reported:

When trying to build against the grpc packages in Artful, linking fails
with:

  /usr/lib/libgrpc.so: undefined reference to `RSA_set0_key'

The package build logs for grpc contain two related warnings:

  dpkg-shlibdeps: warning: symbol RSA_set0_key used by 
debian/libgrpc3/usr/lib/libgrpc.so.3.0.0 found in none of the libraries
  dpkg-shlibdeps: warning: symbol RSA_set0_key used by 
debian/libgrpc3/usr/lib/libgrpc_cronet.so.3.0.0 found in none of the libraries

** Affects: grpc (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1727528

Title:
  Linking against libgrpc.so fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grpc/+bug/1727528/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640320] Re: FTBFS in zesty

2017-03-30 Thread Thomas Voß
** Branch linked: lp:~thomas-voss/location-service/fix-zesty-ftbfs

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640320

Title:
  FTBFS in zesty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1640320/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1675232] Re: Snapd install fails with "No such file or directory" on 14.04

2017-03-23 Thread Thomas Voß
Thanks for the bug report. I failed to reproduce the issue you are
observing. Could you add the output of 'apt-cache show snap-confine' and
'apt-cache show snapd' to the bug report? Do you have -proposed enabled?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1675232

Title:
  Snapd install fails with "No such file or directory" on 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1675232/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1675232] Re: Snapd install fails with "No such file or directory" on 14.04

2017-03-23 Thread Thomas Voß
** Tags added: 14.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1675232

Title:
  Snapd install fails with "No such file or directory" on 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1675232/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1663718] Re: SRU snapd-xdg-open to trusty

2017-03-13 Thread Thomas Voß
Testing packages for snapd-xdg-open master are in:

  https://launchpad.net/~thomas-voss/+archive/ubuntu/trusty

Feedback from testers is very welcome.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1663718

Title:
  SRU snapd-xdg-open to trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd-xdg-open/+bug/1663718/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1663718] Re: SRU snapd-xdg-open to trusty

2017-03-13 Thread Thomas Voß
** Changed in: snapd-xdg-open (Ubuntu)
   Importance: Undecided => High

** Changed in: snapd-xdg-open (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1663718

Title:
  SRU snapd-xdg-open to trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd-xdg-open/+bug/1663718/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1666122] Re: package snapd 2.22.2~14.04 failed to install/upgrade: Unterprozess neues pre-removal-Skript gab den Fehlerwert 5 zurück

2017-02-20 Thread Thomas Voß
** Tags added: trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1666122

Title:
  package snapd 2.22.2~14.04 failed to install/upgrade: Unterprozess
  neues pre-removal-Skript gab den Fehlerwert 5 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1666122/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1655724] Re: Should not break systemd in trusty, conflicts with snapd

2017-02-03 Thread Thomas Voß
I'm assuming that vrruiz added verification-needed accidentally.
Removing it again as the report reads like a success.

** Tags removed: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1655724

Title:
  Should not break systemd in trusty, conflicts with snapd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server-lts-xenial/+bug/1655724/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1655724] Re: Should not break systemd in trusty, conflicts with snapd

2017-02-03 Thread Thomas Voß
I verified that the package from -proposed enables installation of
snapd/systemd without any issues. Waiting for qa to give a vote, too,
before setting to verification-done.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1655724

Title:
  Should not break systemd in trusty, conflicts with snapd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server-lts-xenial/+bug/1655724/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1660550] Re: [MIR] snapd in trusty

2017-02-01 Thread Thomas Voß
@Seth: We are deploying a deputy or subordinate systemd not running as
PID 1 on trusty to support snapd. We isolated systemd on trusty away and
minimized its interaction with the system, except for the functionality
required by snapd. That is, upstart is still PID 1 and responsible for
all system services but snapd.

All adjustments to systemd have been properly SRUd and reviewed.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1660550

Title:
  [MIR] snapd in trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1660550/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631270] Re: running a command for a snap in try mode fails on trusty

2017-02-01 Thread Thomas Voß
** Changed in: snappy
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631270

Title:
  running a command for a snap in try mode fails on trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/snap-confine/+bug/1631270/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs



[Bug 1650389] Re: Installing snapd on 14.04.5 desktop downgrades xorg et al.

2017-02-01 Thread Thomas Voß
** Changed in: systemd (Ubuntu)
   Status: Confirmed => Fix Committed

** Changed in: systemd (Ubuntu Trusty)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1650389

Title:
  Installing snapd on 14.04.5 desktop downgrades xorg et al.

To manage notifications about this bug go to:
https://bugs.launchpad.net/snappy/+bug/1650389/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1660573] Re: "system is booting up" while trying to log in after installing snapd on ubuntu 14.04

2017-02-01 Thread Thomas Voß
I managed to reproduce the issue without snapd being involved at all.
Marking as invalid for snapd, bumping priority to "high". Among other
things, this blocks autopkgtests for snapd on trusty.

** Changed in: snapd
   Status: Confirmed => Invalid

** Changed in: systemd (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1660573

Title:
  "system is booting up" while trying to log in after installing snapd
  on ubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1660573/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1660573] Re: "system is booting up" while trying to log in after installing snapd on ubuntu 14.04

2017-02-01 Thread Thomas Voß
I did some digging into systemd-tmpfiles and its configuration. In the
trusty case, with systemd *not* running as PID 1, the systemd-tmpfiles
does not strictly need to create /run/nologin to shield state
transitions. For that, I removed creation of the file from trusty's
systemd-tmpfiles configuration. Packages for testing purposes are in ppa
:thomas-voss/trusty.

@Paul: Would be great if you could give the package a round of testing,
too.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1660573

Title:
  "system is booting up" while trying to log in after installing snapd
  on ubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1660573/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1660573] Re: "system is booting up" while trying to log in after installing snapd on ubuntu 14.04

2017-01-31 Thread Thomas Voß
** Changed in: snapd
   Status: New => Confirmed

** Changed in: systemd (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1660573

Title:
  "system is booting up" while trying to log in after installing snapd
  on ubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1660573/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1660573] Re: "system is booting up" while trying to log in after installing snapd on ubuntu 14.04

2017-01-31 Thread Thomas Voß
I can occasionally reproduce the issue with an autopkgtest setup using a
qemu vm. Local spread tests using the qemu backend work fine, though.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1660573

Title:
  "system is booting up" while trying to log in after installing snapd
  on ubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1660573/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1660573] Re: "system is booting up" while trying to log in after installing snapd on ubuntu 14.04

2017-01-31 Thread Thomas Voß
This bug report against systemd seems relevant: 
  https://github.com/systemd/systemd/issues/3436

Other distributions are experiencing the issue, too:
  https://bugzilla.opensuse.org/show_bug.cgi?id=980324

** Bug watch added: github.com/systemd/systemd/issues #3436
   https://github.com/systemd/systemd/issues/3436

** Bug watch added: bugzilla.opensuse.org/ #980324
   http://bugzilla.opensuse.org/show_bug.cgi?id=980324

** Also affects: systemd (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1660573

Title:
  "system is booting up" while trying to log in after installing snapd
  on ubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1660573/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1614587] Re: unable to run snapd on ubuntu 14.04

2017-01-25 Thread Thomas Voß
Please note
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1656382/comments/9.
snapd is installable from trusty-proposed.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1614587

Title:
  unable to run snapd on ubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/snappy/+bug/1614587/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1657152] Re: snapd 2.21 on 14.04 does not install systemd file properly

2017-01-25 Thread Thomas Voß
As discussed on IRC: The service unit fails to start up and the snap is
not installed. Hence you don't see the unit showing up.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1657152

Title:
  snapd 2.21 on 14.04 does not install systemd file properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1657152/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1656382] Re: [SRU] 2.21

2017-01-25 Thread Thomas Voß
@Rolf: No worries, thanks for testing it out :) I would appreciate if
you could update https://bugs.launchpad.net/bugs/1614587 with your
latest findings, too. Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1656382

Title:
  [SRU] 2.21

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1656382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1656382] Re: [SRU] 2.21

2017-01-25 Thread Thomas Voß
@Rolf: I fail to reproduce your installation issues after enabling
proposed. snapd installs fine, and cgroup-lite is available from main in
trusty. Would you mind sharing a little more detail about your setup and
the issues you are encountering?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1656382

Title:
  [SRU] 2.21

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1656382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562344] Re: Not working hotkeys for brightness in HP ProBook 640 G2

2017-01-23 Thread Thomas Voß
I verified that brightness control keeps on working on my local machines
(Lenovo x220 and x250). I do not have the HW in the bug title available
for testing purposes.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562344

Title:
  Not working hotkeys for brightness in HP ProBook 640 G2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1562344/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1657504] Re: asciinema 1.3.0 snap is segfaulting on 14.04

2017-01-18 Thread Thomas Voß
For completeness, you might want to attach syslog and the output of
'sudo journalctl -x'.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1657504

Title:
  asciinema 1.3.0 snap is segfaulting on 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asciinema/+bug/1657504/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1655302] Re: [Trusty] systemd startup fails in the presence of cgmanager

2017-01-13 Thread Thomas Voß
** Changed in: systemd (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1655302

Title:
  [Trusty] systemd startup fails in the presence of cgmanager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1655302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1650389] Re: Installing snapd on 14.04.5 desktop downgrades xorg et al.

2017-01-12 Thread Thomas Voß
** Changed in: systemd (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Changed in: systemd (Ubuntu)
   Status: Incomplete => Confirmed

** Changed in: systemd (Ubuntu Trusty)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Changed in: systemd (Ubuntu Trusty)
   Status: New => Confirmed

** Changed in: systemd (Ubuntu Trusty)
   Importance: Undecided => Critical

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1650389

Title:
  Installing snapd on 14.04.5 desktop downgrades xorg et al.

To manage notifications about this bug go to:
https://bugs.launchpad.net/snappy/+bug/1650389/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1655302] Re: [Trusty] systemd startup fails in the presence of cgmanager

2017-01-10 Thread Thomas Voß
Corresponding cgmanager:

cgmanager: could not open cgroup file for 0
cgmanager:victim_under_proxy_cgroup: Could not determine the victim's cgroup
cgmanager:do_move_pid_main: victim's cgroup is not under proxy's (p.uid 0)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1655302

Title:
  [Trusty] systemd startup fails in the presence of cgmanager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1655302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1655302] Re: [Trusty] systemd startup fails in the presence of cgmanager

2017-01-10 Thread Thomas Voß
>From /var/log/upstart/systemd.log:

systemd 204 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA 
-SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
Detected virtualization 'kvm'.
Inserted module 'autofs4'
Set hostname to .
/etc/mtab is not a symlink or not pointing to /proc/self/mounts. This is not 
supported anymore. Please make sure to replace this file by a symlink to avoid 
incorrect or misleading mount(8) output.
Failed to install release agent, ignoring: File exists
ESC[1;31mcgmanager: cgm_enter for controller=systemd, cgroup_path=system, pid=0 
failed: invalid requestESC[0m
ESC[1;31mFailed to create root cgroup hierarchy: Operation not permittedESC[0m
ESC[1;31mFailed to allocate manager object: Operation not permittedESC[0m

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1655302

Title:
  [Trusty] systemd startup fails in the presence of cgmanager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1655302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1655302] [NEW] [Trusty] systemd startup fails in the presence of cgmanager

2017-01-10 Thread Thomas Voß
Public bug reported:

In trusty, systemd 204 clashes with cgmanager, with systemd failing to
start up properly. As a consequence, snapd fails to operate properly.

** Affects: systemd (Ubuntu)
 Importance: High
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1655302

Title:
  [Trusty] systemd startup fails in the presence of cgmanager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1655302/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1650389] [NEW] Installing snapd on 14.04.5 desktop downgrades xorg et al.

2016-12-15 Thread Thomas Voß
Public bug reported:

When trying to install the latest snapd on a 14.04.5 desktop image, the
installation of systemd (as a dependency of snapd) triggers a whole
bunch of downgrades as systemd-shim is removed and replaced with
systemd.

We have to adjust the packaging such that installation of systemd does
not trigger such behavior for packages depending on systemd-shim in
trusty.

** Affects: snappy
 Importance: Critical
 Status: Confirmed

** Affects: systemd (Ubuntu)
 Importance: Critical
 Status: Confirmed


** Tags: 14.04

** Also affects: systemd (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1650389

Title:
  Installing snapd on 14.04.5 desktop downgrades xorg et al.

To manage notifications about this bug go to:
https://bugs.launchpad.net/snappy/+bug/1650389/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1640823] Re: [trusty] mount -o loop is limited to 8 loop devices

2016-11-23 Thread Thomas Voß
Thanks for your detailed feedback, I revisited the patch (please see the
diff here http://paste.ubuntu.com/23522718/). I think (1.) - (3.) are
covered.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640823

Title:
  [trusty] mount -o loop is limited to 8 loop devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1640823/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1635228] Re: Increase number of loopback devices

2016-10-25 Thread Thomas Voß
I just stumbled across an issue when exercising snapd in 14.04 under
qemu. Sideloading the same snap a few times leads to the following error
message:

  Oct 25 21:37:21 autopkgtest mount[21178]: mount: could not find any
free loop device

Might be unrelated, but thought that I would just note down the data
point, nevertheless.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1635228

Title:
  Increase number of loopback devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1635228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1630014] Re: GPS is unable to find any position

2016-10-14 Thread Thomas Voß
No visible satellites in an indoor scenario is certainly possible.
Do you have SIM cards in your phone? Are you actively connected to an AP?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630014

Title:
  GPS is unable to find any position

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1630014/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1632279] [NEW] Support for VC4 driver on pi2

2016-10-11 Thread Thomas Voß
Public bug reported:

The upstream kernel has support for the vc4 driver, providing an open-
source drm driver for accessing the pi2 GPU. The respective driver is
currently missing from the ubuntu pi2 kernel.

** Affects: linux-raspi2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1632279

Title:
  Support for VC4 driver on pi2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1632279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631270] [NEW] running a command for a snap in try mode fails on trusty

2016-10-07 Thread Thomas Voß
Public bug reported:

When executing snapd's spread test suite, tests/main/try fails with:

+ echo 'Given a buildable snap which access confinement-protected resources in 
a known directory'
Given a buildable snap which access confinement-protected resources in a known 
directory
+ echo 'When try is executed on that directory with devmode enabled'
When try is executed on that directory with devmode enabled
+ snap try 
/home/gopath/src/github.com/snapcore/snapd/tests/lib/snaps/test-snapd-tools 
--devmode
test-snapd-tools 1.0 mounted from 
/home/gopath/src/github.com/snapcore/snapd/tests/lib/snaps/test-snapd-tools
+ echo 'Then the snap command is able to access the protected resource'
Then the snap command is able to access the protected resource
+ test-snapd-tools.head -1 /dev/kmsg
cannot snap-exec: cannot read info for "test-snapd-tools": cannot find 
installed snap "test-snapd-tools" at revision x3

mount reports:

qemu:ubuntu-14.04-64 .../tests/main/try# mount
/dev/sda1 on / type ext4 (rw)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
tracefs on /var/lib/ureadahead/debugfs/tracing type tracefs (rw,relatime)
systemd on /sys/fs/cgroup/systemd type cgroup 
(rw,noexec,nosuid,nodev,none,name=systemd)
/var/lib/snapd/snaps/core_6.snap on /snap/core/6 type squashfs (ro)
/home/gopath/src/github.com/snapcore/snapd/tests/lib/snaps/test-snapd-tools on 
/snap/test-snapd-tools/x1 type none (rw,bind)
/home/gopath/src/github.com/snapcore/snapd/tests/lib/snaps/test-snapd-tools on 
/snap/test-snapd-tools/x2 type none (rw,bind)
/home/gopath/src/github.com/snapcore/snapd/tests/lib/snaps/test-snapd-tools on 
/snap/test-snapd-tools/x3 type none (rw,bind)

snap list reports:

qemu:ubuntu-14.04-64 .../tests/main/try# snap list
Name  Version  Rev  Developer  Notes
core  16.04.1  6canonical  -
test-snapd-tools  1.0  x3  devmode,try

** Affects: snap-confine (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631270

Title:
  running a command for a snap in try mode fails on trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/snap-confine/+bug/1631270/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631270] Re: running a command for a snap in try mode fails on trusty

2016-10-07 Thread Thomas Voß
The following setup gives me a working shell

> export SNAP_NAME=test-snapd-tools
> /usr/lib/snapd/snap-confine snap.test-snapd-tools.head /bin/bash

with the following /proc/self/mountinfo:

qemu:ubuntu-14.04-64 .../tests/main/try# cat /proc/self/mountinfo 
79 48 7:0 / / rw,relatime - squashfs /dev/loop0 ro
80 79 0:6 / /dev rw,relatime - devtmpfs udev 
rw,size=736824k,nr_inodes=184206,mode=755
81 80 0:14 / /dev/pts rw,nosuid,noexec,relatime - devpts devpts 
rw,gid=5,mode=620,ptmxmode=000
82 79 8:1 /etc /etc rw,relatime - ext4 /dev/sda1 rw,data=ordered
83 79 8:1 /home /home rw,relatime - ext4 /dev/sda1 rw,data=ordered
84 79 8:1 /root /root rw,relatime - ext4 /dev/sda1 rw,data=ordered
85 79 0:4 / /proc rw,nosuid,nodev,noexec,relatime - proc proc rw
86 79 0:17 / /sys rw,nosuid,nodev,noexec,relatime - sysfs sysfs rw
87 86 0:19 / /sys/fs/cgroup rw,relatime - tmpfs none rw,size=4k,mode=755
88 87 0:25 / /sys/fs/cgroup/systemd rw,nosuid,nodev,noexec,relatime - cgroup 
systemd rw,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd
89 87 0:26 / /sys/fs/cgroup/cpuset rw,relatime - cgroup cgroup rw,cpuset
90 87 0:27 / /sys/fs/cgroup/cpu rw,relatime - cgroup cgroup rw,cpu
91 87 0:28 / /sys/fs/cgroup/cpuacct rw,relatime - cgroup cgroup rw,cpuacct
92 87 0:29 / /sys/fs/cgroup/blkio rw,relatime - cgroup cgroup rw,blkio
93 87 0:30 / /sys/fs/cgroup/memory rw,relatime - cgroup cgroup rw,memory
94 87 0:31 / /sys/fs/cgroup/devices rw,relatime - cgroup cgroup rw,devices
95 87 0:32 / /sys/fs/cgroup/freezer rw,relatime - cgroup cgroup rw,freezer
96 87 0:33 / /sys/fs/cgroup/net_cls rw,relatime - cgroup cgroup rw,net_cls
97 87 0:34 / /sys/fs/cgroup/perf_event rw,relatime - cgroup cgroup rw,perf_event
98 87 0:35 / /sys/fs/cgroup/net_prio rw,relatime - cgroup cgroup rw,net_prio
99 87 0:36 / /sys/fs/cgroup/hugetlb rw,relatime - cgroup cgroup rw,hugetlb
100 87 0:37 / /sys/fs/cgroup/pids rw,relatime - cgroup cgroup rw,pids
101 86 0:20 / /sys/fs/fuse/connections rw,relatime - fusectl none rw
102 86 0:7 / /sys/kernel/debug rw,relatime - debugfs none rw
103 86 0:12 / /sys/kernel/security rw,relatime - securityfs none rw
104 86 0:24 / /sys/fs/pstore rw,relatime - pstore none rw
105 79 8:1 /tmp /tmp rw,relatime - ext4 /dev/sda1 rw,data=ordered
106 105 7:0 / /tmp/snap.rootfs_aECzku rw,relatime - squashfs /dev/loop0 ro
107 106 0:6 / /tmp/snap.rootfs_aECzku/dev rw,relatime - devtmpfs udev 
rw,size=736824k,nr_inodes=184206,mode=755
108 107 0:14 / /tmp/snap.rootfs_aECzku/dev/pts rw,nosuid,noexec,relatime - 
devpts devpts rw,gid=5,mode=620,ptmxmode=000
109 106 8:1 /etc /tmp/snap.rootfs_aECzku/etc rw,relatime - ext4 /dev/sda1 
rw,data=ordered
110 106 8:1 /home /tmp/snap.rootfs_aECzku/home rw,relatime - ext4 /dev/sda1 
rw,data=ordered
111 106 8:1 /root /tmp/snap.rootfs_aECzku/root rw,relatime - ext4 /dev/sda1 
rw,data=ordered
112 106 0:4 / /tmp/snap.rootfs_aECzku/proc rw,nosuid,nodev,noexec,relatime - 
proc proc rw
113 106 0:17 / /tmp/snap.rootfs_aECzku/sys rw,nosuid,nodev,noexec,relatime - 
sysfs sysfs rw
114 113 0:19 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup rw,relatime - tmpfs none 
rw,size=4k,mode=755
115 114 0:25 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/systemd 
rw,nosuid,nodev,noexec,relatime - cgroup systemd 
rw,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd
116 114 0:26 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/cpuset rw,relatime - 
cgroup cgroup rw,cpuset
117 114 0:27 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/cpu rw,relatime - cgroup 
cgroup rw,cpu
118 114 0:28 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/cpuacct rw,relatime - 
cgroup cgroup rw,cpuacct
119 114 0:29 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/blkio rw,relatime - cgroup 
cgroup rw,blkio
120 114 0:30 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/memory rw,relatime - 
cgroup cgroup rw,memory
121 114 0:31 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/devices rw,relatime - 
cgroup cgroup rw,devices
122 114 0:32 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/freezer rw,relatime - 
cgroup cgroup rw,freezer
123 114 0:33 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/net_cls rw,relatime - 
cgroup cgroup rw,net_cls
124 114 0:34 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/perf_event rw,relatime - 
cgroup cgroup rw,perf_event
125 114 0:35 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/net_prio rw,relatime - 
cgroup cgroup rw,net_prio
126 114 0:36 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/hugetlb rw,relatime - 
cgroup cgroup rw,hugetlb
127 114 0:37 / /tmp/snap.rootfs_aECzku/sys/fs/cgroup/pids rw,relatime - cgroup 
cgroup rw,pids
128 113 0:20 / /tmp/snap.rootfs_aECzku/sys/fs/fuse/connections rw,relatime - 
fusectl none rw
129 113 0:7 / /tmp/snap.rootfs_aECzku/sys/kernel/debug rw,relatime - debugfs 
none rw
130 113 0:12 / /tmp/snap.rootfs_aECzku/sys/kernel/security rw,relatime - 
securityfs none rw
131 113 0:24 / /tmp/snap.rootfs_aECzku/sys/fs/pstore rw,relatime - pstore none 
rw
132 79 8:1 /var/snap /var/snap rw,relatime - ext4 /dev/sda1 rw,data=ordered
133 52 8:1 /var/lib/snapd /var/lib/snapd rw,relatime - ext4 /dev/

[Bug 1442105] Re: GPS not working on my BQ Ubuntu Touch

2016-09-13 Thread Thomas Voß
/usr/bin/test_gps is known to segfault and we should totally remove it.

For "Why not gpsd?": It does not support assisted GPS in the way we need
it, nor does it provide any sort of fusioning of network- and satellite-
based positioning ootb. More to this, the NMEA that is reported back
here does not report a position either, all the respective entries are
marked invalid.

Let's focus on the issue at hand.

The bug is marked as incomplete as:

(1.) we fail to reproduce it reliably
(2.) spot something meaningful in the logs that tells us what is going wrong

With that, it would be very helpful if you could provide us with the
information described in the forensics doc:
https://wiki.ubuntu.com/Process/Merges/TestPlan/location-
service#Forensics

If you are fine with switching your image to rw, the output of:

  > sudo apt install ubuntu-location-service-examples
  > sudo GLOG_v=1000 GLOG_logtostderr=1 
/usr/lib/*/ubuntu-location-service/examples/client --bus system

would be very helpful.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1442105

Title:
  GPS not working on my BQ Ubuntu Touch

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1442105/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1620553] Re: Haptics engine uses sync dbus calls. Was: "Taps are delayed by 1-2seconds, although gestures are not. Keyboard is thus unusable"

2016-09-06 Thread Thomas Voß
** Changed in: platform-api (Ubuntu)
   Importance: Critical => High

** Changed in: platform-api (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1620553

Title:
  Haptics engine uses sync dbus calls. Was: "Taps are delayed by
  1-2seconds, although gestures are not. Keyboard is thus unusable"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/platform-api/+bug/1620553/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1620553] Re: Haptics engine uses sync dbus calls. Was: "Taps are delayed by 1-2seconds, although gestures are not. Keyboard is thus unusable"

2016-09-06 Thread Thomas Voß
** Branch linked: lp:~thomas-voss/platform-api/fix-1620553

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1620553

Title:
  Haptics engine uses sync dbus calls. Was: "Taps are delayed by
  1-2seconds, although gestures are not. Keyboard is thus unusable"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/platform-api/+bug/1620553/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1609989] Re: Undefined behavior "member call on null pointer of type 'const struct ResultHolder'"

2016-08-04 Thread Thomas Voß
** Also affects: gmock (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: gmock (Ubuntu)
   Importance: Undecided => Critical

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1609989

Title:
  Undefined behavior "member call on null pointer of type 'const struct
  ResultHolder'"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gmock/+bug/1609989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1609989] [NEW] Undefined behavior "member call on null pointer of type 'const struct ResultHolder'"

2016-08-04 Thread Thomas Voß
Public bug reported:

Please see https://github.com/google/googletest/issues/705 for details.
The respective issue mentions two possible solution:

[1.] Make sure that commit
https://github.com/google/googletest/commit/b5c81098a8ccc25e313ffca56c911200b3591ea0
is present in the package.

[2.] Apply the patch mentioned in
https://github.com/google/googletest/issues/705#issuecomment-235067917.

** Affects: gtest (Ubuntu)
 Importance: Critical
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1609989

Title:
  Undefined behavior "member call on null pointer of type 'const struct
  ResultHolder'"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtest/+bug/1609989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1604446] Re: getcurrentPosition in oxide does not cause a wake up of the GPS

2016-07-20 Thread Thomas Voß
@Mardy: Any help is welcome :) I think we want to first drop providing
the initial estimate altogether to get this bug fixed asap. We can then
go ahead and investigate whether we want to expose the last known
location to applications.

@Alan: I think it's still an estimate and we should provide that data to
applications if they want to leverage it. Point being that it is up to
them to filter/interpret the last known position in a sane way if they
explicitly request it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1604446

Title:
  getcurrentPosition in oxide does not cause a wake up of the GPS

To manage notifications about this bug go to:
https://bugs.launchpad.net/oxide/+bug/1604446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1596951] Re: CameraService in trust prompt should be translated

2016-06-30 Thread Thomas Voß
** Changed in: trust-store (Ubuntu)
   Importance: Undecided => Critical

** Changed in: trust-store (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Changed in: trust-store (Ubuntu)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1596951

Title:
  CameraService in trust prompt should be translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1596951/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1596951] Re: CameraService in trust prompt should be translated

2016-06-30 Thread Thomas Voß
** Branch linked: lp:~thomas-voss/trust-store/lp-1596951

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1596951

Title:
  CameraService in trust prompt should be translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1596951/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1574729] Re: Audio/Video not in sync on M10/frieza

2016-06-30 Thread Thomas Voß
Based on ogra's observation and given that both oxide and media-hub are
affected, pulse and its configuration are quite likely the issue here.
I'm marking pulseaudio as affected. We should aim for fixing the issue
centrally in pulse.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1574729

Title:
  Audio/Video not in sync on M10/frieza

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1574729/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1591935] Re: audio record works for call audio

2016-06-28 Thread Thomas Voß
On the trust-store aspect of this: pulseaudio should use the "feature"
field when asking trust-store to verify requests, and use different
enumeration values to distinguish ordinary microphone recording from
voicecall recording. The respective functionality is available from
trust-store today.

Taking the bigger picture into account, I would vote in favor of keeping
the voicecall recording feature enabled under the assumption that the
different recording types are clearly surfaced to the user.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1591935

Title:
  audio record works for call audio

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1591935/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1596330] Re: AVRCP not working

2016-06-27 Thread Thomas Voß
** Changed in: dbus-cpp (Ubuntu)
   Status: New => Confirmed

** Changed in: media-hub (Ubuntu)
   Status: New => Confirmed

** Changed in: dbus-cpp (Ubuntu)
   Importance: Undecided => High

** Changed in: media-hub (Ubuntu)
   Importance: Undecided => High

** Changed in: dbus-cpp (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1596330

Title:
  AVRCP not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-developer-experience/+bug/1596330/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1594880] Re: Location not available after the wizard until reboot

2016-06-22 Thread Thomas Voß
*** This bug is a duplicate of bug 1415029 ***
https://bugs.launchpad.net/bugs/1415029

This is a well known issue, marked as duplicate of:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1415029

** This bug has been marked a duplicate of bug 1415029
   Not yet available but configured providers should be added as soon as they 
become available

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1594880

Title:
  Location not available after the wizard until reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1594880/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1570878] Re: GPS issue: Updates the speed field only

2016-06-16 Thread Thomas Voß
For bug subscribers: The fix is staged here https://requests.ci-
train.ubuntu.com/#/ticket/1534 and about to hit rc-proposed.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1570878

Title:
  GPS issue: Updates the speed field only

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1570878/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1500039] Re: Ubuntu Phone is not getting a mobile network cell triangulation position

2016-05-25 Thread Thomas Voß
** Changed in: location-service (Ubuntu)
   Status: Confirmed => In Progress

** Branch linked: lp:~thomas-voss/location-service/add-manual-example-
for-network-based-positioning

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1500039

Title:
  Ubuntu Phone is not getting a mobile network cell triangulation
  position

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1500039/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1536774] Re: Location service state should distinguish between enabled/disabled and active/inactive

2016-05-20 Thread Thomas Voß
** Changed in: location-service (Ubuntu)
   Status: Confirmed => In Progress

** Branch linked: lp:~thomas-voss/location-service/expose-engine-state-
information

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1536774

Title:
  Location service state should distinguish between enabled/disabled and
  active/inactive

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1536774/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1573168] Re: [Frieza] Location service fails to start cleanly, entering restart loop - service crashes on start

2016-05-19 Thread Thomas Voß
** Also affects: platform-api
   Importance: Undecided
   Status: New

** Changed in: platform-api
   Status: New => In Progress

** Changed in: platform-api
   Importance: Undecided => Critical

** Changed in: location-service (Ubuntu)
   Status: In Progress => Invalid

** Changed in: platform-api
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Branch linked: lp:~thomas-voss/platform-api/retry-loading-of-gps-hal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1573168

Title:
  [Frieza] Location service fails to start cleanly, entering restart
  loop - service crashes on start

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1573168/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1573168] Re: [Frieza] Location service fails to start cleanly, entering restart loop

2016-05-17 Thread Thomas Voß
@Alfonso: Thanks a lot for the backtrace, I think the underlying issue
is a race on initialization, see frame #6: start thread is presented
with a null pointer. With that, I think we are seeing a race on boot and
whenever the gps first receives an NMEA sequence, trying to hand it to
upper layers of the stack, things go south with a segfault being the
ultimate consequence.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1573168

Title:
  [Frieza] Location service fails to start cleanly, entering restart
  loop

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1573168/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1581559] Re: Some apps don't start (guitar tools, tuner beta)

2016-05-13 Thread Thomas Voß
The CLI warnings are fine, annoying but not serious.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1581559

Title:
  Some apps don't start (guitar tools, tuner beta)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1581559/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1576639] Re: memory threshold is too high

2016-05-03 Thread Thomas Voß
First of all: I agree with the original bug report, relying on % of
total system memory is likely to over- or under-estimate the actual
memory situation. A short-term solution would be to select a fixed
threshold in accordance with the OOM setup configured on our kernels,
thus avoiding the issues presented in #2. Mid-term, I would propose two
adjustments:

(1.) The system should let applications know if a low-on-memory situation is 
encountered, enabling the app to free up memory *before* the kernel OOM handler 
kicks in.
(2.) For the browser specifically: We should fine-tune how memory is freed 
up/tabs are torn down. "Least recently used" is an obvious choice, but we 
should also factor in if a tab is playing audio/video or actively accessing the 
camera/microphone and adjust likelihood of being killed accordingly.

(1.) and (2.) together should solve the issue in a way that handles
memory pressure situations as gracefully as possible.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1576639

Title:
  memory threshold is too high

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-device-images/+bug/1576639/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1573168] Re: [Frieza] Location service fails to start cleanly, entering restart loop

2016-04-25 Thread Thomas Voß
@Mitchell: No workaround, yet. I'm investigating why the service starts
crashing after the OTA. Stay tuned.

** Changed in: location-service (Ubuntu)
   Importance: High => Critical

** Changed in: location-service (Ubuntu)
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1573168

Title:
  [Frieza] Location service fails to start cleanly, entering restart
  loop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1573168/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1565469] Re: GPS Denied without reason

2016-04-21 Thread Thomas Voß
@Victor: 
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1573168,
also left a question for you.

On Thu, Apr 21, 2016 at 3:08 PM, Thomas Voß  wrote:
> @Victor: I think the issue you are mentioning is independent of the
> one originally reported on this bug. I will open up another one if you
> wouldn't mind.
>
> On Thu, Apr 21, 2016 at 2:59 PM, Victor gonzalez  
> wrote:
>> This is the behaviour reported with Frieza:
>>
>> http://makeagif.com/i/QlHXU7
>>
>> --
>> You received this bug notification because you are a bug assignee.
>> https://bugs.launchpad.net/bugs/1565469
>>
>> Title:
>>   GPS Denied without reason
>>
>> Status in Canonical System Image:
>>   Incomplete
>> Status in Oxide:
>>   New
>> Status in location-service package in Ubuntu:
>>   Confirmed
>>
>> Bug description:
>>   You're using the GPS, and without reason, it stops. It doesn't return more 
>> positions.
>>   If you cancel the route and set a new one, a popup will tell you that the 
>> GPS is denied.
>>   I experienced this in OSM (From Alan) too.
>>   You know uNav is not freeze because you can drag the map.
>>
>>   rc-proposed in Nexus 4 and BQ E4.5.
>>
>> To manage notifications about this bug go to:
>> https://bugs.launchpad.net/canonical-devices-system-image/+bug/1565469/+subscriptions

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1565469

Title:
  GPS Denied without reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1565469/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1573168] Re: [Frieza] Location service fails to start cleanly, entering restart loop

2016-04-21 Thread Thomas Voß
@Victor: Do you happen to know if the users experiencing the issue did
an OTA or if they are using the pristine version present on the tablet?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1573168

Title:
  [Frieza] Location service fails to start cleanly, entering restart
  loop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1573168/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1573168] [NEW] [Frieza] Location service fails to start cleanly, entering restart loop

2016-04-21 Thread Thomas Voß
Public bug reported:

See http://makeagif.com/i/QlHXU7 for further details.

** Affects: location-service (Ubuntu)
 Importance: High
 Assignee: Thomas Voß (thomas-voss)
 Status: New

** Changed in: location-service (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1573168

Title:
  [Frieza] Location service fails to start cleanly, entering restart
  loop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1573168/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1478750] Re: location-service ftbfs with GCC 5

2016-04-21 Thread Thomas Voß
** Changed in: location-service (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1478750

Title:
  location-service ftbfs with GCC 5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1478750/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1565469] Re: GPS Denied without reason

2016-04-21 Thread Thomas Voß
@Victor: I think the issue you are mentioning is independent of the
one originally reported on this bug. I will open up another one if you
wouldn't mind.

On Thu, Apr 21, 2016 at 2:59 PM, Victor gonzalez  wrote:
> This is the behaviour reported with Frieza:
>
> http://makeagif.com/i/QlHXU7
>
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/1565469
>
> Title:
>   GPS Denied without reason
>
> Status in Canonical System Image:
>   Incomplete
> Status in Oxide:
>   New
> Status in location-service package in Ubuntu:
>   Confirmed
>
> Bug description:
>   You're using the GPS, and without reason, it stops. It doesn't return more 
> positions.
>   If you cancel the route and set a new one, a popup will tell you that the 
> GPS is denied.
>   I experienced this in OSM (From Alan) too.
>   You know uNav is not freeze because you can drag the map.
>
>   rc-proposed in Nexus 4 and BQ E4.5.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/canonical-devices-system-image/+bug/1565469/+subscriptions

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1565469

Title:
  GPS Denied without reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1565469/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1469008] Re: Ubuntu Phone: 1/15 Times the position & accuracy are lost

2016-04-18 Thread Thomas Voß
*** This bug is a duplicate of bug 1570878 ***
https://bugs.launchpad.net/bugs/1570878

** This bug has been marked a duplicate of bug 1570878
   GPS issue: Updates the speed field only

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1469008

Title:
  Ubuntu Phone: 1/15 Times the position & accuracy are lost

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1469008/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1569617] Re: Engine state is switched to off without the user requesting it

2016-04-13 Thread Thomas Voß
** Also affects: platform-api
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1569617

Title:
  Engine state is switched to off without the user requesting it

To manage notifications about this bug go to:
https://bugs.launchpad.net/platform-api/+bug/1569617/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1569617] Re: Engine state is switched to off without the user requesting it

2016-04-12 Thread Thomas Voß
I'm marking higher-level components accessing service state, too. The
service itself does not alter its own state, and the behavior is random
enough to justify an investigation of values being initialized
correctly.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1569617

Title:
  Engine state is switched to off without the user requesting it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1569617/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1569617] [NEW] Engine state is switched to off without the user requesting it

2016-04-12 Thread Thomas Voß
Public bug reported:

In certain situations (being fuzzy on purpose), the state of the Engine
switches to off without the user having requested the state change.

** Affects: location-service (Ubuntu)
 Importance: High
 Assignee: Thomas Voß (thomas-voss)
 Status: Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1569617

Title:
  Engine state is switched to off without the user requesting it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1569617/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 1565469] Re: GPS Denied without reason

2016-04-11 Thread Thomas Voß
On Mon, Apr 11, 2016 at 9:29 AM, Matthias Apitz  wrote:
> I don't know if this is related (or another bug): I can reproduce 100%
> on OTA-10 with the app SensorStatus, that the app opens successful the
> GPS service, issues some ioctls and without getting or waiting for a
> first fix, it just closes again the GPS, all this within 2 secs:
>

The app does not issue the ioctls, it is the service doing it (or
better: the Android GPS HAL implementation).
Did you put the app into background by any chance?

> $ tail -f /var/log/syslog | fgrep GPS
>
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.400623] 
> (2)[1213:mtk_wmtd][WMT-CTRL][I]wmt_ctrl_gps_sync_set:ctrl GPS_SYNC(4)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.400669] 
> (2)[1213:mtk_wmtd][WMT-FUNC][I]wmt_func_gps_pre_ctrl:ctrl GPS_SYNC_SET(0) ok
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.401061] 
> (1)[1213:mtk_wmtd][WMT-FUNC][I]wmt_func_gps_pre_ctrl:set reg for GPS_SYNC 
> function okay by chip ic_pin_ctrl
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.401191] 
> (1)[1213:mtk_wmtd][WMT-CTRL][I]wmt_ctrl_gps_lna_set:ctrl GPS_LNA(2)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.403702] (3)[1074:mnld][GPS] 
> [I]GPS_open: WMT turn on GPS OK!
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.403753] (3)[1074:mnld][GPS] 
> [I]GPS_compat_ioctl: (8)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.403769] (3)[1074:mnld][GPS] 
> [I]GPS_unlocked_ioctl: GPS co_clock_flag (0)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.404403] (3)[1074:mnld][GPS] 
> [I]GPS_compat_ioctl: (7)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.404419] (3)[1074:mnld][GPS] 
> [I]GPS_unlocked_ioctl: low power flag (0)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.406411] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21505)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.406429] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21505)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.406445] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21506)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.406459] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21506)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.406474] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21515)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.406487] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21515)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.407859] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21505)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.407880] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21505)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.407896] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21506)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.407910] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21506)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.407925] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21515)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.407938] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21515)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.418189] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21505)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.418211] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21505)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.418228] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21506)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.418264] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21506)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.418281] (1)[8506:mnld][GPS] 
> [I]GPS_compat_ioctl: (21515)
> Apr  8 08:48:48 ubuntu-phablet kernel: [  668.418294] (1)[8506:mnld][GPS] 
> [I]GPS_unlocked_ioctl: unknown cmd (21515)
> Apr  8 08:48:50 ubuntu-phablet kernel: [  669.680710] 
> (1)[1213:mtk_wmtd][WMT-CTRL][I]wmt_ctrl_gps_sync_set:ctrl GPS_SYNC(7)
> Apr  8 08:48:50 ubuntu-phablet kernel: [  669.680741] 
> (1)[1213:mtk_wmtd][WMT-FUNC][I]wmt_func_gps_pre_ctrl:ctrl GPS_SYNC_SET(1) ok
> Apr  8 08:48:50 ubuntu-phablet kernel: [  669.681611] 
> (1)[1213:mtk_wmtd][WMT-FUNC][I]wmt_func_gps_pre_ctrl:set reg for GPS_SYNC 
> function okay by chip ic_pin_ctrl
> Apr  8 08:48:50 ubuntu-phablet kernel: [  669.681671] 
> (1)[1213:mtk_wmtd][WMT-CTRL][I]wmt_ctrl_gps_lna_set:ctrl GPS_LNA(7)
> Apr  8 08:48:50 ubuntu-phablet kernel: [  669.683691] (1)[1074:mnld][GPS] 
> [I]GPS_close: WMT turn off GPS OK!
> Apr  8 08:48:50 ubuntu-phablet kernel: [  669.654292] 
> (1)[1964:tx_thread][GPS] [I]GPS_read: signaled by -ERESTARTSYS(-512)
>
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/1565469
>
> Title:
>   GPS Denied without reason
>
> Status in Canonical System Image:
>   Incomplete
> Status in Oxide:
>   New
> Status in location-service package in Ubuntu:
>   Confirmed
>
> Bug description:
>   You're using the GPS, and without reason, it stops. It doesn't return more 
> positions.
>   If you cancel the route and set

Re: [Bug 1468020] Re: Two GPS compatible apps conflict and loose GPS

2016-04-09 Thread Thomas Voß
Let's clarify on the terminology here first: AGPS refers to assistance
technology that
enables a GPS chipset to query relevant information
(ephemeris/almanac) over a data link (mobile data/wifi)
that offers more bandwidth than the satellite down link (~1Hz). With
that, *if* you are travelling in
situations with little satellite visibility, AGPS will be of no help,
as the GPS chipset just has no beacons
from satellites to determine which ones are visible and subsequently
triangulate a position.

I think you are referring to the network-based positioning which
estimates positions based on visible wifis and the radio cell
the phone is currently connected to. For the scenario you are
mentioning: What kind of "dark zones" did you drive through?
Did you have wifi enabled?

On Sat, Apr 9, 2016 at 12:29 AM, Sergi Quiles Pérez  wrote:
> @thomas-voss I forgot to say in my comments that the those tests were
> made travelling inside a car. So the phone was sometimes trying to
> connect to AGPS to know the satellites positions when I was travelling
> in 'dark zones' for satellites.
>
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/1468020
>
> Title:
>   Two GPS compatible apps conflict and loose GPS
>
> Status in Canonical System Image:
>   Incomplete
> Status in location-service package in Ubuntu:
>   Incomplete
>
> Bug description:
>   Meizu MX4 with Ubuntu 15.04 r2
>
>   1. run OSMscout (for example)
>   2. drive/cycle a distance to confirm that GPS tracking is working fine
>   3. run the camera app (for example)
>   4. take a few photos (they'll be tagged with GPS info)
>   5. switch to OSMscout
>   6. drive/cycle and OSM will now not update from GPS
>
>   Haven't tested this with other apps as yet, but it seems that one app
>   will take control of the GPS and not hand it back. (For want of a
>   better explanation.)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/canonical-devices-system-image/+bug/1468020/+subscriptions

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1468020

Title:
  Two GPS compatible apps conflict and loose GPS

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1468020/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 1468020] Re: Two GPS compatible apps conflict and loose GPS

2016-04-08 Thread Thomas Voß
On Fri, Apr 8, 2016 at 7:12 PM, Sergi Quiles Pérez  wrote:
> @thomas-voss
>
> I have removed ~/.cache directory a lot of times and the issue is still
> there.
>
> If you want to reproduce the issue you can do what I say in comment #2.
> You can use those two GPS applications of your choice.
>

I did, works fine for me.

Cheers,

  Thomas
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/1468020
>
> Title:
>   Two GPS compatible apps conflict and loose GPS
>
> Status in Canonical System Image:
>   Incomplete
> Status in location-service package in Ubuntu:
>   Incomplete
>
> Bug description:
>   Meizu MX4 with Ubuntu 15.04 r2
>
>   1. run OSMscout (for example)
>   2. drive/cycle a distance to confirm that GPS tracking is working fine
>   3. run the camera app (for example)
>   4. take a few photos (they'll be tagged with GPS info)
>   5. switch to OSMscout
>   6. drive/cycle and OSM will now not update from GPS
>
>   Haven't tested this with other apps as yet, but it seems that one app
>   will take control of the GPS and not hand it back. (For want of a
>   better explanation.)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/canonical-devices-system-image/+bug/1468020/+subscriptions

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1468020

Title:
  Two GPS compatible apps conflict and loose GPS

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1468020/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1468020] Re: Two GPS compatible apps conflict and loose GPS

2016-04-08 Thread Thomas Voß
@costales: Could you please try to grab the gdb backtrace we are asking
for in #4.

Also: Please try removing cache directories for the involved
applications under ~/.cache.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1468020

Title:
  Two GPS compatible apps conflict and loose GPS

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1468020/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1565469] Re: GPS Denied without reason

2016-04-05 Thread Thomas Voß
Also marking oxide as affected. I fail to reproduce with the simple
command line clients, and a simple qml app does not suffer the symptoms
either. Please also attach the app-specific logs from
/home/phablet/.cache/upstart.

** Also affects: oxide
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1565469

Title:
  GPS Denied without reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1565469/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1551811] Re: Opening the camera for the first time leads to reboot

2016-03-30 Thread Thomas Voß
** Also affects: qtdeclarative-opensource-src (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: trust-store
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1551811

Title:
  Opening the camera for the first time leads to reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/camera-app/+bug/1551811/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1551811] Re: Opening the camera for the first time leads to reboot

2016-03-30 Thread Thomas Voß
@Cemil: Thanks for the investigation. With Cemil's findings, I'm marking
the bug as invalid for trust-store, marking Qt (Quick) as affected
instead.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1551811

Title:
  Opening the camera for the first time leads to reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/camera-app/+bug/1551811/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1447110] Re: location service fills disk with logs, needs to ship logrotate config

2016-03-29 Thread Thomas Voß
I'm reducing the amount of logs generated by session::Skeleton such that
issues in communicating updates to clients are only logged in verbose
setups.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1447110

Title:
  location service fills disk with logs, needs to ship logrotate config

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1447110/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1563206] Re: Ubuntu-Location-Service creates GBs of Logs

2016-03-29 Thread Thomas Voß
*** This bug is a duplicate of bug 1447110 ***
https://bugs.launchpad.net/bugs/1447110

Thanks for your report, I'm marking as a duplicate of
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1447110.

** This bug has been marked a duplicate of bug 1447110
   location service fills disk with logs, needs to ship logrotate config

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1563206

Title:
  Ubuntu-Location-Service creates GBs of Logs

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1563206/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1561627] Re: After days of uptime, apps do not receive position updates.

2016-03-24 Thread Thomas Voß
I'm not questioning if you are observing an issue.  I'm trying to track down 
the issue 
as fast as possible hence why I'm asking for data to narrow down the error 
condition.

I just flashed a Krillin with latest rc-proposed and will use it over
the next couple of days.

 * Do you happen to remember how many days of uptime we are talking about?
 * Did you have the phone in active use? Did the battery level ever become 
critically low?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1561627

Title:
  After days of uptime, apps do not receive position updates.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1561627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1561627] Re: Ubuntu Phone: GPS is not returning positions to apps

2016-03-24 Thread Thomas Voß
I'm adjusting the title. Please do not prefix with "Ubuntu Phone:",
instead add device and image details to the bug report.

** Summary changed:

- Ubuntu Phone: GPS is not returning positions to apps
+ GPS is not returning positions to apps

** Summary changed:

- GPS is not returning positions to apps
+ After days of uptime, apps do not receive position updates.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1561627

Title:
  After days of uptime, apps do not receive position updates.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1561627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1561627] Re: Ubuntu Phone: GPS is not returning positions to apps

2016-03-24 Thread Thomas Voß
Which device/image version are you using?

If you have a device in an error state, would you mind attaching to the
location service with gdb and producing a backtrace to help in
debugging? See https://bugs.launchpad.net/ubuntu/+source/location-
service/+bug/1468020/comments/4 for instructions.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1561627

Title:
  After days of uptime, apps do not receive position updates.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1561627/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1468020] Re: Two GPS compatible apps conflict and loose GPS

2016-03-24 Thread Thomas Voß
Some background first: Applications do not compete or have control over
the GPS at all. Location service is handling all of the access. With
that, an app is not able to block or exclusively own the GPS. There are
multiple other reasons why the apps could appear to not receive any
updates, though. That being said: We have problems reproducing the bug
on latest rc-proposed images. If someone is able to reproduce, it would
be really helpful if we could get gdb backtraces of both apps and the
location service. Please see:

  http://dirac.org/linux/gdb/06-Debugging_A_Running_Process.php

for a good overview of how to attach to a running process. Once
attached, you should enter "t a a bt full" in gdb, and pastebin the
trace(s). Please note that you need to execute gdb with elevated
privileges (sudo) to be able to attach.

** Changed in: location-service (Ubuntu)
   Status: Confirmed => Incomplete

** Changed in: canonical-devices-system-image
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1468020

Title:
  Two GPS compatible apps conflict and loose GPS

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1468020/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1447110] Re: location service fills disk with logs, needs to ship logrotate config

2016-03-23 Thread Thomas Voß
** Changed in: canonical-devices-system-image
   Status: Confirmed => In Progress

** Changed in: location-service (Ubuntu)
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1447110

Title:
  location service fills disk with logs, needs to ship logrotate config

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1447110/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1547040] Re: Allow setup of fingerprint auth in Security & Privacy

2016-03-21 Thread Thomas Voß
** Changed in: platform-api
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Changed in: platform-api
   Status: New => In Progress

** Changed in: platform-api
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1547040

Title:
  Allow setup of fingerprint auth in Security & Privacy

To manage notifications about this bug go to:
https://bugs.launchpad.net/platform-api/+bug/1547040/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1488386] Re: [performance] Double buffering is only smooth while you're touching it

2016-03-18 Thread Thomas Voß
The issue is device-specific and requires integration with SOC-specific
infrastructure. We started wiring up the required functionality across
the stack, with the tablet being the first real consumer. The changes
you are interested in are:

  * 
http://bazaar.launchpad.net/~unity-system-compositor-team/unity-system-compositor/trunk/revision/280
  * http://bazaar.launchpad.net/~phablet-team/platform-api/trunk/revision/317

We require changes to the Android portions of the platform API, though,
with the tablet being the first device that has the required platform
api functions implemented on the Android side. The landing for USC can
be found here:

  * https://requests.ci-train.ubuntu.com/#/ticket/1097

With the silo installed, device performance is boosted for interactive
scenarios, specifically after deep sleep.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1488386

Title:
  [performance] Double buffering is only smooth while you're touching it

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1488386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1554604] Re: get a GPS fix before the human has to wait for the phone

2016-03-15 Thread Thomas Voß
Also note that we do not put the GPS in an explicit battery saving mode
when the phone is in deep sleep. It is the overall system state that
implies maximum battery saving.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1554604

Title:
  get a GPS fix before the human has to wait for the phone

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1554604/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1554604] Re: get a GPS fix before the human has to wait for the phone

2016-03-15 Thread Thomas Voß
Disagreed, instead of randomly polling for a location fix we should make
sure that a location fix can be obtained fast enough. In addition, if we
start polling, we would have to do so all of the time. A single shot
estimate is not good enough as we cannot reliably determine whether the
device is moving or not.

** Changed in: canonical-devices-system-image
   Status: Confirmed => Opinion

** Changed in: location-service (Ubuntu)
   Status: New => Opinion

** Changed in: location-service (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: canonical-devices-system-image
 Assignee: Thomas Voß (thomas-voss) => (unassigned)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1554604

Title:
  get a GPS fix before the human has to wait for the phone

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1554604/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1556835] [NEW] vs-thumb should not rely on standard streams to communicate result image back

2016-03-14 Thread Thomas Voß
Public bug reported:

vs-thumb right now streams extracted data to stdout by default (see
[1]). The approach is brittle in the sense that any component (e.g.,
gstreamer or gstreamer plugin) writing to stdout can easily break the
thumbnail. We have zero control over stdout and should thus either:

  (1.) Rely on specifying an explicit temporary destination file or
  (2.) Open a dedicated communication pipe to communicate back the resulting 
thumbnail to the calling process.

Please also see [2.] for the respective product bug.

[1.] 
http://bazaar.launchpad.net/~unity-team/thumbnailer/trunk/view/head:/src/vs-thumb/thumbnailextractor.cpp#L371
[2.] https://bugs.launchpad.net/zhongshan/+bug/1554867

** Affects: thumbnailer (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1556835

Title:
  vs-thumb should not rely on standard streams to communicate result
  image back

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1556835/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1550371] Re: Webbrowser slow scroll and artifact rendering on freiza

2016-03-02 Thread Thomas Voß
As pointed out in, we should check why:

  EGL_KHR_image, EGL_KHR_image_base and EGL_KHR_gl_texture_2D_image

are not reported by the driver and rule out issues.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1550371

Title:
  Webbrowser slow scroll and artifact rendering on freiza

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1550371/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1547040] Re: Allow setup of fingerprint auth in Security & Privacy

2016-02-19 Thread Thomas Voß
** Also affects: platform-api
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1547040

Title:
  Allow setup of fingerprint auth in Security & Privacy

To manage notifications about this bug go to:
https://bugs.launchpad.net/platform-api/+bug/1547040/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1542947] Re: media-hub deadlocks, breaking ringer

2016-02-09 Thread Thomas Voß
If anyone manages to reproduce, please attach to media-hub with gdb via:

  sudo gdb -p `pidof media-hub-server`
  
And take a threaded backtrace by typing 't a a bt'. Pastebinning the output 
should give us a first hint.
Obviously, the more symbols we have on the backtrace, the better.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1542947

Title:
  media-hub deadlocks, breaking ringer

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1542947/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1533837] Re: Remove GPS control from the battery panel

2016-02-08 Thread Thomas Voß
The Android HAL does not offer a way to force the chipset to "off". The
only influence we have is whether the chipset is used in positioning. As
we will make sure that the chipset is only used as long as it is needed
and if the required accuracy for a fix can only be provided by GPS, a
user should not need to alter the specific system setting.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1533837

Title:
  Remove GPS control from the battery panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1533837/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1536773] [NEW] Service state should distinguish between enabled/disabled and active/inactive

2016-01-21 Thread Thomas Voß
Public bug reported:

Service state should distinguish between enabled/disabled and
active/inactive

** Affects: location-service (Ubuntu)
 Importance: High
 Status: Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1536773

Title:
  Service state should distinguish between enabled/disabled and
  active/inactive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1536773/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1536774] [NEW] Service state should distinguish between enabled/disabled and active/inactive

2016-01-21 Thread Thomas Voß
Public bug reported:

Service state should distinguish between enabled/disabled and
active/inactive

** Affects: location-service (Ubuntu)
 Importance: High
 Assignee: Thomas Voß (thomas-voss)
 Status: Confirmed

** Changed in: location-service (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1536774

Title:
  Service state should distinguish between enabled/disabled and
  active/inactive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1536774/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1533781] Re: trust prompt should hide the OSK

2016-01-21 Thread Thomas Voß
Correcting my previous comment: It's probably best if U8 consistently
hides the OSK whenever a trust prompt is displayed.

** Also affects: trust-store
   Importance: Undecided
   Status: New

** Also affects: unity8
   Importance: Undecided
   Status: New

** No longer affects: trust-store

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1533781

Title:
  trust prompt should hide the OSK

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1533781/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1533781] Re: trust prompt should hide the OSK

2016-01-21 Thread Thomas Voß
** Changed in: trust-store (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1533781

Title:
  trust prompt should hide the OSK

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1533781/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1533781] Re: trust prompt should hide the OSK

2016-01-21 Thread Thomas Voß
Please note that the trust-prompt does have no impact on the app being
stuck or not. It's a completely different executable that runs in a
separate process. The reason apps are getting stuck is that they access
system services in a blocking fashion from their main thread. With that,
we should either adjust the Qt backend implementations to support async
access to the respective services or the apps should move the respective
Qt components to a different thread.

Neither trust-store nor mir/unity8 is affected here.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1533781

Title:
  trust prompt should hide the OSK

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1533781/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1524131] Re: /usr/bin/mediaplayer-app:11:__memcpy_neon:std::char_traits:std::basic_streambuf:std::basic_streambuf:std::__ostream_write

2016-01-15 Thread Thomas Voß
** Changed in: dbus-cpp (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Changed in: mediaplayer-app (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Changed in: dbus-cpp (Ubuntu)
   Importance: Undecided => Critical

** Changed in: dbus-cpp (Ubuntu)
   Status: Confirmed => In Progress

** Changed in: canonical-devices-system-image
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1524131

Title:
  /usr/bin/mediaplayer-
  
app:11:__memcpy_neon:std::char_traits:std::basic_streambuf:std::basic_streambuf:std::__ostream_write

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524131/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1466676] Re: Switching off Location detection does not work as expected

2016-01-11 Thread Thomas Voß
The NearBy scopes falls back to geo-ip based position estimates and
caches last known positions. So even if the system-wide positioning
engine is off, the scope is still able to do whatever it wants in terms
of calling into remote geoip services or rely on cached position
estimates. There is hardly anything we can do about it.

** Changed in: location-service (Ubuntu)
   Status: Confirmed => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1466676

Title:
  Switching off Location detection does not work as expected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1466676/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1419829] Re: [Scope] location settings are enabled by default

2016-01-04 Thread Thomas Voß
** Branch linked: lp:~thomas-voss/trust-store/watch-service-name-owner-
changes

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1419829

Title:
  [Scope] location settings are enabled by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1419829/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1524364] Re: Location is not turned off when gps and location are disabled in indicator

2016-01-03 Thread Thomas Voß
** Changed in: location-service (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1524364

Title:
  Location is not turned off when gps and location are disabled in
  indicator

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524364/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1526877] Re: Dbus errors in the console when closing the music-app

2016-01-02 Thread Thomas Voß
** Branch linked: lp:~thomas-voss/dbus-cpp/fix-1526877

** Changed in: dbus-cpp (Ubuntu RTM)
   Importance: Undecided => High

** Changed in: dbus-cpp (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1526877

Title:
  Dbus errors in the console when closing the music-app

To manage notifications about this bug go to:
https://bugs.launchpad.net/music-app/+bug/1526877/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1526877] Re: Dbus errors in the console when closing the music-app

2016-01-02 Thread Thomas Voß
** Changed in: dbus-cpp (Ubuntu)
   Status: New => Confirmed

** Changed in: dbus-cpp (Ubuntu RTM)
   Status: New => Confirmed

** Changed in: dbus-cpp (Ubuntu)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

** Changed in: dbus-cpp (Ubuntu RTM)
 Assignee: (unassigned) => Thomas Voß (thomas-voss)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1526877

Title:
  Dbus errors in the console when closing the music-app

To manage notifications about this bug go to:
https://bugs.launchpad.net/music-app/+bug/1526877/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

  1   2   3   4   5   >