[Touch-packages] [Bug 1727401] Re: Corruption on windowed 3D apps running on dGPU (Intel/AMD)

2017-11-21 Thread Chris Halse Rogers
Hello Timo, or anyone else affected, Accepted mesa into artful-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mesa/17.2.4-0ubuntu1~17.10.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1727390] Re: New bugfix release 17.2.4

2017-11-21 Thread Chris Halse Rogers
Hello Timo, or anyone else affected, Accepted mesa into artful-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mesa/17.2.4-0ubuntu1~17.10.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1720890] Re: vulkan-smoketest segfaults steam vulkan games segfault

2017-11-21 Thread Chris Halse Rogers
Hello Lawrence, or anyone else affected, Accepted mesa into artful-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mesa/17.2.4-0ubuntu1~17.10.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1726017] Update Released

2017-11-21 Thread Chris Halse Rogers
The verification of the Stable Release Update for dnsmasq has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a

[Touch-packages] [Bug 1732172] Re: [CVE] Security Vulnerabilities in OpenSSH on Ubuntu 14.04

2017-11-14 Thread Chris Collins
The current installed version is: OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to openssh in Ubuntu. https://bugs.launchpad.net/bugs/1732172 Title: [CVE] Security Vulnerabilities in

[Touch-packages] [Bug 1573982] Re: LVM boot problem - volumes not activated after upgrade to Xenial

2017-11-11 Thread Chris Sanders
The machine I was using has been redeployed without LVM. If I get a chance to redeploy I'll grab the requested logs. It's fairly trivial to trigger if you have a machine available to deploy with lvm boot as described above. -- You received this bug notification because you are a member of Ubuntu

[Touch-packages] [Bug 1728574] Re: Xwayland fails to initialize on miral-desktop

2017-11-07 Thread Chris Halse Rogers
Long and boring root-cause and psuedo-fix on https://github.com/MirServer/mir/pull/18 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1728574 Title: Xwayland fails to

[Touch-packages] [Bug 1573982] Re: LVM boot problem - volumes not activated after upgrade to Xenial

2017-11-06 Thread Chris Sanders
** Package changed: maas (Ubuntu) => maas -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to lvm2 in Ubuntu. https://bugs.launchpad.net/bugs/1573982 Title: LVM boot problem - volumes not activated after upgrade to Xenial

[Touch-packages] [Bug 1729850] Re: artful openssl FTBFS on armhf

2017-11-06 Thread Chris Coulson
This is a deliberate change in binutils-2.29, which changes how the ADR instruction works with Thumb function symbols: https://sourceware.org/git/gitweb.cgi?p=binutils- gdb.git;a=commit;h=52a86f843b6dee1de9977293da9786649b146b05 There are some changes in openssl which work around this:

[Touch-packages] [Bug 1573982] Re: LVM boot problem - volumes not activated after upgrade to Xenial

2017-11-05 Thread Chris Sanders
I've run across this today and it affects MAAS. MAAS version: 2.2.2 (6099-g8751f91-0ubuntu1~16.04.1) Configuring an LVM based drive with a raid on top of it for the root partition will trigger this. Deploying the default kernel / OS will fail due to inactive volume groups. The fix as expected:

Re: [Touch-packages] [Bug 1397375] Re: [enhancement] need fd (file descriptor) and dispatch function

2017-11-05 Thread Chris Halse Rogers
status wontfix I think we've decided that the Wayland support is where we'll direct new development, so I don't expect more feature development on libmirclient. ** Changed in: mir Status: Triaged => Won't Fix -- You received this bug notification because you are a member of Ubuntu Touch

[Touch-packages] [Bug 1729850] Re: artful openssl FTBFS on armhf

2017-11-04 Thread Chris Coulson
I also verified that with this workaround for the first instruction, the non-NEON path passes the test, by removing this block from sha256-armv4.S: #if __ARM_MAX_ARCH__>=7 && !defined(__KERNEL__) ldr r12,.LOPENSSL_armcap ldr r12,[r3,r12]@ OPENSSL_armcap_P

[Touch-packages] [Bug 1729850] Re: artful openssl FTBFS on armhf

2017-11-04 Thread Chris Coulson
I stepped through 2 builds side-by-side in gdb - one good build built with gcc 7.1, and one bad build, built with gcc 7.2. I managed to narrow it down to a bug in sha256_block_data_order. One of the first differences I spotted was that the good build branches almost immediately to a NEON code

[Touch-packages] [Bug 1729850] Re: artful openssl FTBFS on armhf

2017-11-04 Thread Chris Coulson
Continuing debugging the broken build, if we look at the first few instructions of sha256_block_data_order: 0x004160c0 <+0>: subwr3, pc, #3 0x004160c4 <+4>: ldr.w r12, [pc, #-36] ; 0x4160a4 0x004160c8 <+8>: ldr.w r12, [r3, r12] This looks similar to before - the

[Touch-packages] [Bug 1729850] Re: artful openssl FTBFS on armhf

2017-11-04 Thread Chris Coulson
The incorrect instruction at the start of sha256_block_data_order comes from the ADR pseudo-instruction in sha256-armv4.S: .global sha256_block_data_order .type sha256_block_data_order,%function sha256_block_data_order: #if __ARM_ARCH__<7 sub r3,pc,#8@

[Touch-packages] [Bug 1729850] Re: artful openssl FTBFS on armhf

2017-11-04 Thread Chris Coulson
On the broken build, the first thing to notice is that when entering sha256_block_data_order, we are running in Thumb mode, as bit 5 of the status register is set: (gdb) info registers r0 0x4b7558 4945240 r1 0x4b7580

[Touch-packages] [Bug 1729850] Re: artful openssl FTBFS on armhf

2017-11-04 Thread Chris Coulson
Changing the start of sha256_block_data_order in sha256-armv4.S to avoid the use of the ADR pseudo-instruction like this: global sha256_block_data_order .type sha256_block_data_order,%function sha256_block_data_order: #ifdef __thumb2__ sub r3,pc,#4@

[Touch-packages] [Bug 1720126] Please test proposed package

2017-10-25 Thread Chris J Arges
Hello Pieter, or anyone else affected, Accepted iproute2 into trusty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/iproute2/3.12.0-2ubuntu1.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1720126] Re: [ip link] Message truncated error for large number of passthrough VFs

2017-10-25 Thread Chris J Arges
Hello Pieter, or anyone else affected, Accepted iproute2 into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/iproute2/4.3.0-1ubuntu3.16.04.2 in a few hours, and then in the -proposed repository. Please help us by testing this new package.

[Touch-packages] [Bug 1711760] Re: [2.3] resolv.conf is not set (during commissioning or testing)

2017-10-25 Thread Chris J Arges
** Also affects: resolvconf (Ubuntu Xenial) Importance: Undecided Status: New ** Also affects: cloud-init (Ubuntu Xenial) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to

[Touch-packages] [Bug 1724805] Re: wpa_supplicant fails to shutdown

2017-10-20 Thread Chris Mayo
Know problem with Kernel 4.13. 4.13.8 works for me. ** Description changed: Ubuntu 17.10 wpasupplicant 2.4-0ubuntu10 System shutdown hangs because wpa_supplicant is not stopping itself. Test with: $ sudo systemctl stop wpa_supplicant Journal shows: 11:37:32

[Touch-packages] [Bug 1724805] [NEW] wpa_supplicant fails to shutdown

2017-10-19 Thread Chris Mayo
Public bug reported: Ubuntu 17.10 wpasupplicant 2.4-0ubuntu10 System shutdown hangs because wpa_supplicant is not stopping itself. Test with: $ sudo systemctl stop wpa_supplicant Journal shows: 11:37:32 systemd[1]: Stopping WPA supplicant... 11:37:32 wpa_supplicant[941]: nl80211: deinit

[Touch-packages] [Bug 1706770] Re: Lock screen can be bypassed when auto-login is enabled.

2017-10-18 Thread Chris Gavin
vious that unlocking doesn't actually require a password (i.e. removing the password box from the lock screen when auto-login is enabled). Thanks, Chris To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-mate/+bug/1706770/+subscriptions -- Mailing list: https://

[Touch-packages] [Bug 1706770] Re: Lock screen can be bypassed when auto-login is enabled.

2017-10-18 Thread Chris Gavin
. It seems like either unlocking should always require a password (otherwise what's the point of locking in the first place) or it should be made totally obvious that unlocking doesn't actually require a password (i.e. removing the password box from the lock screen when auto-login is enabled).

[Touch-packages] [Bug 1721537] Re: No sound from headphone jack on xps13 9350 after ubuntu 17.10 dist-upgrade

2017-10-15 Thread Chris Billington
This problem seems to be the same as in the following two Ubuntu stackexchange posts: https://askubuntu.com/questions/768463/laptop-headphone-jack-produces-no-sound https://askubuntu.com/questions/219342/no-sound-output-from-headphone-jack-ubuntu12-04/859931 A temporary solution mentioned in

[Touch-packages] [Bug 1721537] Re: No sound from headphone jack on xps13 9350 after ubuntu 17.10 dist-upgrade

2017-10-15 Thread Chris Billington
I am also having this problem on a Dell Precision 5520 (which is similar hardware to both the Dell XPS 15 and Dell XPS 13). Headphone output worked initially since install and then stopped working mid-session after unplugging and re-plugging the headphones. I was adjusting the "Alert volume"

Re: [Touch-packages] [Bug 1722300] Re: Boot times since artful upgrade have increased 4 fold

2017-10-09 Thread Chris Gregan
ad.net/bugs/1722300 > > Title: > Boot times since artful upgrade have increased 4 fold > > To manage notifications about this bug go to: > https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/ > 1722300/+subscriptions > -- Chris Gregan Quality Assurance Manager Field

[Touch-packages] [Bug 1722300] Re: Boot times since artful upgrade have increased 4 fold

2017-10-09 Thread Chris Gregan
690ms snapd.service 567ms dev-mapper-ubuntu\x2d\x2dvg\x2droot.device 374ms dev-loop8.device 353ms dev-loop9.device 340ms dev-loop10.device 312ms dev-loop4.device Syslog shows: chris@Thermia:~$ cat /var/log/syslog | grep systemd

[Touch-packages] [Bug 1722300] [NEW] Boot times since artful upgrade have increased 4 fold

2017-10-09 Thread Chris Gregan
374ms dev-loop8.device 353ms dev-loop9.device 340ms dev-loop10.device 312ms dev-loop4.device Syslog shows: chris@Thermia:~$ cat /var/log/syslog | grep systemd-networkd-wait-online.service Oct 6 13:56:57 Thermia systemd[1]: systemd-networkd-wait-online.service: Main

[Touch-packages] [Bug 1713747] Re: missing DOMAINSEARCH in initramfs output files if the DHCP server doesn't provide one

2017-10-04 Thread Chris J Arges
Please add SRU information to the bug: https://wiki.ubuntu.com/StableReleaseUpdates#SRU_Bug_Template -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to isc-dhcp in Ubuntu. https://bugs.launchpad.net/bugs/1713747 Title:

[Touch-packages] [Bug 1713747] Re: missing DOMAINSEARCH in initramfs output files if the DHCP server doesn't provide one

2017-10-04 Thread Chris J Arges
Hello Mathieu, or anyone else affected, Accepted isc-dhcp into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/isc- dhcp/4.3.5-3ubuntu1.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1515513] Please test proposed package

2017-10-04 Thread Chris J Arges
Hello Robin, or anyone else affected, Accepted dkms into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/dkms/2.3-3ubuntu1.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1515513] Re: /boot/initrd.img-*.old-dkms files left behind

2017-10-04 Thread Chris J Arges
Hello Robin, or anyone else affected, Accepted dkms into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/dkms/2.2.0.3-2ubuntu11.4 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1720713] [NEW] [E205SA, Realtek ALC255, Speaker, Internal] No sound at all

2017-10-01 Thread Chris Meyer
4.10.0-35.39-generic 4.10.17 Uname: Linux 4.10.0-35-generic x86_64 ApportVersion: 2.20.4-0ubuntu4.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: chris 1657 F pulseaudio CurrentDesktop: Unity:Unity7 Date: Mon Oct 2 12:37:39 2017

[Touch-packages] [Bug 207135] Re: pulseaudio uses too much CPU

2017-09-30 Thread Chris Osgood
My system was doing the same thing. It went from working properly one minute then broken for no reason. Very high CPU usage for pulseaudio, polkitd, dbus-daemon. PulseAudio sound was stuttering. Trying to edit the sound settings in the volume control was impossible because it kept losing the

[Touch-packages] [Bug 1720131] Re: logind holds open file descriptor to DRI nodes, preventing nvidia suspend

2017-09-28 Thread Chris Halse Rogers
** Bug watch added: github.com/systemd/systemd/issues #6908 https://github.com/systemd/systemd/issues/6908 ** Also affects: systemd via https://github.com/systemd/systemd/issues/6908 Importance: Unknown Status: Unknown -- You received this bug notification because you are a

[Touch-packages] [Bug 1720131] [NEW] logind holds open file descriptor to DRI nodes, preventing nvidia suspend

2017-09-28 Thread Chris Halse Rogers
Public bug reported: The nvidia binary kernel driver now creates /dev/dri/card? nodes. When switching between the nvidia and intel drivers on a hybrid system, all holders of the DRI node need to relinquished so that the nvidia driver can be unloaded so that bbswitch can turn the card off. In

[Touch-packages] [Bug 1623666] Re: iOS device contents not displayed in Ubuntu

2017-09-27 Thread Chris Cheney
I should note that the above is while using the regular packaged versions of idevicepair / ifuse. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to libimobiledevice in Ubuntu. https://bugs.launchpad.net/bugs/1623666 Title:

[Touch-packages] [Bug 1623666] Re: iOS device contents not displayed in Ubuntu

2017-09-27 Thread Chris Cheney
For whatever reason while trying to backup an iPhone 6s+ 10.3.3 before upgrading to 11.0 I can't see the photo mount in mate fuse at all but if I use idevicepair and ifuse from the command line it lets me copy the files. I'm not sure if this is related to the issue others have reported above. --

[Touch-packages] [Bug 1719199] Re: Scaling factor reverts to 1.0 when screen turns off

2017-09-24 Thread Chris Papademetrious
** Description changed: This happens in Ubuntu 17.04 booted directly from the distribution live- CD. When the scaling factor (Display > Scale for menus and titlebars) is set to a value other than 1.0, then the monitor turns off due to timeout (Brightness & Lock > Turn screen off when

[Touch-packages] [Bug 1719199] [NEW] Scaling factor reverts to 1.0 when screen turns off

2017-09-24 Thread Chris Papademetrious
Public bug reported: This happens in Ubuntu 17.04 booted directly from the distribution live- CD. When the scaling factor (Display > Scale for menus and titlebars) is set to a value other than 1.0, then the monitor turns off due to timeout (Brightness & Lock > Turn screen off when inactive for),

[Touch-packages] [Bug 1702056] Re: perf broken on 4.11.0-9-generic (artful): /usr/lib/linux-tools/4.11.0-9-generic/perf: error while loading shared libraries: libbfd-2.28-system.so: cannot open shared

2017-09-22 Thread Chris West
I have "reopened" this bug as: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1718897 , as it still fails for me (a month later). -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to binutils in Ubuntu.

[Touch-packages] [Bug 1544942] Re: Marks unneeded packages as manually installed, if --dry-run is used

2017-09-20 Thread Chris J Arges
Hello Jarno, or anyone else affected, Accepted unattended-upgrades into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source /unattended-upgrades/0.90ubuntu0.8 in a few hours, and then in the -proposed repository. Please help us by testing this new

[Touch-packages] [Bug 1706818] Update Released

2017-09-20 Thread Chris J Arges
The verification of the Stable Release Update for ntp has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a

[Touch-packages] [Bug 1264368] Re: GLib-CRITICAL **: Source ID was not found when attempting to remove it - warning when leaving Network menu of g-c-c

2017-09-15 Thread chris pollock
I see the same in my Ubuntu 16.04.3 (gnome-shell:3000): GLib-CRITICAL **: Source ID 3572546 was not found when attempting to remove it Kernel 4.10.0-33-generic apt-cache policy gnome-shell gnome-shell: Installed: 3.18.5-0ubuntu0.3 Candidate: 3.18.5-0ubuntu0.3 -- You received this bug

[Touch-packages] [Bug 1713169] Update Released

2017-09-12 Thread Chris Halse Rogers
The verification of the Stable Release Update for apparmor has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter

[Touch-packages] [Bug 1682934] Proposed package upload rejected

2017-09-05 Thread Chris Halse Rogers
An upload of python3.5 to xenial-proposed has been rejected from the upload queue for the following reason: "Bug# 1682934 is missing SRU testcase/impact/regresison potential; all bugs are missing a Zesty upload which is requried before we could release the Xenial update.". -- You received this

[Touch-packages] [Bug 1691848] Proposed package upload rejected

2017-09-05 Thread Chris Halse Rogers
An upload of python3.5 to xenial-proposed has been rejected from the upload queue for the following reason: "Bug# 1682934 is missing SRU testcase/impact/regresison potential; all bugs are missing a Zesty upload which is requried before we could release the Xenial update.". -- You received this

[Touch-packages] [Bug 1713880] [NEW] glib-compile-schemas crashed with SIGSEGV in __GI___libc_free()

2017-08-29 Thread Chris Hermansen
Public bug reported: Not a lot,really - a massive number of packages upgraded in Artful, rebooted with systemctl,then this happened after logging in and before firing anything else up. ProblemType: Crash DistroRelease: Ubuntu 17.10 Package: libglib2.0-0 2.53.6-1ubuntu1 ProcVersionSignature:

[Touch-packages] [Bug 1696686] Re: ld: Relocation truncated to fit: R_ARM_THM_JUMP24 for relocation to PLT entry

2017-08-23 Thread Chris J Arges
Hello Diana, or anyone else affected, Accepted binutils into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/binutils/2.26.1-1ubuntu1~16.04.5 in a few hours, and then in the -proposed repository. Please help us by testing this new package.

[Touch-packages] [Bug 1539209] Re: pulseaudio crashed with SIGABRT in pa_alsa_path_set_volume() from source_set_volume_cb() from pa_source_process_msg()

2017-08-23 Thread Chris J Arges
Is there a fix required for zesty as well? -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/1539209 Title: pulseaudio crashed with SIGABRT in pa_alsa_path_set_volume()

[Touch-packages] [Bug 1539209] Re: pulseaudio crashed with SIGABRT in pa_alsa_path_set_volume() from source_set_volume_cb() from pa_source_process_msg()

2017-08-23 Thread Chris J Arges
Hello MrRomanze, or anyone else affected, Accepted pulseaudio into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pulseaudio/1:8.0-0ubuntu3.4 in a few hours, and then in the -proposed repository. Please help us by testing this new package.

[Touch-packages] [Bug 1562817] Re: pulseaudio crashed with SIGABRT in pa_alsa_path_set_volume() from source_write_volume_cb() from source_set_port_cb() from pa_source_process_msg() from source_process

2017-08-23 Thread Chris J Arges
Hello TBS, or anyone else affected, Accepted pulseaudio into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pulseaudio/1:8.0-0ubuntu3.4 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1672171] Re: pulseaudio crashed with SIGABRT in device_start_waiting_for_profiles() from pa_bluetooth_transport_set_state() from profile_new_connection() from profile_handler() f

2017-08-23 Thread Chris J Arges
Hello bikram, or anyone else affected, Accepted pulseaudio into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pulseaudio/1:8.0-0ubuntu3.4 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1690028] Re: pulseaudio crashed with SIGABRT in device_start_waiting_for_profiles() from pa_bluetooth_transport_set_state() from endpoint_set_configuration() from endpoint_handle

2017-08-23 Thread Chris J Arges
Hello errors.ubuntu.com, or anyone else affected, Accepted pulseaudio into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pulseaudio/1:8.0-0ubuntu3.4 in a few hours, and then in the -proposed repository. Please help us by testing this new

[Touch-packages] [Bug 1598300] Re: CUPS web interface stops responding after a while

2017-08-22 Thread Chris Halse Rogers
Hello dominix, or anyone else affected, Accepted cups into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/cups/2.1.3-4ubuntu0.3 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1642966] Re: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2017-08-22 Thread Chris Halse Rogers
Hello Mark, or anyone else affected, Accepted cups into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/cups/2.1.3-4ubuntu0.3 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1642966] Proposed package upload rejected

2017-08-22 Thread Chris Halse Rogers
An upload of cups to xenial-proposed has been rejected from the upload queue for the following reason: "Please re-upload including the changelog from the not-released-from-proposed 2.1.3-4ubuntu0.2 in the _changes file. This is needed for SRU tracking.". -- You received this bug notification

[Touch-packages] [Bug 1708635] Re: Valgrind reports " Uninitialised value was created by a stack allocation" in __uuid_generate_random

2017-08-07 Thread Chris Halse Rogers
Already have done: https://github.com/karelzak/util-linux/pull/492 ☺ -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to util-linux in Ubuntu. https://bugs.launchpad.net/bugs/1708635 Title: Valgrind reports " Uninitialised

[Touch-packages] [Bug 1708635] Re: Valgrind reports " Uninitialised value was created by a stack allocation" in __uuid_generate_random

2017-08-06 Thread Chris Halse Rogers
** Changed in: util-linux (Ubuntu) Assignee: (unassigned) => Chris Halse Rogers (raof) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to util-linux in Ubuntu. https://bugs.launchpad.net/bugs/1708635 Title: Valgr

[Touch-packages] [Bug 1610944] Re: GNOME Online Accounts breaks if you log out (until you reboot)

2017-07-20 Thread Chris
My workaround above (calling "goa-daemon --replace" on login) isnt working all the time, sadly. On occasion, I am ending up with 3 or 4 instances of goa-daemon per user (I guess --replace isnt able to kill the previous instance?). Multiple instances results in high CPU usage. I have also seen

[Touch-packages] [Bug 1704843] [NEW] segfault processing very large input list

2017-07-17 Thread Chris Drost
Public bug reported: The attached apport file was created from a segfault/core-dump observed while using wget to try to audit a large number of websites to determine which ones were online, which were redirects and where they redirected to, etc. The exact command-line attempts a considerable

[Touch-packages] [Bug 1704297] [NEW] Parrot Zik headphones stuck in A2DP profile

2017-07-14 Thread Chris Halse Rogers
-generic x86_64 NonfreeKernelModules: zfs zunicode zavl zcommon znvpair nvidia_uvm nvidia_drm nvidia_modeset nvidia ApportVersion: 2.20.5-0ubuntu5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC2: chris 7755 F pulseaudio /dev/snd/controlC1: chris

[Touch-packages] [Bug 1689825] Re: gnome-keyring not unlocked on boot

2017-07-08 Thread Chris
It may not be flatpak on its own, but the machine I installed (and later removed and purged) flatkpak on this problem exists. (So a correlation does seem to exist) It might have something to do with other PPAs or how packages you install from external PPAs affect the system. The only major changes

[Touch-packages] [Bug 1681513] Re: Ubuntu 17.04/17.10: New feature in NetworkManager stops several WiFi adapters from working (MAC Address Randomization issue)

2017-06-28 Thread Chris Moore
I also have this problem running Ubuntu 17.04 with a TrendNet TEW-644UB USB WiFi stick (ID 148f:2770 Ralink Technology, Corp. RT2770 Wireless Adapter). The symptoms are that it sees the networks but won't connect, even if unencrypted. The workaround in #1 also works for me. Many thanks, Jesse.

[Touch-packages] [Bug 1674258] Update Released

2017-06-27 Thread Chris Halse Rogers
The verification of the Stable Release Update for util-linux has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you

[Touch-packages] [Bug 1283003] Re: Bluetooth headset/speakers listed but not selectable in Sound settings

2017-06-21 Thread Chris Halse Rogers
Hello Fabien, or anyone else affected, Accepted pulseaudio into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pulseaudio/1:8.0-0ubuntu3.3 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1438510] Re: [regression] Bluetooth audio no longer supports A2DP (stuck in HSP/HFP mode)

2017-06-21 Thread Chris Halse Rogers
Hello Dustin, or anyone else affected, Accepted pulseaudio into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pulseaudio/1:8.0-0ubuntu3.3 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1582213] Re: [xenial] Bluetooth device doesn't play any sound in A2DP mode unless set to HSP/HFP first

2017-06-21 Thread Chris Halse Rogers
Hello Mary, or anyone else affected, Accepted pulseaudio into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pulseaudio/1:8.0-0ubuntu3.3 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1582213] Re: [xenial] Bluetooth device doesn't play any sound in A2DP mode unless set to HSP/HFP first

2017-06-21 Thread Chris Halse Rogers
I've accepted this SRU to xenial-proposed. Can I confirm that this bug is already fixed in yakkety and zesty? If not, could you please upload fixes for those releases, too. We need to ensure that upgrades don't regress. -- You received this bug notification because you are a member of Ubuntu

[Touch-packages] [Bug 1686344] Please test proposed package

2017-06-20 Thread Chris Halse Rogers
Hello Timo, or anyone else affected, Accepted mesa into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mesa/17.0.7-0ubuntu0.17.04.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1674258] Re: lscpu crashs when /dev/mem is not stable to read

2017-06-14 Thread Chris J Arges
Hello Ike, or anyone else affected, Accepted util-linux into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/util- linux/2.27.1-6ubuntu3.3 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1674258] Please test proposed package

2017-06-14 Thread Chris J Arges
Hello Ike, or anyone else affected, Accepted util-linux into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/util- linux/2.29-1ubuntu2.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1674258] Please test proposed package

2017-06-14 Thread Chris J Arges
Hello Ike, or anyone else affected, Accepted util-linux into yakkety-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/util- linux/2.28.2-1ubuntu1.2 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1630516] Update Released

2017-06-14 Thread Chris J Arges
The verification of the Stable Release Update for logrotate has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you

[Touch-packages] [Bug 1630516] Re: Logrotate doesn't clean old system logs, allowing them to fill the disk

2017-06-14 Thread Chris J Arges
Also validated on Yakkety. ** Tags added: verification-done-yakkety ** Tags removed: verification-needed -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to logrotate in Ubuntu. https://bugs.launchpad.net/bugs/1630516 Title:

[Touch-packages] [Bug 1630516] Re: Logrotate doesn't clean old system logs, allowing them to fill the disk

2017-06-14 Thread Chris J Arges
I have validated the trusty version works as expected! Thanks ** Tags added: verification-done-trusty -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to logrotate in Ubuntu. https://bugs.launchpad.net/bugs/1630516 Title:

[Touch-packages] [Bug 1697306] [NEW] error

2017-06-11 Thread chris
Public bug reported: does not update Shows Error: BrokenCount >0 ProblemType: Bug DistroRelease: Ubuntu 16.04 Package: xorg 1:7.7+13ubuntu3 ProcVersionSignature: Ubuntu 4.4.0-78.99-generic 4.4.62 Uname: Linux 4.4.0-78-generic x86_64 ApportVersion: 2.20.1-0ubuntu2.5 Architecture: amd64

[Touch-packages] [Bug 1696797] Re: [regression] Mir EGL clients all crash with SIGSEGV in XGetXCBConnection()

2017-06-08 Thread Chris Halse Rogers
So, the problem here is going to be the EGL platform detection - it's failing to detect Mir, and is instead trying (and failing) to connect to an X server. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mesa in Ubuntu.

[Touch-packages] [Bug 1696799] [NEW] package libssl1.0.0:i386 1.0.2g-1ubuntu4.8 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting confi

2017-06-08 Thread chris
Public bug reported: share/bleachbit/bleachbit/Command.py", line 131, in execute func_ret = self.func() File "/usr/share/bleachbit/bleachbit/Unix.py", line 383, in apt_autoremove raise RuntimeError(line) RuntimeError: E: Sub-process /usr/bin/dpkg returned an error code (1) Delete 1.1MB

[Touch-packages] [Bug 1627950] Re: Stopped (with error) ... messages on encrypted LVM shutdown

2017-06-08 Thread Chris Johnston
** Tags added: sts -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to systemd in Ubuntu. https://bugs.launchpad.net/bugs/1627950 Title: Stopped (with error) ... messages on encrypted LVM shutdown Status in systemd: Unknown

[Touch-packages] [Bug 1627950] Re: Stopped (with error) ... messages on encrypted LVM shutdown

2017-06-08 Thread Chris Johnston
** Also affects: systemd via https://github.com/systemd/systemd/issues/1620 Importance: Unknown Status: Unknown -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to systemd in Ubuntu.

[Touch-packages] [Bug 1674399] Update Released

2017-06-07 Thread Chris Halse Rogers
The verification of the Stable Release Update for openssl has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a

[Touch-packages] [Bug 1672955] Re: unity-system-compositor crashed with SIGSEGV in libinput_device_config_accel_is_available() from libinput_device_config_accel_set_speed() from mir::input::evdev::Lib

2017-06-07 Thread Chris Halse Rogers
Hello errors.ubuntu.com, or anyone else affected, Accepted mir into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+17.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new

[Touch-packages] [Bug 1675357] Re: Mir sending key repeat events continually to nested shell after VT switch (causes Unity8 lockup for a while)

2017-06-07 Thread Chris Halse Rogers
Hello Michał, or anyone else affected, Accepted mir into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+17.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1685186] Re: [SRU] Mir needs to be updated to 0.26 in 16.04LTS

2017-06-07 Thread Chris Halse Rogers
Hello Alan, or anyone else affected, Accepted mir into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+17.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1677239] Re: mir_demo_standalone_render_overlays fails to link

2017-06-07 Thread Chris Halse Rogers
Hello Alan, or anyone else affected, Accepted mir into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+17.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1675138] Re: Please transition to Boost 1.62

2017-06-07 Thread Chris Halse Rogers
Hello Balint, or anyone else affected, Accepted mir into zesty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+17.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1677239] Please test proposed package

2017-06-07 Thread Chris Halse Rogers
Hello Alan, or anyone else affected, Accepted mir into yakkety-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.10.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1675138] Please test proposed package

2017-06-07 Thread Chris Halse Rogers
Hello Balint, or anyone else affected, Accepted mir into yakkety-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.10.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1685186] Please test proposed package

2017-06-07 Thread Chris Halse Rogers
Hello Alan, or anyone else affected, Accepted mir into yakkety-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.10.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1675357] Re: Mir sending key repeat events continually to nested shell after VT switch (causes Unity8 lockup for a while)

2017-06-07 Thread Chris Halse Rogers
Hello Michał, or anyone else affected, Accepted mir into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1675357] Please test proposed package

2017-06-07 Thread Chris Halse Rogers
Hello Michał, or anyone else affected, Accepted mir into yakkety-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.10.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1685186] Re: [SRU] Mir needs to be updated to 0.26 in 16.04LTS

2017-06-07 Thread Chris Halse Rogers
Hello Alan, or anyone else affected, Accepted mir into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1677239] Re: mir_demo_standalone_render_overlays fails to link

2017-06-07 Thread Chris Halse Rogers
Hello Alan, or anyone else affected, Accepted mir into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1675138] Re: Please transition to Boost 1.62

2017-06-07 Thread Chris Halse Rogers
Hello Balint, or anyone else affected, Accepted mir into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Touch-packages] [Bug 1672955] Re: unity-system-compositor crashed with SIGSEGV in libinput_device_config_accel_is_available() from libinput_device_config_accel_set_speed() from mir::input::evdev::Lib

2017-06-07 Thread Chris Halse Rogers
Hello errors.ubuntu.com, or anyone else affected, Accepted mir into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.04.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new

[Touch-packages] [Bug 1672955] Please test proposed package

2017-06-07 Thread Chris Halse Rogers
Hello errors.ubuntu.com, or anyone else affected, Accepted mir into yakkety-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/mir/0.26.3+16.10.20170605-0ubuntu1 in a few hours, and then in the -proposed repository. Please help us by testing this new

[Touch-packages] [Bug 1610944] Re: GNOME Online Accounts breaks if you log out (until you reboot)

2017-06-05 Thread Chris
I found the bug described and confirmed on redhat, where I also found the solution. (although they have the goa-demon in the /usr/libexec/ folder) https://bugzilla.redhat.com/show_bug.cgi?id=1340203 As a work-around, for each user account I created a new file in ~/.config/autostart/ called

[Touch-packages] [Bug 1695775] [NEW] goa-daemon not stopped on logout, and gnome-keyring unusable on next log in

2017-06-04 Thread Chris
Public bug reported: Bug seen in Evolution - fails to connect to my google accounts on second log-in. Accounts are set up fine, but after a log out then log back in, they fail. Error reported in Evolution is: "Failed to authenticate: Failed to obtain an access token for

<    5   6   7   8   9   10   11   12   13   14   >