[Bug 1895372] [NEW] C++11 with GNU VLA extention results in ICE

2020-09-11 Thread Andy Zheng
Public bug reported:

I have just encountered an "internal compiler error" while using gcc-7.

```cpp source code
#include 

int main()
{
int N = 100;
int K = 100;
int dp[N][2][K] = {0};
printf("%d\n", dp[0][0][0]);
return 0;
}
```

After executing 
  g++ test.cc
Output is 
  test.cc: In function ‘int main()’:
  test.cc:7:25: internal compiler error: in make_decl_rtl, at varasm.c:1310
   int dp[N][2][K] = {0};
 ^
  Please submit a full bug report,
  with preprocessed source if appropriate.
  See  for instructions.

which is exectly same with these three options: "-std=c++11",
"-std=c++14", "-std=c++17".

With executing 
  g++ test.cc -std=c++98
the binary is produced normally.

With executing 
  g++ test.cc -std=c++98 -ansi -pedantic -Wextra -Werror
Output is 
  test.cc: In function ‘int main()’:
  test.cc:7:19: error: ISO C++ forbids variable length array ‘dp’ [-Werror=vla]
   int dp[N][2][K] = {0};
   ^
  test.cc:7:19: error: ISO C++ forbids variable length array ‘dp’ [-Werror=vla]
  cc1plus: all warnings being treated as errors
which is expected.


According to my observation, this seems to be the issue related to the order of 
'N','2','K', 
if I write 
  int dp[N][K][2] = {0};
then everything is fine.


Here is my gcc version (gcc -v):

Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-7 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-libstdcxx-time=yes 
--with-default-libstdcxx-abi=new --enable-gnu-unique-object 
--disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie 
--with-system-zlib --with-target-system-zlib --enable-objc-gc=auto 
--enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-offload-targets=nvptx-none --without-cuda-driver 
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu 
--target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) 


BTW, the preprocessed file 'test.ii' can be found in the 'Attachment' in case 
you need it.

** Affects: gcc-7 (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "test.ii"
   https://bugs.launchpad.net/bugs/1895372/+attachment/5410020/+files/test.ii

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

Title:
  C++11 with GNU VLA extention results in ICE

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-7/+bug/1895372/+subscriptions

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

[Bug 1880099] Re: ubuntu-dock no longer loads under gnome-shell 3.37: JS ERROR: Extension ubuntu-d...@ubuntu.com: Error: No signal 'allocation-changed' on object 'Gjs_ubuntu-dock_ubuntu_com_dash_DashT

2020-09-11 Thread Rocko
However, the gnome-3-38 branch in dash-to-dock does work.

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

Title:
  ubuntu-dock no longer loads under gnome-shell 3.37: JS ERROR:
  Extension ubuntu-d...@ubuntu.com: Error: No signal 'allocation-
  changed' on object 'Gjs_ubuntu-
  dock_ubuntu_com_dash_DashToDock_MyDashActor'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1880099/+subscriptions

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

[Bug 1880099] Re: ubuntu-dock no longer loads under gnome-shell 3.37: JS ERROR: Extension ubuntu-d...@ubuntu.com: Error: No signal 'allocation-changed' on object 'Gjs_ubuntu-dock_ubuntu_com_dash_DashT

2020-09-11 Thread Rocko
I think this affects me, at least I no longer get dash-to-dock or
ubuntu-dock now that groovy has updated to 3.37.

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

Title:
  ubuntu-dock no longer loads under gnome-shell 3.37: JS ERROR:
  Extension ubuntu-d...@ubuntu.com: Error: No signal 'allocation-
  changed' on object 'Gjs_ubuntu-
  dock_ubuntu_com_dash_DashToDock_MyDashActor'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1880099/+subscriptions

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

[Bug 1880099] Re: ubuntu-dock no longer loads under gnome-shell 3.37: JS ERROR: Extension ubuntu-d...@ubuntu.com: Error: No signal 'allocation-changed' on object 'Gjs_ubuntu-dock_ubuntu_com_dash_DashT

2020-09-11 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-shell-extension-ubuntu-dock (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/1880099

Title:
  ubuntu-dock no longer loads under gnome-shell 3.37: JS ERROR:
  Extension ubuntu-d...@ubuntu.com: Error: No signal 'allocation-
  changed' on object 'Gjs_ubuntu-
  dock_ubuntu_com_dash_DashToDock_MyDashActor'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1880099/+subscriptions

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

[Bug 1895370] Re: systemd: symbol lookup error: /lib/systemd/libsystemd-shared-245.so: undefined symbol: iptc_commit

2020-09-11 Thread Steve Kieu
I got these lib already installed

root@work ~ [0|1]# dpkg -l|grep libiptc
ii  libiptc-dev:amd64  1.8.4-3ubuntu2   
 amd64Common development files for libiptc
ii  libiptc0:amd64 1.8.4-3ubuntu2   
 amd64transitional dummy package
ii  libiptcdata-bin1.0.5-2.1ubuntu4 
 amd64Library to parse IPTC metadata (programs)
ii  libiptcdata0   1.0.5-2.1ubuntu4 
 amd64Library to parse IPTC metadata
root@work ~# 

but problems is still.

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

Title:
  systemd: symbol lookup error: /lib/systemd/libsystemd-shared-245.so:
  undefined symbol: iptc_commit

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

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

[Bug 1895370] [NEW] systemd: symbol lookup error: /lib/systemd/libsystemd-shared-245.so: undefined symbol: iptc_commit

2020-09-11 Thread Steve Kieu
Public bug reported:

Last run apt update and apt upgrade and reboot render my system
unbootable because systemd failed with message:

systemd: symbol lookup error: /lib/systemd/libsystemd-shared-245.so:
undefined symbol: iptc_commit

So I tried to reset to the previous state and re-run the update and
after the re-run update I try to run the systemd command and having the
same result.

root@work ~# apt update; apt upgrade
Get:1 http://au.archive.ubuntu.com/ubuntu focal InRelease [265 kB]
Get:2 http://au.archive.ubuntu.com/ubuntu focal-updates InRelease [111 kB]  
  
Get:3 http://au.archive.ubuntu.com/ubuntu focal-backports InRelease [98.3 kB]   
  
Get:4 http://ppa.launchpad.net/audio-recorder/ppa/ubuntu focal InRelease [15.9 
kB]
Get:5 http://security.ubuntu.com/ubuntu focal-security InRelease [107 kB]   
  
Get:6 http://dl.google.com/linux/chrome/deb stable InRelease [1,811 B]  
  
Get:7 http://au.archive.ubuntu.com/ubuntu focal/main amd64 Packages [970 kB]
  
Get:9 http://au.archive.ubuntu.com/ubuntu focal/main i386 Packages [718 kB] 
  
Get:10 http://au.archive.ubuntu.com/ubuntu focal/main Translation-en_AU [1,836 
B] 
Get:11 http://au.archive.ubuntu.com/ubuntu focal/main Translation-en [506 kB]   
  
Get:12 https://packages.microsoft.com/repos/ms-teams stable InRelease [17.5 kB] 
  
Get:13 http://au.archive.ubuntu.com/ubuntu focal/main amd64 DEP-11 Metadata 
[494 kB]  
Get:14 http://au.archive.ubuntu.com/ubuntu focal/main DEP-11 48x48 Icons [98.4 
kB]
Get:15 http://au.archive.ubuntu.com/ubuntu focal/main DEP-11 64x64 Icons [163 
kB] 
Get:16 http://au.archive.ubuntu.com/ubuntu focal/main DEP-11 64x64@2 Icons 
[15.8 kB]  
Get:17 https://packages.microsoft.com/repos/ms-teams stable/main amd64 Packages 
[6,403 B] 
Get:18 http://au.archive.ubuntu.com/ubuntu focal/main amd64 c-n-f Metadata 
[29.5 kB]  
Get:19 http://au.archive.ubuntu.com/ubuntu focal/restricted i386 Packages 
[8,112 B]   
Ign:20 http://ppa.launchpad.net/hermlnx/dislocker/ubuntu focal InRelease
   
Get:21 http://au.archive.ubuntu.com/ubuntu focal/restricted amd64 Packages 
[22.0 kB]  
Get:22 http://au.archive.ubuntu.com/ubuntu focal/restricted Translation-en_AU 
[1,144 B]   
Get:23 http://dl.google.com/linux/chrome/deb stable/main amd64 Packages [1,163 
B] 
Get:24 http://au.archive.ubuntu.com/ubuntu focal/restricted Translation-en 
[6,212 B]  
Get:25 http://au.archive.ubuntu.com/ubuntu focal/restricted amd64 c-n-f 
Metadata [392 B]   
Get:26 http://au.archive.ubuntu.com/ubuntu focal/universe amd64 Packages [8,628 
kB]
Get:8 https://packagecloud.io/slacktechnologies/slack/debian jessie InRelease 
[23.5 kB]  
Get:27 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages 
[69.9 kB] 
Get:28 http://ppa.launchpad.net/team-xbmc/ppa/ubuntu focal InRelease [17.5 kB]  
   
Err:29 http://ppa.launchpad.net/hermlnx/dislocker/ubuntu focal Release  
  
  404  Not Found [IP: 91.189.95.83 80]
Get:30 http://au.archive.ubuntu.com/ubuntu focal/universe i386 Packages [4,642 
kB]
Get:31 http://security.ubuntu.com/ubuntu focal-security/main amd64 

[Bug 1895366] Re: Latest fixes for corosync in Groovy

2020-09-11 Thread Launchpad Bug Tracker
** Merge proposal linked:
   
https://code.launchpad.net/~rafaeldtinoco/ubuntu/+source/corosync/+git/corosync/+merge/390646

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

Title:
  Latest fixes for corosync in Groovy

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

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

[Bug 1895366] Re: Latest fixes for corosync in Groovy

2020-09-11 Thread Rafael David Tinoco
Final list is:

# v3.0.3 post-release ubuntu fixes (LP: #1895366)
ubuntu-v3.0.3-fixes/lp1895366-7f64a1dc-cmapctl-return-error-on-no-result-of-print-prefix.patch
ubuntu-v3.0.3-fixes/lp1895366-ec889e89-cmapctl-check-NULL-for-key-type-and-value-for-p.patch
ubuntu-v3.0.3-fixes/lp1895366-9105d94a-cmapctl-return-EXIT_FAILURE-on-failure.patch
ubuntu-v3.0.3-fixes/lp1895366-21e1c711-cfgtool-Remove-unused-callbacks.patch
ubuntu-v3.0.3-fixes/lp1895366-ee38d93c-cpghum-Remove-unused-time-variables-and-functions.patch
ubuntu-v3.0.3-fixes/lp1895366-f31a31f9-cmap-Assert-copied-string-length.patch

and

# ubuntu-v3.0.3-fixes/lp1895366-0d0febbc-cfgtool-Fix-error-code-as-
described-in-MP.patch

required:

commit 15c25a28
Author: Jan Friesse 
Date:   Tue Mar 3 11:07:55 2020

cfgtool: Simplify output a bit for link status

and I don't think it was worth adding, nor:

ubuntu-v3.0.3-fixes/lp1895366-cddd62f9-votequorum-Ignore-the-icmap_get_-
return-value.patch

which didn't apply cleanly seems like a trivial change.

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

Title:
  Latest fixes for corosync in Groovy

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

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

[Bug 1887356] Re: System crashes while loading an application in cisco webex meeting

2020-09-11 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  System crashes while loading an application in cisco webex meeting

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

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

[Bug 1875200] Re: [amdgpu] Entire computer freezes shortly after bootup

2020-09-11 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [amdgpu] Entire computer freezes shortly after bootup

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

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

[Bug 1887189] Re: package chromium-browser (not installed) failed to install/upgrade: subproces van het nieuwe pakket chromium-browser het script pre-installation gaf de foutwaarde 1 terug

2020-09-11 Thread Launchpad Bug Tracker
[Expired for chromium-browser (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: chromium-browser (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  package chromium-browser (not installed) failed to install/upgrade:
  subproces van het nieuwe pakket chromium-browser het script pre-
  installation gaf de foutwaarde 1 terug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1887189/+subscriptions

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

[Bug 1887293] Re: package mysql-server-5.7 5.7.30-0ubuntu0.18.04.1 failed to install/upgrade: instalado mysql-server-5.7 paquete post-installation guión el subproceso devolvió un error con estado de s

2020-09-11 Thread Launchpad Bug Tracker
[Expired for mysql-5.7 (Ubuntu) because there has been no activity for
60 days.]

** Changed in: mysql-5.7 (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  package mysql-server-5.7 5.7.30-0ubuntu0.18.04.1 failed to
  install/upgrade: instalado mysql-server-5.7 paquete post-installation
  guión el subproceso devolvió un error con estado de salida 127

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.7/+bug/1887293/+subscriptions

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

[Bug 1887010] Re: problème de démarrage ordinateur lenovo G50

2020-09-11 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  problème de démarrage ordinateur lenovo G50

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

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

[Bug 1887267] Re: RIP: 0010:__call_rcu+0x1ab/0x1d0

2020-09-11 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  RIP: 0010:__call_rcu+0x1ab/0x1d0

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

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

[Bug 1887404] Re: the information was send by the system

2020-09-11 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  the information was send by the system

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

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

[Bug 1887208] Re: May be xorg

2020-09-11 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  May be xorg

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

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

[Bug 1887001] Re: Mouse suddenly stopped working

2020-09-11 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  Mouse suddenly stopped working

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

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

[Bug 1887386] Re: Kernel 5.4.0.-40 Cinamon: screen not enabled after boot

2020-09-11 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Kernel 5.4.0.-40  Cinamon: screen not enabled after boot

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

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

[Bug 1877871] Re: [radeon] X windows hangs following upgrade from 18.04 to 20.04

2020-09-11 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [radeon] X windows hangs following upgrade from 18.04 to 20.04

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

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

[Bug 1887198] Re: [Raspberry Pi 4] Screen Freeze

2020-09-11 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  [Raspberry Pi 4] Screen Freeze

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

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

[Bug 1887150] Re: Fractional Scaling turns screen sideways

2020-09-11 Thread Launchpad Bug Tracker
[Expired for mutter (Ubuntu) because there has been no activity for 60
days.]

** Changed in: mutter (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Fractional Scaling turns screen sideways

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

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

[Bug 1887018] Re: Xorg crash when I was using Visual Studio code, throwing me back to the login screen

2020-09-11 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  Xorg crash when I was using Visual Studio code, throwing me back to
  the login screen

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

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

[Bug 1886148] Re: failure to boot groovy daily

2020-09-11 Thread Chris Guiver
** Xubuntu & Ubuntu 2020-09-09 ISOs boot normally

Sorry I meant to say in the last comment

I had a Xubuntu 2020-09-09 ISO & Ubuntu 2020-09-09 I downloaded but
never (QA-)tested. They do boot in the hp dc7700 box normally.  (the
Ubuntu was also booted on d755-5)

(ubuntu_amd64)
-rw-rw-r-- 1 guiverc blah2.8G Sep  9 18:32 
/de2900/ubuntu_64/groovy-desktop-amd64.iso
(xubuntu_amd64)
-rw-rw-r-- 1 guiverc blah1.7G Sep  9 12:08 groovy-desktop-amd64.iso.zs-old

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

Title:
  failure to boot groovy daily

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-cdimage/+bug/1886148/+subscriptions

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

[Bug 1886148] Re: failure to boot groovy daily

2020-09-11 Thread Chris Guiver
Xubuntu groovy daily (2020-09-09) will boot on

hp dc7700 (c2d-e6320, 5gb, nvidia quadro nvs 290)

Xubuntu groovy daily (2020-09-12) however fails

No message seen though just like Lubuntu daily (20200911.1)

Also tried booting (2020-09-12) on
dell [optiplex] 755 (c2d-e6850, 5gb, amd/ati radeon rv516/x1300/x1550) where I 
could read the "isolinux.bin missing or corrupt" error briefly before hdd's 
grub menu appeared.

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

Title:
  failure to boot groovy daily

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-cdimage/+bug/1886148/+subscriptions

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

[Bug 1895366] Re: Latest fixes for corosync in Groovy

2020-09-11 Thread Rafael David Tinoco
I had previously done:

  * debian/corosync-notifyd.init: fix for 2 PIDFILEs declared (LP: #1437359)
  * Post v3.0.3 release fixes backported to Ubuntu (LP: #1869622)
debian/patches/ubuntu-v3.0.3-fixes/:
- lp1869622-09f6d34a-logconfig-Remove-double-free-of-value.patch
- lp1869622-0c118d8f-totemknet-Check-result-of-fcntl-O_NONBLOCK-call.patch
- lp1869622-0c16442f-votequorum-Change-check-of-expected_votes.patch
- lp1869622-1fb095b0-notifyd-Check-cmap_track_add-result.patch
- lp1869622-29109683-totemknet-Assert-strcpy-length.patch
- lp1869622-35c312f8-votequorum-Assert-copied-strings-length.patch
- lp1869622-380b744e-totemknet-Don-t-mix-corosync-and-knet-error-codes.patch
- lp1869622-56ee8503-quorumtool-Assert-copied-string-length.patch
- lp1869622-5f543465-quorumtool-exit-on-invalid-expected-votes.patch
- lp1869622-624b6a47-stats-Assert-value_len-when-value-is-needed.patch
- lp1869622-74eed54a-sync-Assert-sync_callbacks.name-length.patch
- lp1869622-89b0d62f-stats-Check-return-code-of-stats_map_get.patch
- lp1869622-8ce65bf9-votequorum-Reflect-runtime-change-of-2Node-to-WFA.patch
- lp1869622-8ff7760c-cmapctl-Free-bin_value-on-error.patch
- lp1869622-a24cbad5-totemconfig-Initialize-warnings-variable.patch
- lp1869622-c631951e-icmap-icmap_init_r-leaks-if-trie_create-fails.patch
- lp1869622-ca320bea-votequorum-set-wfa-status-only-on-startup.patch
- lp1869622-efe48120-totemconfig-Free-leaks-found-by-coverity.patch

so we are missing:

7f64a1dc cmapctl: return error on no result of print prefix
ec889e89 cmapctl: check NULL for key type and value for -p
9105d94a cmapctl: return EXIT_FAILURE on failure
0d0febbc cfgtool: Fix error code as described in MP
21e1c711 cfgtool: Remove unused callbacks
ee38d93c cpghum: Remove unused time variables and functions
380b744e totemknet: Don't mix corosync and knet error codes
f31a31f9 cmap: Assert copied string length
09f6d34a logconfig: Remove double free of value
cddd62f9 votequorum: Ignore the icmap_get_* return value

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

Title:
  Latest fixes for corosync in Groovy

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

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

[Bug 1882369] Re: package grub-pc 2.04-1ubuntu12.2 failed to install/upgrade: installed grub-pc package post-installation script subprocess returned error exit status 1

2020-09-11 Thread robert Newton
i upgraded from disco to focal by changing that word in /etc/apt/sources
;-)

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

Title:
  package grub-pc 2.04-1ubuntu12.2 failed to install/upgrade: installed
  grub-pc package post-installation script subprocess returned error
  exit status 1

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

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

[Bug 1895358] Re: [Bug] A simple code including tgmath.h cannot be compiled with icc with Ubuntu 20.04 OS

2020-09-11 Thread Anthony Wong
** Also affects: glibc (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/1895358

Title:
  [Bug] A simple code including tgmath.h cannot be compiled with icc
  with Ubuntu 20.04 OS

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

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

[Bug 1895366] [NEW] Latest fixes for corosync in Groovy

2020-09-11 Thread Rafael David Tinoco
Public bug reported:

We've missed corosync 3.0.4 release this cycle, nevertheless I can bring
some good fixes for stabilization:

7f64a1dc cmapctl: return error on no result of print prefix
ec889e89 cmapctl: check NULL for key type and value for -p
9105d94a cmapctl: return EXIT_FAILURE on failure
0d0febbc cfgtool: Fix error code as described in MP
8ce65bf9 votequorum: Reflect runtime change of 2Node to WFA
89b0d62f stats: Check return code of stats_map_get
56ee8503 quorumtool: Assert copied string length
1fb095b0 notifyd: Check cmap_track_add result
8ff7760c cmapctl: Free bin_value on error
21e1c711 cfgtool: Remove unused callbacks
ee38d93c cpghum: Remove unused time variables and functions
35c312f8 votequorum: Assert copied strings length
29109683 totemknet: Assert strcpy length
0c118d8f totemknet: Check result of fcntl O_NONBLOCK call
a24cbad5 totemconfig: Initialize warnings variable
74eed54a sync: Assert sync_callbacks.name length
380b744e totemknet: Don't mix corosync and knet error codes
624b6a47 stats: Assert value_len when value is needed
f31a31f9 cmap: Assert copied string length
09f6d34a logconfig: Remove double free of value
cddd62f9 votequorum: Ignore the icmap_get_* return value
efe48120 totemconfig: Free leaks found by coverity

and that shall make our corosync 3.0.3 a good package (without FFe
need).

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

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

** Changed in: corosync (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/1895366

Title:
  Latest fixes for corosync in Groovy

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

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

[Bug 1895367] [NEW] start error apache2

2020-09-11 Thread njomo
Public bug reported:

gunix@destok:~$ sudo service apache2 start
 * Starting Apache httpd web server apache2 
[Fri Sep 11 22:25:49.101201 2020] 
[core:warn] [pid 964:tid 139957026556864] (92)Protocol not available: AH00076: 
Failed to enable APR_TCP_DEFER_ACCEPT

** Affects: apache2 (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/1895367

Title:
  start error apache2

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

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

[Bug 1873944] Re: [SRU] Upgrade rapid-photo-downloader to version 0.9.23a1

2020-09-11 Thread Erich Eickmeyer
This was a tricky one to verify as I had to install 18.04, launch rapid-
photo-downloader, then upgrade to 20.04 to duplicate the issue. As it's
intermittent, it took a couple of tries to get the crash to happen, but
it did and somewhat reproducibly thereafter.

I then upgraded to the 0.9.23a1 package that I had uploaded, after which
I could no longer reproduce the error. Marking as verification-done.

** Tags removed: verification-needed verification-needed-focal
** Tags added: verification-done verification-done-focal

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

Title:
  [SRU] Upgrade rapid-photo-downloader to version 0.9.23a1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rapid-photo-downloader/+bug/1873944/+subscriptions

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

[Bug 1895360] Re: Terminal (and other default Ubuntu apps) won't launch due to missing libffi.so.7 in 20.10

2020-09-11 Thread Aaron Lichtman
Oh, thanks for pointing that out. It's not exactly clear to me how this
situation arose, but I'm glad it's just a me problem.

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

Title:
  Terminal (and other default Ubuntu apps) won't launch due to missing
  libffi.so.7 in 20.10

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

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

[Bug 1895360] Re: Terminal (and other default Ubuntu apps) won't launch due to missing libffi.so.7 in 20.10

2020-09-11 Thread Steve Langasek
> /home/alichtman/.local/lib/python3.8/site-packages/gi/__init__.py

This is not a bug in libffi.  You have a local gi python module on your
path which depends on library versions other than those which are
current in 20.10.

It is inadvisable to put modules on your default python path that shadow
system modules.

** Changed in: libffi (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/1895360

Title:
  Terminal (and other default Ubuntu apps) won't launch due to missing
  libffi.so.7 in 20.10

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

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

[Bug 1875221] Re: cannot dettect my touchpad

2020-09-11 Thread Donko Donkes
I have the same issue on the IdeaPad Slim 7 14IIL05, 82A4. I've tested it on
Ubuntu 20.04, Kernel 5.4.0-45-generic
Arch, Kernel 5.8.7
Arch, Kernel 5.8.5
Arch, Kernel 5.4.63 LTS
Arch, Kernel 5.9.0-rc4 (Mainline).

I've submitted a mainline bug report
https://bugzilla.kernel.org/show_bug.cgi?id=209199

** Bug watch added: Linux Kernel Bug Tracker #209199
   https://bugzilla.kernel.org/show_bug.cgi?id=209199

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

Title:
  cannot dettect my touchpad

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

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

[Bug 1895252] Re: help menu entry points to website solely promoting adult products

2020-09-11 Thread Frédéric Brière
This was fixed upstream by linking to a copy on archive.org instead.
Until a future 1.10.3 release comes along, maybe Ubuntu might want to
backport this patch?

https://github.com/LubosD/twinkle/commit/05082ae12051821b1d969e6672d9e4e5afe1bc07
https://github.com/LubosD/twinkle/commit/b756c8cdebc4ab6d0ed0386f3bb1d4a5074cc319

(The second commit merely switched from http to https.)

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

Title:
  help menu entry points to website solely promoting adult products

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

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

[Bug 1893290] Re: The DP/HDMI audio via USB-C to DP dongle or Dell Zeus adapter can't work after suspend

2020-09-11 Thread Hui Wang
** Changed in: linux-oem-5.6 (Ubuntu)
   Status: In Progress => Fix Committed

** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

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

Title:
  The DP/HDMI audio  via USB-C to DP dongle or Dell Zeus adapter can't
  work after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1893290/+subscriptions

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

[Bug 1861936] Re: Raspberry Pi 3 network dies shortly after a burst of IPv6 tunnel network load ((lan78xx): transmit queue 0 timed out)

2020-09-11 Thread Hui Wang
@Christopher,

It is devicetree, kernel and bootloader binary update, do you know what
change on source code level fix this issue?

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

Title:
  Raspberry Pi 3 network dies shortly after a burst of IPv6 tunnel
  network load ((lan78xx): transmit queue 0 timed out)

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

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

[Bug 1894352] Re: bash-completion not working properly with directories with spaces in them when using some commands

2020-09-11 Thread Jason
Dimitri John Ledkov (xnox):

After checking the version at that upstream package it is also b0rked so
it seems like it's not ubuntu-specific.  I'll resubmit it there.

Thank you!

Very sincerely,

Jason A. Pfeil

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

Title:
  bash-completion not working properly with directories with spaces in
  them when using some commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1894352/+subscriptions

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

[Bug 1894733] Re: Most fn keys don't work on Puget laptop running 20.10

2020-09-11 Thread Cliff Carson
Looks like the problem is corrected with the new updates on 9/11/20.
Function keys work and the alt-ctl-t and alt-ctl-c also work.

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

Title:
  Most fn keys don't work on Puget laptop running 20.10

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

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

[Bug 1895360] Re: Terminal (and other default Ubuntu apps) won't launch due to missing libffi.so.7

2020-09-11 Thread Aaron Lichtman
Fixed by:

$ wget 
https://launchpad.net/ubuntu/+source/libffi/3.3-4/+build/18885702/+files/libffi7_3.3-4_amd64.debwget
$ sudo dpkg -i libffi7_3.3-4_amd64.deb

Thanks to TJ- and sarnold in the Ubuntu freenode server for the help.

** Summary changed:

- Terminal (and other default Ubuntu apps) won't launch due to missing 
libffi.so.7
+ Terminal (and other default Ubuntu apps) won't launch due to missing 
libffi.so.7 in 20.10

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

Title:
  Terminal (and other default Ubuntu apps) won't launch due to missing
  libffi.so.7 in 20.10

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

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

[Bug 1894809] Re: 1.9.8 fails to start: *** buffer overflow detected ***: terminated

2020-09-11 Thread Dan Streetman
** Tags removed: block-proposed-groovy

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

Title:
  1.9.8 fails to start:  *** buffer overflow detected ***: terminated

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

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

[Bug 1895360] [NEW] Terminal (and other default Ubuntu apps) won't launch due to missing libffi.so.7

2020-09-11 Thread Aaron Lichtman
Public bug reported:

When I launch Terminal, I see the following error (st and urxvt are
still launchable, as are Discord and Spotify, among others):

Sep 11 18:22:39 arctic systemd[1918]: Started Application launched by 
gnome-shell.
Sep 11 18:22:39 arctic gnome-shell[2191]: g_variant_unref: assertion 'value != 
NULL' failed
Sep 11 18:22:39 arctic gnome-shell[2191]: g_variant_unref: assertion 'value != 
NULL' failed
Sep 11 18:22:39 arctic gnome-shell[18808]: Traceback (most recent call last):
Sep 11 18:22:39 arctic gnome-shell[18808]:   File "/usr/bin/gnome-terminal", 
line 9, in 
Sep 11 18:22:39 arctic gnome-shell[18808]: from gi.repository import GLib, 
Gio
Sep 11 18:22:39 arctic gnome-shell[18808]:   File 
"/home/alichtman/.local/lib/python3.8/site-packages/gi/__init__.py", line 42, 
in 
Sep 11 18:22:39 arctic gnome-shell[18808]: from . import _gi
Sep 11 18:22:39 arctic gnome-shell[18808]: ImportError: libffi.so.7: cannot 
open shared object file: No such file or directory

And then Terminal never launches.

libffi.so.8 is found in /usr/lib/x86_64-linux-gnu/, but libffi.so.7 is
missing.

$ lsb_release -rd
Description:Ubuntu Groovy Gorilla (development branch)
Release:20.10

** Affects: libffi (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/1895360

Title:
  Terminal (and other default Ubuntu apps) won't launch due to missing
  libffi.so.7

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

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

[Bug 1895359] [NEW] j'arrive pas a faire la mise a niveau de ubuntu 18.04 vers 20

2020-09-11 Thread eol faith
Public bug reported:

Un problème insoluble est survenu lors du calcul de la mise à niveau.

 Cela a probablement été causé par :
 * des paquets logiciels non officiels qui ne proviennent pas d’Ubuntu.
Veuillez utiliser la commande « ppa-purge » du paquet 
« ppa-purge » afin de supprimer les paquets d’un 
dépôt PPA Launchpad, puis essayez de relancer la mise à niveau.

Si rien de tout cela ne s'applique, signalez ce bogue à l'aide de la
commande « ubuntu-bug ubuntu-release-upgrader-core » dans un terminal.
Si vous souhaitez analyser le problème par vous-même, les fichiers
journaux contenus dans le répertoire « /var/log/dist-upgrade »
contiennent les informations sur la mise à niveau. Plus précisément,
veuillez consulter les journaux « main.log » et « apt.log ».

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.38
ProcVersionSignature: Ubuntu 5.4.0-47.51~18.04.1-generic 5.4.55
Uname: Linux 5.4.0-47-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.17
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: GNOME-Flashback:GNOME
Date: Sat Sep 12 00:27:09 2020
InstallationDate: Installed on 2020-08-29 (13 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2020-09-11 (0 days ago)
VarLogDistupgradeTermlog:
 
mtime.conffile..etc.update-manager.release-upgrades: 2020-09-07T08:34:46.794036

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic dist-upgrade third-party-packages

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

Title:
  j'arrive pas a faire la mise a niveau de ubuntu 18.04 vers 20

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1895359/+subscriptions

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

[Bug 1891648] Re: [0cf3:e301 Qualcomm Atheros]Cannot switch to A2DP profile w/o restarting bluetooth.service [pulseaudio: Refused to switch profile to a2dp_sink: Not connected]

2020-09-11 Thread Kyrylo Bohdanenko
Since some recent updates the issue seems to have disappeared.  I'll
keep observing, and close the report by the end of the next week if the
issue would not occur during this time.

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

Title:
  [0cf3:e301 Qualcomm Atheros]Cannot switch to A2DP profile w/o
  restarting bluetooth.service [pulseaudio: Refused to switch profile to
  a2dp_sink: Not connected]

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

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

[Bug 1880724] Re: Add (D)TLS support by default to snmpd

2020-09-11 Thread Bug Watch Updater
** Changed in: net-snmp (Debian)
   Status: Unknown => 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/1880724

Title:
  Add (D)TLS support by default to snmpd

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

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

[Bug 1893484] Re: Google Chrome 85.0.4183.83 crahses with SIGSEGV

2020-09-11 Thread David Williams
After reading
https://support.google.com/chrome/thread/67845533?hl=en
I tried, on a whim, 
 chromium-browser --disable-gpu
and all works fine. 

I do not know what that means, but thought I'd post it here for 'data'. 
Perhaps it will help someone understand where to look for debugging, or, even, 
where the bug belongs. 

Thanks,

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

Title:
  Google Chrome 85.0.4183.83 crahses with SIGSEGV

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1893484/+subscriptions

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

[Bug 1895357] Status changed to Confirmed

2020-09-11 Thread Ubuntu Kernel Bot
This change was made by a bot.

** Changed in: linux (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/1895357

Title:
  touch pad dont work

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

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

[Bug 1886148] Re: failure to boot groovy daily

2020-09-11 Thread Chris Guiver
The 20200911.2 won't boot on

- dell [optiplex] 755 (c2d-e6850, 5gb, amd/ati radeon rv516/x1300/x1550)

It feels different though, the "isolinux.bin missing or corrupt" was
very quick to appear & get erased by grub being booted off hdd on the
d755-5 I listed. I had to boot it 3 times to read the "isolinux.bin
missing" message, where I can't recall doing that yesterday.

- hp dc7700 (c2d-e6320, 5gb, nvidia quadro nvs 290)

On the hp dc7700 I never saw any message, it just booted hdd grub, even
on selecting thumb-drive as boot device. Yes I could see the thumb-drive
flash as it does during reads (flashing rather rapidly) which soon
stopped after grub appeared, but no messages on screen - 5 boots
attempted & no message.

With yesterday's ISO it was easy to read the "isolinux.bin missing'
message & I sure didn't boot this many times to confirm it was booting.

- dell [optiplex] 780 (c2q-q9400, 8gb, amd/ati cedar radeon hd 
5000/6000/7350/8350)
I saw a message about the same shape/size as "isolinux.bin missing or corrupt" 
but it was unreadable in two boots as replaced by hdd's grub.

The failures "felt" quicker than yesterdays.

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

Title:
  failure to boot groovy daily

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-cdimage/+bug/1886148/+subscriptions

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

[Bug 1895246] Re: Plugin calls the incorrect API

2020-09-11 Thread Terrance
So, the version in the git does not work with 18.04.  You can get it to
install with a work around, but the panel will not see it as being able
to add it.

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

Title:
  Plugin calls the incorrect API

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-weather-plugin/+bug/1895246/+subscriptions

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

[Bug 1895157] Re: Boinc cannot enable RPC access to start client or manager

2020-09-11 Thread ikesterhaney
Some research unearthed a reason and possible solution -

This error happens when the user has no permission to use the RPC port number, 
or forgotten to allow it through the firewall.
Happens in combination with Gstate.init() failed, error code: -180

To set BOINC to use a specific port number, one different from the default 
31316, do:
boinc --gui_rpc_port N, example given boinc --gui_rpc_port 3, this starts 
the BOINC client with TCP port 3.

If you don't want to use any GUI to check on this BOINC from a remote location, 
you can also start BOINC without any GUI RPC:
boinc --no_gui_rpc

Source -
https://boinc.mundayweb.com/wiki/index.php?title=GUI_RPC_bind_to_port_31416_failed:_98

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

Title:
  Boinc cannot enable RPC access to start client or manager

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

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

[Bug 1895357] [NEW] touch pad dont work

2020-09-11 Thread Edison Alfaro
Public bug reported:

VaioFE14

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-47-generic 5.4.0-47.51
ProcVersionSignature: Ubuntu 5.4.0-47.51-generic 5.4.55
Uname: Linux 5.4.0-47-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  edison 1353 F pulseaudio
 /dev/snd/pcmC0D0p:   edison 1353 F...m pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Fri Sep 11 19:26:47 2020
InstallationDate: Installed on 2020-09-10 (1 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
MachineType: Positivo Bahia - VAIO VJFE42F11X-XX
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-47-generic 
root=UUID=7a2a9642-a16a-41b1-813d-4c277af65362 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-47-generic N/A
 linux-backports-modules-5.4.0-47-generic  N/A
 linux-firmware1.187.3
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/29/2020
dmi.bios.vendor: Positivo Tecnologia SA
dmi.bios.version: V1.022.X
dmi.board.asset.tag: Default string
dmi.board.name: VJFE-CL
dmi.board.vendor: Positivo Tecnologia SA
dmi.board.version: 11160112
dmi.chassis.asset.tag: Default string
dmi.chassis.type: 10
dmi.chassis.vendor: Positivo Tecnologia SA
dmi.chassis.version: Default string
dmi.modalias: 
dmi:bvnPositivoTecnologiaSA:bvrV1.022.X:bd05/29/2020:svnPositivoBahia-VAIO:pnVJFE42F11X-XX:pvrDefaultstring:rvnPositivoTecnologiaSA:rnVJFE-CL:rvr11160112:cvnPositivoTecnologiaSA:ct10:cvrDefaultstring:
dmi.product.family: VJFE-CL
dmi.product.name: VJFE42F11X-XX
dmi.product.sku: 3341185
dmi.product.version: Default string
dmi.sys.vendor: Positivo Bahia - VAIO

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


** Tags: amd64 apport-bug focal

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

Title:
  touch pad dont work

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

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

[Bug 1895246] Re: Plugin calls the incorrect API

2020-09-11 Thread Terrance
Never mind, I found it.  You will have to pull the git, then install it
that way.  This would be nice if they push this to the repos.

git clone https://gitlab.xfce.org/panel-plugins/xfce4-weather-plugin

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

Title:
  Plugin calls the incorrect API

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-weather-plugin/+bug/1895246/+subscriptions

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

[Bug 1493188] Re: "overlayfs" no longer exists

2020-09-11 Thread Robert C Jennings
@chad.smith  I have used the cloud-utils in your ppa to build Xenial
maas-images on a bionic host to confirm that things are working now.

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

Title:
  "overlayfs" no longer exists

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-initramfs-tools/+bug/1493188/+subscriptions

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

[Bug 1895187] Re: [FFe] KDE Frameworks 5.74.0 into Groovy archive

2020-09-11 Thread Rik Mills
I ack this FFe under the Kubuntu packageset delegation.

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

Title:
  [FFe] KDE Frameworks 5.74.0 into Groovy archive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-framework/+bug/1895187/+subscriptions

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

[Bug 1895246] Re: Plugin calls the incorrect API

2020-09-11 Thread Terrance
In the folder of https://archive.xfce.org/src/panel-plugins/xfce4
-weather-plugin/ the latest update shows a date of 23-Feb-2020.  All
versions in there do not have the correct fix in them.  Just wondering
where the correct fix is then.

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

Title:
  Plugin calls the incorrect API

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-weather-plugin/+bug/1895246/+subscriptions

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

[Bug 1894667] Re: [HP 635] Radeon 6310 brightness control does not work

2020-09-11 Thread Alex Hung
A patch was sent to upstream for review

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

Title:
  [HP 635] Radeon 6310 brightness control does not work

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

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

[Bug 1895355] Re: [FFe] cluster-glue: groovy post-release fixes + AWS stonith agent

2020-09-11 Thread Rafael David Tinoco
** Summary changed:

- cluster-glue: groovy post-release fixes before groovy release
+ [FFe] cluster-glue: groovy post-release fixes + AWS stonith agent

** Changed in: cluster-glue (Ubuntu)
 Assignee: Rafael David Tinoco (rafaeldtinoco) => (unassigned)

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

Title:
  [FFe] cluster-glue: groovy post-release fixes + AWS stonith agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cluster-glue/+bug/1895355/+subscriptions

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

[Bug 1895355] Re: cluster-glue: groovy post-release fixes before groovy release

2020-09-11 Thread Launchpad Bug Tracker
** Merge proposal linked:
   
https://code.launchpad.net/~rafaeldtinoco/ubuntu/+source/cluster-glue/+git/cluster-glue/+merge/390643

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

Title:
  [FFe] cluster-glue: groovy post-release fixes + AWS stonith agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cluster-glue/+bug/1895355/+subscriptions

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

[Bug 1895355] Re: cluster-glue: groovy post-release fixes before groovy release

2020-09-11 Thread Rafael David Tinoco
From:

# generic fixes

71bf1503 Medium: ha_logd: prevent race caused by pid reuse (bsc#894272)
b5be33ae low: cl_plumbing: Fix incorrect negations
9174550c Medium: stonith: external/libvirt: fix handling of hosts with 
uppercase letters in names

the package already had:

eeacbaac Low: ipc: fix poll function parameter type
bc7b874f fix syslogmsgfmt logging inconsistency for stderr/stdout
433c6fbd Medium: clplumbing: don't abort on bad input

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

Title:
  cluster-glue: groovy post-release fixes before groovy release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cluster-glue/+bug/1895355/+subscriptions

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

[Bug 1888001] Re: Focal minimal cloud image: failed to apply kernel variables

2020-09-11 Thread Terry Rudd
Josh, did your suggestion above resolve this?

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

Title:
  Focal minimal cloud image: failed to apply kernel variables

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1888001/+subscriptions

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

[Bug 1765503] Re: scilab: hdf5 is broken in Scilab 6.0 on bionic

2020-09-11 Thread Tiago Stürmer Daitx
** Summary changed:

- scilab: save, open and ATOMS system is broken in Scilab 6 on bionic, cosmic, 
disco and eoan
+ scilab: hdf5 is broken in Scilab 6.0 on bionic

** No longer affects: scilab (Ubuntu Focal)

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

Title:
  scilab: hdf5 is broken in Scilab 6.0 on bionic

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

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

[Bug 1895356] [NEW] isync reports "Success" error but doesn't sync files

2020-09-11 Thread Aaron Wagner
Public bug reported:

On Ubuntu 20.04.1 LTS, running 'mbsync work' with the attached skeleton
.mbsyncrc file returns the output:

C: 0/1  B: 0/0  M: +0/0 *0/0 #0/0  S: +0/0 *0/0 #0/0
Socket error: secure connect to outlook.office365.com (52.96.79.2:993): Success
C: 1/1  B: 0/0  M: +0/0 *0/0 #0/0  S: +0/0 *0/0 #0/0

The output I am expecting, and the output I get under Ubuntu 18.04.5 LTS
is,

C: 0/1  B: 0/0  M: +0/0 *0/0 #0/0  S: +0/0 *0/0 #0/0
Skipping account work-remote, no user
C: 1/1  B: 0/0  M: +0/0 *0/0 #0/0  S: +0/0 *0/0 #0/0

If I replace the skeleton .mbsyncrc file with a full version that has
username and password information, then on 20.04 I get the same output
as above and no files are transferred, whereas on 18.04 it successfully
transfers the files.

Package version:

abw35@surface:~$ apt-cache policy isync
isync:
Installed: 1.3.0-2
Candidate: 1.3.0-2
Version table:
*** 1.3.0-2 500
500 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages
100 /var/lib/dpkg/status

FWIW, I am running both 20.04 and 18.04 under WSL. I originally
submitted a bug report to WSL, but the response was that this was
unlikely to be related to WSL itself.

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

** Attachment added: "mbsyncrc-bad"
   
https://bugs.launchpad.net/bugs/1895356/+attachment/5409988/+files/mbsyncrc-bad

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

Title:
  isync reports "Success" error but doesn't sync files

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

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

[Bug 1895246] Re: Plugin calls the incorrect API

2020-09-11 Thread kevinbowen
It looks like this issue has been fixed upstream several weeks ago.
https://gitlab.xfce.org/panel-plugins/xfce4-weather-plugin/-/issues/23

** Bug watch added: gitlab.xfce.org/panel-plugins/xfce4-weather-plugin/-/issues 
#23
   https://gitlab.xfce.org/panel-plugins/xfce4-weather-plugin/-/issues/23

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

Title:
  Plugin calls the incorrect API

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-weather-plugin/+bug/1895246/+subscriptions

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

[Bug 1766945] Re: (EFI on top of legacy install) choosing "replace" or "resize" options in partitioning may lead to an install failure

2020-09-11 Thread Andrew Tihaniy
** Changed in: ubiquity (Ubuntu)
 Assignee: chung gyune choi (chunggchoi) => Andrew Tihaniy (esterkill)

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

Title:
  (EFI on top of legacy install) choosing "replace" or "resize" options
  in partitioning may lead to an install failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1766945/+subscriptions

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

[Bug 1890725] Re: wacom tablet disturbs unity background, color scheme and keyboard shortcuts

2020-09-11 Thread Péter Prőhle
the problem is still there, over the x11 based unity

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

Title:
  wacom tablet disturbs unity background, color scheme and keyboard
  shortcuts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-unity-meta/+bug/1890725/+subscriptions

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

[Bug 1894914] Re: Ubuntu 16.04 HWE Kernel Fails to Shutdown/Reboot

2020-09-11 Thread Raymond Smith
Issue still occurs with 4.15.0-117-generic

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

Title:
  Ubuntu 16.04 HWE Kernel Fails to Shutdown/Reboot

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

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

[Bug 1867908] Re: Fix RTM NEW/DELLINK IFLA_IFNAME copy for maximum ifname length

2020-09-11 Thread Bug Watch Updater
** Changed in: wpa (Debian)
   Status: New => 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/1867908

Title:
  Fix RTM NEW/DELLINK IFLA_IFNAME copy for maximum ifname length

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

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

[Bug 1765503] Re: scilab: save, open and ATOMS system is broken in Scilab 6 on bionic, cosmic, disco and eoan

2020-09-11 Thread Tiago Stürmer Daitx
** Also affects: hdf5 (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: scilab (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: hdf5 (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: scilab (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** No longer affects: hdf5 (Ubuntu)

** No longer affects: hdf5 (Ubuntu Bionic)

** No longer affects: hdf5 (Ubuntu Focal)

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

Title:
  scilab: save, open and ATOMS system is broken in Scilab 6 on bionic,
  cosmic, disco and eoan

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

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

[Bug 1895355] [NEW] cluster-glue: groovy post-release fixes before groovy release

2020-09-11 Thread Rafael David Tinoco
Public bug reported:

From:

[rafaeldtinoco@upstream cluster-glue]$ git log --no-merges
glue-1.0.12..HEAD --oneline

I got the following fixes:

# ibm fixes

26acc098 ibmhmc: Create /var/run/heartbeat/rsctmp if it doesn't exist
(bsc#1131545)

# vcenter fixes

0fabedc2 Fix: stonith: external/vcenter: Reset returns success with 
RESETPOWERON=0 if vm is already >
a182a0dd Medium: stonith: external/vcenter: replace experimental smartmatch 
(bnc#900353)

# generic fixes

eeacbaac Low: ipc: fix poll function parameter type
71bf1503 Medium: ha_logd: prevent race caused by pid reuse (bsc#894272)
bc7b874f fix syslogmsgfmt logging inconsistency for stderr/stdout
433c6fbd Medium: clplumbing: don't abort on bad input
b5be33ae low: cl_plumbing: Fix incorrect negations

# getaddrinfo improvement/fixes

c63c2498 Low: wti_mpc: Convert gethostbyname() usage to getaddrinfo()
04e56080 Low: ipmilan_command: Convert gethostbyname() to getaddrinfo()
d46533b2 Low: apcmastersnmp: Convert gethostbyname() usage to getaddrinfo()
a682f50b Low: stonith: Convert gethostbyname() usage to getaddrinfo()

# documentation and related (fixes/adjustments)

afaeeb2f update AUTHORS (with names/addresses from source files)
bc4aab44 Dev: Clean up AUTHORS
73b68fb2 Dev: Update AUTHORS
c9016806 Dev: Set foreign option to handle README.md
788a1183 Dev: I always get this backwards
e3970b0e Dev: Update README and rename to README.md
1f5a2ace stonith: describe -E option
7271abf9 fix ambiguous "GPL v 2.1"
eec6232f fix addresses of FSF, point to gnu.org/licenses instead
9174550c Medium: stonith: external/libvirt: fix handling of hosts with 
uppercase letters in names

And, because of our HA effort for Cloud Environments, we should add
support for EC2 plugin:

# ec2 stonith agent support and fixes

[FFE] 7c84a6ae Fix EC2 stonith plugin
[FFE] 27e83692 Fix: stonith:ibmhmc: Add "managedsyspat" and "password" as 
supported parameters
[FFE] 76138dfb Medium: external/ec2: Mitigate fence race (bsc#1088656)
[FFE] 6734e0d0 High: external/ec2: Avoid unicode errors and improve performance 
(bsc#1088656)
[FFE] ba5710b3 Dev: external/ec2: Clean up whitespace
[FFE] 609cc386 Fix: stonith:external/ec2: Enforce en_US.UTF-8 locale when 
invoking aws client (bsc#1059171)
[FFE] 0f081f69 Medium: stonith: external/ec2: use target's uname as default for 
port
[FFE] 291a4378 Dev: stonith: external/ec2: protect unknown_are_stopped expansion
[FFE] 5cd5ffd2 Dev: stonith: external/ec2: add unknown_are_stopped to 
getconfignames
[FFE] 289e8fd3 Low: stonith: external/ec2: update name in the short description
[FFE] b7bed186 Dev: update permissions for ec2
[FFE] de5e068d High: stonith: external/ec2: new agent for aws/ec2

I'll be the one supporting/maintaining this new feature (from providers
direct requests usually)

** Affects: cluster-glue (Ubuntu)
 Importance: High
 Assignee: Rafael David Tinoco (rafaeldtinoco)
 Status: New

** Changed in: cluster-glue (Ubuntu)
   Importance: Undecided => Critical

** Changed in: cluster-glue (Ubuntu)
   Importance: Critical => High

** Changed in: cluster-glue (Ubuntu)
 Assignee: (unassigned) => Rafael David Tinoco (rafaeldtinoco)

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

Title:
  cluster-glue: groovy post-release fixes before groovy release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cluster-glue/+bug/1895355/+subscriptions

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

[Bug 1895348] Re: resource-agents: groovy post release fixes before groovy release

2020-09-11 Thread Rafael David Tinoco
** Summary changed:

- resource-agents: groovy post release fixes before release
+ resource-agents: groovy post release fixes before groovy release

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

Title:
  resource-agents: groovy post release fixes before groovy release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resource-agents/+bug/1895348/+subscriptions

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

[Bug 1895354] Re: do-partial-upgrade crashed with signal 5 in _XEventsQueued()

2020-09-11 Thread Apport retracing service
** Tags removed: need-amd64-retrace

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

Title:
  do-partial-upgrade crashed with signal 5 in _XEventsQueued()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1895354/+subscriptions

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

[Bug 1895354] [NEW] do-partial-upgrade crashed with signal 5 in _XEventsQueued()

2020-09-11 Thread Antonio Contreras
Public bug reported:

I'd got this problem when updating Ubuntu 20.10 at Terminal

ProblemType: Crash
DistroRelease: Ubuntu 20.10
Package: ubuntu-release-upgrader-core 1:20.10.11
ProcVersionSignature: Ubuntu 5.8.0-18.19-generic 5.8.4
Uname: Linux 5.8.0-18-generic x86_64
ApportVersion: 2.20.11-0ubuntu45
Architecture: amd64
AssertionMessage: \305\177
CasperMD5CheckResult: skip
CrashDB: ubuntu
Date: Fri Sep 11 21:58:27 2020
ExecutablePath: /usr/lib/ubuntu-release-upgrader/do-partial-upgrade
InstallationDate: Installed on 2020-09-05 (6 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
InterpreterPath: /usr/bin/python3.8
PackageArchitecture: all
ProcCmdline: /usr/bin/python3 
/usr/lib/ubuntu-release-upgrader/do-partial-upgrade 
--frontend=DistUpgradeViewGtk3
ProcEnviron:
 SHELL=/bin/bash
 LANG=es_ES.UTF-8
 PATH=(custom, no user)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python3.8, Python 3.8.5, python-is-python3, 3.8.2-4
RebootRequiredPkgs: libc6
Signal: 5
SourcePackage: ubuntu-release-upgrader
StacktraceTop:
 ?? () from /lib/x86_64-linux-gnu/libX11.so.6
 ?? () from /lib/x86_64-linux-gnu/libX11.so.6
 _XEventsQueued () from /lib/x86_64-linux-gnu/libX11.so.6
 XPending () from /lib/x86_64-linux-gnu/libX11.so.6
 ?? () from /lib/x86_64-linux-gnu/libgdk-3.so.0
Title: do-partial-upgrade crashed with signal 5 in _XEventsQueued()
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: N/A
VarLogDistupgradeTermlog:
 
separator:

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-crash dist-upgrade groovy

** Information type changed from Private to Public

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

Title:
  do-partial-upgrade crashed with signal 5 in _XEventsQueued()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1895354/+subscriptions

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

[Bug 1895351] Re: prepare plugin does not run in automatic mode

2020-09-11 Thread Mauricio Faria de Oliveira
** Changed in: ubiquity (Ubuntu)
 Assignee: (unassigned) => Mauricio Faria de Oliveira (mfo)

** Changed in: ubiquity (Ubuntu)
   Importance: Undecided => Low

** Changed in: ubiquity (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/1895351

Title:
  prepare plugin does not run in automatic mode

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

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

[Bug 1798369] Re: Reinstall Ubuntu (with preserving existing data) shows error message due to "Could not get lock /target/var/cache/apt/archives/lock"

2020-09-11 Thread Launchpad Bug Tracker
** Merge proposal linked:
   https://code.launchpad.net/~mfo/ubiquity/+git/ubiquity/+merge/390637

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

Title:
  Reinstall Ubuntu (with preserving existing data) shows error message
  due to "Could not get lock /target/var/cache/apt/archives/lock"

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

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

[Bug 1895351] Re: prepare plugin does not run in automatic mode

2020-09-11 Thread Launchpad Bug Tracker
** Merge proposal linked:
   https://code.launchpad.net/~mfo/ubiquity/+git/ubiquity/+merge/390637

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

Title:
  prepare plugin does not run in automatic mode

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

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

[Bug 1895351] [NEW] prepare plugin does not run in automatic mode

2020-09-11 Thread Mauricio Faria de Oliveira
Public bug reported:

Currently the prepare plugin is just not run at all in automatic mode.

But some users could benefit from it now that the ISOs ship with
e.g., nvidia drivers, to install 3rd party drivers automatically
during install, and not consume network bandwidth to download it.

** Affects: ubiquity (Ubuntu)
 Importance: Low
 Assignee: Mauricio Faria de Oliveira (mfo)
 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/1895351

Title:
  prepare plugin does not run in automatic mode

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

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

[Bug 1895348] Re: resource-agents: groovy post release fixes before release

2020-09-11 Thread Launchpad Bug Tracker
** Merge proposal linked:
   
https://code.launchpad.net/~rafaeldtinoco/ubuntu/+source/resource-agents/+git/resource-agents/+merge/390636

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

Title:
  resource-agents: groovy post release fixes before release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resource-agents/+bug/1895348/+subscriptions

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

Re: [Bug 1875163] Re: rdiff-backup crashes when running backup

2020-09-11 Thread Walt Mankowski
Hi Otto,

On Fri, Sep 11, 2020 at 06:14:08AM -, Otto Kekäläinen wrote:
> The commit that fixed this was in rdiff-backup version 2.0.5, right?
> https://github.com/rdiff-backup/rdiff-backup/commit/1c6b9bcf388bbbef522dd1a752e747a51c6ce004

Hmm, it could be. This is what I based "it was fixed" on:

https://lists.nongnu.org/archive/html/rdiff-backup-
users/2020-04/msg00041.html

> So a stable release update of rdiff-backup 2.0.5 to Ubuntu 20.04 LTS
> (Focal) would close this issue?

It seems that way.

> Could you try using the 2.0.5 version from https://launchpad.net/~rdiff-
> backup/+archive/ubuntu/rdiff-backup-backports and verify if it fixes the
> issue?

I'll try, but unfortunately I'm dealing with some serious family
issues right now that are occupying a lot of my time. It might be a
week or two before I can work on it.

> 
> Landing a stable release update in Ubuntu 20.04 requires very good
> grounds: https://wiki.ubuntu.com/StableReleaseUpdates
> 
> If 2.0.5 is urgently needed in Ubuntu 20.04, please help us document the
> motivations for it here.

Totally understandable.

Walt

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

Title:
  rdiff-backup crashes when running backup

To manage notifications about this bug go to:
https://bugs.launchpad.net/rdiff-backup/+bug/1875163/+subscriptions

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

[Bug 1895333] Re: cannot change the regulatory domain ath10k, QCA9984 (QNAP QWA-AC2600)

2020-09-11 Thread sparks71
** Description changed:

  linux-image-generic-hwe-20.04
  
  hello,
  
  since the update to Ubuntu 20.04.1 I can no longer change the regulatory
  domain of my QCA9984 cards.
  
  This works fine with Ubuntu 16.04.7 / DD-WRT / OpenWrt.
  
  Or if I build the kernel modules myself .. ("Atheros dynamic user
  regulatory testing")
  
  The card has "World" in the EEPROM and is sold worldwide.
  
  [2.896628] ath10k_pci :03:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [2.960023] ath10k_pci :04:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [3.015612] ath10k_pci :03:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.015613] ath10k_pci :03:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.015934] ath10k_pci :03:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [3.069593] ath10k_pci :04:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.069594] ath10k_pci :04:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.069933] ath10k_pci :04:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [4.247469] ath10k_pci :03:00.0: board_file api 2 bmi_id 0:1 crc32 
85498734
  [4.298899] ath10k_pci :04:00.0: board_file api 2 bmi_id 0:2 crc32 
85498734
  [6.980756] ath10k_pci :03:00.0: unsupported HTC service id: 1536
  [7.087506] ath10k_pci :03:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.125981] ath10k_pci :04:00.0: unsupported HTC service id: 1536
  [7.149519] ath: EEPROM regdomain: 0x0
  [7.149520] ath: EEPROM indicates default country code should be used
  [7.149520] ath: doing EEPROM country->regdmn map search
  [7.149521] ath: country maps to regdmn code: 0x3a
  [7.149521] ath: Country alpha2 being used: US
  [7.149521] ath: Regpair used: 0x3a
  [7.152614] ath10k_pci :03:00.0 wlp3s0: renamed from wlan0
  [7.235146] ath10k_pci :04:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.297494] ath: EEPROM regdomain: 0x0
  [7.297495] ath: EEPROM indicates default country code should be used
  [7.297495] ath: doing EEPROM country->regdmn map search
  [7.297496] ath: country maps to regdmn code: 0x3a
  [7.297496] ath: Country alpha2 being used: US
  [7.297497] ath: Regpair used: 0x3a
  
  The ath driver incorrectly sets the card to "US" ( phy0 + phy1 )
  
  global
  country DE: DFS-ETSI
   (2400 - 2483 @ 40), (N/A, 20), (N/A)
   (5150 - 5250 @ 80), (N/A, 20), (N/A), NO-OUTDOOR, AUTO-BW
   (5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
   (5470 - 5725 @ 160), (N/A, 26), (0 ms), DFS
   (5725 - 5875 @ 80), (N/A, 13), (N/A)
   (57000 - 66000 @ 2160), (N/A, 40), (N/A)
  
  phy#1
  country US: DFS-FCC
   (2402 - 2472 @ 40), (N/A, 30), (N/A)
   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
   (5735 - 5835 @ 80), (N/A, 30), (N/A)
   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#0
  country US: DFS-FCC
   (2402 - 2472 @ 40), (N/A, 30), (N/A)
   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
   (5735 - 5835 @ 80), (N/A, 30), (N/A)
   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#2 (self-managed)
  country DE: DFS-UNSET
   (2402 - 2437 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40MINUS, NO-80MHZ, 
NO-160MHZ
   (2422 - 2462 @ 40), (6, 22), (N/A), AUTO-BW, NO-80MHZ, NO-160MHZ
   (2447 - 2482 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40PLUS, NO-80MHZ, NO-160MHZ
   (5170 - 5190 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40MINUS, NO-160MHZ, PASSIVE-SCAN
   (5190 - 5210 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40PLUS, NO-160MHZ, PASSIVE-SCAN
   (5210 - 5230 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40MINUS, NO-160MHZ, PASSIVE-SCAN
   (5230 - 5250 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40PLUS, NO-160MHZ, PASSIVE-SCAN
   (5250 - 5270 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5270 - 5290 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5290 - 5310 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5310 - 5330 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5490 - 5510 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5510 - 5530 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5530 - 5550 @ 80), (6, 22), 

[Bug 1895349] [NEW] Sync libgweather 3.36.1-1 (main) from Debian unstable (main)

2020-09-11 Thread Amr Ibrahim
Public bug reported:

Please sync libgweather 3.36.1-1 (main) from Debian unstable (main)

It's a bug-fix release.

Changelog entries since current groovy version 3.36.0-1:

libgweather (3.36.1-1) unstable; urgency=medium

  * Team upload
  * New upstream release
- This version works around the unavailability of the NOAA weather
  services by using very short-term forecasts as current weather
  conditions. (Closes: #968909)

 -- Simon McVittie   Fri, 28 Aug 2020 23:36:23 +0100

** Affects: libgweather (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/1895349

Title:
  Sync libgweather 3.36.1-1 (main) from Debian unstable (main)

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

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

[Bug 1870813] Re: Scilab does not start on bionic and focal

2020-09-11 Thread Tiago Stürmer Daitx
** Also affects: scilab (Ubuntu Groovy)
   Importance: Undecided
   Status: 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/1870813

Title:
  Scilab does not start on bionic and focal

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

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

[Bug 1895345] Re: nss-wrapper: autopkgtest failure

2020-09-11 Thread Lucas Kanashiro
Thanks Andreas, uploaded:

$ dput ubuntu ../nss-wrapper_1.1.11-1ubuntu2_source.changes
Checking signature on .changes
gpg: ../nss-wrapper_1.1.11-1ubuntu2_source.changes: Valid signature from 
F823A2729883C97C
Checking signature on .dsc
gpg: ../nss-wrapper_1.1.11-1ubuntu2.dsc: Valid signature from F823A2729883C97C
Uploading to ubuntu (via ftp to upload.ubuntu.com):
  Uploading nss-wrapper_1.1.11-1ubuntu2.dsc: done.
  Uploading nss-wrapper_1.1.11-1ubuntu2.debian.tar.gz: done.
  Uploading nss-wrapper_1.1.11-1ubuntu2_source.changes: done.
Successfully uploaded packages.

** Changed in: nss-wrapper (Ubuntu)
   Status: New => Fix Committed

** Changed in: nss-wrapper (Ubuntu)
 Assignee: (unassigned) => Lucas Kanashiro (lucaskanashiro)

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

Title:
  nss-wrapper: autopkgtest failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nss-wrapper/+bug/1895345/+subscriptions

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

Re: [Bug 1886148] Re: failure to boot groovy daily

2020-09-11 Thread Steve Langasek
On Fri, Sep 11, 2020 at 08:21:03AM -, sudodus wrote:
> I can find today's groovy iso files of lubuntu and xubuntu. But there
> are no

> groovy-desktop-amd64.iso
> groovy-desktop-amd64.iso.zsync

> files (only arm files) for Ubuntu Desktop. How come?

Sorry, I failed to notice that the amd64 build was unsuccessful - related to
the recent changes.  There's an amd64 build now at
http://cdimage.ubuntu.com/ubuntu/daily-live/20200911.2, though it almost
certainly fails in the same way as the Lubuntu one.

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

Title:
  failure to boot groovy daily

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-cdimage/+bug/1886148/+subscriptions

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

[Bug 1895345] Re: nss-wrapper: autopkgtest failure

2020-09-11 Thread Andreas Hasenack
+1, interesting, I hadn't realized cmake was that strict with its
arguments

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

Title:
  nss-wrapper: autopkgtest failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nss-wrapper/+bug/1895345/+subscriptions

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

[Bug 1895348] [NEW] resource-agents: groovy post release fixes before release

2020-09-11 Thread Rafael David Tinoco
Public bug reported:

Resource Agents have post release fixes. From those, at least:

73551ac0 galera: Fix automatic recovery when a cluster was not gracefully 
stopped
3b0ffc59 build: fix distcheck issue introduced by including READMEs in 
heartbeat directory
d22700fc azure-lb: Don't redirect nc listener output to pidfile
a413a73e mdraid: fix bashism

Should be included in Groovy for stabilization.

** Affects: resource-agents (Ubuntu)
 Importance: High
 Status: Confirmed

** Changed in: resource-agents (Ubuntu)
   Status: New => Confirmed

** Changed in: resource-agents (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/1895348

Title:
  resource-agents: groovy post release fixes before release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resource-agents/+bug/1895348/+subscriptions

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

[Bug 1884525] Re: Cannot start calibre

2020-09-11 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: calibre (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/1884525

Title:
  Cannot start calibre

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

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

[Bug 1895347] [NEW] grub-installer fails on clean install

2020-09-11 Thread Rodrigo Chaves
Public bug reported:

I'm formatting my ASUS from windows 2004 WSL2 enabled (Debian + docker
containers) to Ubuntu (clean install, choose wipe Windows data and
install only Ubuntu).

The partition type is the default from installation.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.6
ProcVersionSignature: Ubuntu 4.15.0-29.31-generic 4.15.18
Uname: Linux 4.15.0-29-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: amd64
CasperVersion: 1.394
CurrentDesktop: ubuntu:GNOME
Date: Fri Sep 11 16:04:08 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity 
iso-scan/filename=/WinUSB/46365983-99DE-4D8F-A28F-ACC0A9AB5B90/Ubuntu_Desktop_18_04_64_bit.iso
 quiet splash ---
LiveMediaBuild: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
ProcEnviron:
 LANGUAGE=pt_BR.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=pt_BR.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic ubiquity-18.04.14.6 ubuntu

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

Title:
  grub-installer fails on clean install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1895347/+subscriptions

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

[Bug 1895342] Status changed to Confirmed

2020-09-11 Thread Ubuntu Kernel Bot
This change was made by a bot.

** Changed in: linux (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/1895342

Title:
  Acer Aspire E15 keyboard and trackpad non functional after update to
  vmlinuz-5.4.0-47-generic

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

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

[Bug 1895333] Re: cannot change the regulatory domain ath10k, QCA9984 (QNAP QWA-AC2600)

2020-09-11 Thread sparks71
** Description changed:

  linux-image-generic-hwe-20.04
  
  hello,
  
  since the update to Ubuntu 20.04.1 I can no longer change the regulatory
  domain of my QCA9984 cards.
  
  This works fine with Ubuntu 16.04.7 / DD-WRT / OpenWrt.
  
  Or if I build the kernel modules myself .. ("Atheros dynamic user
  regulatory testing")
  
- The card has "World" in the Eeprom and is sold worldwide.
+ The card has "World" in the EEPROM and is sold worldwide.
  
  [2.896628] ath10k_pci :03:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [2.960023] ath10k_pci :04:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [3.015612] ath10k_pci :03:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.015613] ath10k_pci :03:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.015934] ath10k_pci :03:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [3.069593] ath10k_pci :04:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.069594] ath10k_pci :04:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.069933] ath10k_pci :04:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [4.247469] ath10k_pci :03:00.0: board_file api 2 bmi_id 0:1 crc32 
85498734
  [4.298899] ath10k_pci :04:00.0: board_file api 2 bmi_id 0:2 crc32 
85498734
  [6.980756] ath10k_pci :03:00.0: unsupported HTC service id: 1536
  [7.087506] ath10k_pci :03:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.125981] ath10k_pci :04:00.0: unsupported HTC service id: 1536
  [7.149519] ath: EEPROM regdomain: 0x0
  [7.149520] ath: EEPROM indicates default country code should be used
  [7.149520] ath: doing EEPROM country->regdmn map search
  [7.149521] ath: country maps to regdmn code: 0x3a
  [7.149521] ath: Country alpha2 being used: US
  [7.149521] ath: Regpair used: 0x3a
  [7.152614] ath10k_pci :03:00.0 wlp3s0: renamed from wlan0
  [7.235146] ath10k_pci :04:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.297494] ath: EEPROM regdomain: 0x0
  [7.297495] ath: EEPROM indicates default country code should be used
  [7.297495] ath: doing EEPROM country->regdmn map search
  [7.297496] ath: country maps to regdmn code: 0x3a
  [7.297496] ath: Country alpha2 being used: US
  [7.297497] ath: Regpair used: 0x3a
  
  The ath driver incorrectly sets the card to "US" ( phy0 + phy1 )
  
  global
  country DE: DFS-ETSI
   (2400 - 2483 @ 40), (N/A, 20), (N/A)
   (5150 - 5250 @ 80), (N/A, 20), (N/A), NO-OUTDOOR, AUTO-BW
   (5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
   (5470 - 5725 @ 160), (N/A, 26), (0 ms), DFS
   (5725 - 5875 @ 80), (N/A, 13), (N/A)
   (57000 - 66000 @ 2160), (N/A, 40), (N/A)
  
  phy#1
  country US: DFS-FCC
   (2402 - 2472 @ 40), (N/A, 30), (N/A)
   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
   (5735 - 5835 @ 80), (N/A, 30), (N/A)
   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#0
  country US: DFS-FCC
   (2402 - 2472 @ 40), (N/A, 30), (N/A)
   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
   (5735 - 5835 @ 80), (N/A, 30), (N/A)
   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#2 (self-managed)
  country DE: DFS-UNSET
   (2402 - 2437 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40MINUS, NO-80MHZ, 
NO-160MHZ
   (2422 - 2462 @ 40), (6, 22), (N/A), AUTO-BW, NO-80MHZ, NO-160MHZ
   (2447 - 2482 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40PLUS, NO-80MHZ, NO-160MHZ
   (5170 - 5190 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40MINUS, NO-160MHZ, PASSIVE-SCAN
   (5190 - 5210 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40PLUS, NO-160MHZ, PASSIVE-SCAN
   (5210 - 5230 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40MINUS, NO-160MHZ, PASSIVE-SCAN
   (5230 - 5250 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40PLUS, NO-160MHZ, PASSIVE-SCAN
   (5250 - 5270 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5270 - 5290 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5290 - 5310 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5310 - 5330 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5490 - 5510 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5510 - 5530 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, 

[Bug 1895333] Re: cannot change the regulatory domain ath10k, QCA9984 (QNAP QWA-AC2600)

2020-09-11 Thread sparks71
** Description changed:

  linux-image-generic-hwe-20.04
  
  hello,
  
  since the update to Ubuntu 20.04.1 I can no longer change the regulatory
  domain of my QCA9984 cards.
  
  This works fine with Ubuntu 16.04.7 / DD-WRT / OpenWrt.
  
  Or if I build the kernel modules myself .. ("Atheros dynamic user
  regulatory testing")
  
  The card has "World" in the Eeprom and is sold worldwide.
  
  [2.896628] ath10k_pci :03:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [2.960023] ath10k_pci :04:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [3.015612] ath10k_pci :03:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.015613] ath10k_pci :03:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.015934] ath10k_pci :03:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [3.069593] ath10k_pci :04:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.069594] ath10k_pci :04:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.069933] ath10k_pci :04:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [4.247469] ath10k_pci :03:00.0: board_file api 2 bmi_id 0:1 crc32 
85498734
  [4.298899] ath10k_pci :04:00.0: board_file api 2 bmi_id 0:2 crc32 
85498734
  [6.980756] ath10k_pci :03:00.0: unsupported HTC service id: 1536
  [7.087506] ath10k_pci :03:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.125981] ath10k_pci :04:00.0: unsupported HTC service id: 1536
  [7.149519] ath: EEPROM regdomain: 0x0
  [7.149520] ath: EEPROM indicates default country code should be used
  [7.149520] ath: doing EEPROM country->regdmn map search
  [7.149521] ath: country maps to regdmn code: 0x3a
  [7.149521] ath: Country alpha2 being used: US
  [7.149521] ath: Regpair used: 0x3a
  [7.152614] ath10k_pci :03:00.0 wlp3s0: renamed from wlan0
  [7.235146] ath10k_pci :04:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.297494] ath: EEPROM regdomain: 0x0
  [7.297495] ath: EEPROM indicates default country code should be used
  [7.297495] ath: doing EEPROM country->regdmn map search
  [7.297496] ath: country maps to regdmn code: 0x3a
  [7.297496] ath: Country alpha2 being used: US
  [7.297497] ath: Regpair used: 0x3a
  
  The ath driver incorrectly sets the card to "US" ( phy0 + phy1 )
  
  global
  country DE: DFS-ETSI
   (2400 - 2483 @ 40), (N/A, 20), (N/A)
   (5150 - 5250 @ 80), (N/A, 20), (N/A), NO-OUTDOOR, AUTO-BW
   (5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
   (5470 - 5725 @ 160), (N/A, 26), (0 ms), DFS
   (5725 - 5875 @ 80), (N/A, 13), (N/A)
   (57000 - 66000 @ 2160), (N/A, 40), (N/A)
  
  phy#1
  country US: DFS-FCC
   (2402 - 2472 @ 40), (N/A, 30), (N/A)
   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
   (5735 - 5835 @ 80), (N/A, 30), (N/A)
   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#0
  country US: DFS-FCC
   (2402 - 2472 @ 40), (N/A, 30), (N/A)
   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
   (5735 - 5835 @ 80), (N/A, 30), (N/A)
   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#2 (self-managed)
  country DE: DFS-UNSET
   (2402 - 2437 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40MINUS, NO-80MHZ, 
NO-160MHZ
   (2422 - 2462 @ 40), (6, 22), (N/A), AUTO-BW, NO-80MHZ, NO-160MHZ
   (2447 - 2482 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40PLUS, NO-80MHZ, NO-160MHZ
   (5170 - 5190 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40MINUS, NO-160MHZ, PASSIVE-SCAN
   (5190 - 5210 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40PLUS, NO-160MHZ, PASSIVE-SCAN
   (5210 - 5230 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40MINUS, NO-160MHZ, PASSIVE-SCAN
   (5230 - 5250 @ 80), (6, 22), (N/A), NO-OUTDOOR, AUTO-BW, IR-CONCURRENT, 
NO-HT40PLUS, NO-160MHZ, PASSIVE-SCAN
   (5250 - 5270 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5270 - 5290 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5290 - 5310 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5310 - 5330 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5490 - 5510 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40MINUS, NO-160MHZ, 
PASSIVE-SCAN
   (5510 - 5530 @ 80), (6, 22), (0 ms), DFS, AUTO-BW, NO-HT40PLUS, NO-160MHZ, 
PASSIVE-SCAN
   (5530 - 5550 @ 80), (6, 22), 

[Bug 1895345] [NEW] nss-wrapper: autopkgtest failure

2020-09-11 Thread Lucas Kanashiro
Public bug reported:

nss-wrapper/1.1.11-1ubuntu1 has an autopkgtest regression:

autopkgtest [01:21:25]: test tests: [---
CMake Error: The source directory "/tmp/autopkgtest.5QqgpE/autopkgtest_tmp/obj" 
does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
autopkgtest [01:21:25]: test tests: ---]
autopkgtest [01:21:25]: test tests:  - - - - - - - - - - results - - - - - - - 
- - -
testsFAIL non-zero exit status 1


This is an outcome of the delta we added to make it more cross-build friendly. 
Changing the order of the cmake arguments fixes this issue, a patch is 
attached. And with the patch applied autopkgtest is happy:

autopkgtest [15:41:16]:  summary
testsPASS
adequate PASS

** Affects: nss-wrapper (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "debdiff"
   https://bugs.launchpad.net/bugs/1895345/+attachment/5409966/+files/debdiff

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

Title:
  nss-wrapper: autopkgtest failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nss-wrapper/+bug/1895345/+subscriptions

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

[Bug 1877861] Re: When installing grub to multiple EFI partitions they all have the same label in the EFI vars

2020-09-11 Thread Julian Andres Klode
I don't believe there is a need for different labels, or a good kind of
ID to display, even. The use case of the code is for raid1 where each
disk in the raid1 mirror contains the same ESP, so they are all
functionally equivalent - the point is that you can fallback to another
if one of the disk fails / is removed.

** Changed in: grub2 (Ubuntu)
   Status: New => Opinion

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

Title:
  When installing grub to multiple EFI partitions they all have the same
  label in the EFI vars

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

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

[Bug 1895343] [NEW] Microsoft Azure Enablement: azure-lb & azure-events missing in Bionic

2020-09-11 Thread Rafael David Tinoco
Public bug reported:

This bug is part of the HA enablement for Microsoft Azure Cloud.
(https://discourse.ubuntu.com/t/ubuntu-ha-cluster-in-microsoft-azure-cloud/)

"""
Need one additional Azure package to support load balancer. If you refer the
following article, we use Azure load balancer to find the active replica in
availability group for SQL Server and routing connections appropriately.
"""

[rafaeldtinoco@focal ~]$ apt-file list resource-agents | grep -i azure

resource-agents: /usr/lib/ocf/resource.d/heartbeat/azure-events
resource-agents: /usr/lib/ocf/resource.d/heartbeat/azure-lb
resource-agents: /usr/share/man/man7/ocf_heartbeat_azure-events.7.gz
resource-agents: /usr/share/man/man7/ocf_heartbeat_azure-lb.7.gz

[rafaeldtinoco@bionic ~]$ apt-file list resource-agents | grep -i azure


In Ubuntu we have:

$ rmadison resource-agents
 resource-agents | 1:4.1.0~rc1-1ubuntu1.2 | bionic-updates
 resource-agents | 1:4.5.0-2ubuntu2 | focal
 resource-agents | 1:4.6.1-1ubuntu1 | groovy

 In Debian:

$ rmad resource-agents

resource-agents | 1:4.2.0-2+deb10u2 | stable
resource-agents | 1:4.6.1-1~bpo10+1 | buster-backports
resource-agents | 1:4.6.1-1 | testing
resource-agents | 1:4.6.1-1 | unstable

>From upstream:

commit 771b49a1
Author: Oyvind Albrigtsen 
Date:   Wed Nov 29 14:09:06 2017

azure-lb: new resource agent

(and other commits from 2018 and 2019 as fixes)

[rafaeldtinoco@upstream resource-agents]$ git describe --tags 771b49a1
v4.1.0-1-g771b49a1

[rafaeldtinoco@upstream resource-agents]$ git tag --contains 771b49a1
v4.1.1
v4.1.1rc1

Considering version in Bionic is 4.1.0~rc1, we probably lost the new resource by
little. Should be easy to be backported and, after discussing with the SRU
(Stable Releases Update) team member, possible to be consider as HW enablement
within SRU guidelines.

** Affects: resource-agents (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: resource-agents (Ubuntu Bionic)
 Importance: High
 Status: Confirmed

** Affects: resource-agents (Ubuntu Focal)
 Importance: High
 Status: Confirmed

** Also affects: resource-agents (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: resource-agents (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Summary changed:

- Azure: azure-lb & azure-events agents should be backported to Bionic
+ Microsoft Azure Enablement: azure-lb & azure-events missing in Bionic

** Changed in: resource-agents (Ubuntu Bionic)
   Status: New => Confirmed

** Changed in: resource-agents (Ubuntu Focal)
   Status: New => Confirmed

** Changed in: resource-agents (Ubuntu Bionic)
   Importance: Undecided => High

** Changed in: resource-agents (Ubuntu Focal)
   Importance: Undecided => High

** Changed in: resource-agents (Ubuntu)
   Status: New => 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/1895343

Title:
  Microsoft Azure Enablement: azure-lb & azure-events missing in Bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/resource-agents/+bug/1895343/+subscriptions

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

[Bug 1895342] [NEW] Acer Aspire E15 keyboard and trackpad non functional after update to vmlinuz-5.4.0-47-generic

2020-09-11 Thread Neil Hancock
Public bug reported:

Have an Acer Aspire E15 running Kubuntu 20.04

Expect: Trackpad and keyboard to work after boot to WM login.

What Happens: Trackpad/keyboard unresponsive after WM starts.

Recently ( within last month)  an update has caused the trackpad and
keyboard to stop being detected after the WM starts and autologin is
complete.

Ive reinstalled which puts me at vmlinuz-5.4.0-26-generic, and the
trackpad/keyboard worked normally. After updating to
vmlinuz-5.4.0-47-generic and rebooting problem reoccurs.

Booting to console: keyboard works normally. 
Booting via Ubuntu advanced options to 5.4.0-26: Keyboard/trackpad works 
normally.

Some Fn buttons work after login, but only ones monitored by firmware
(E.g. screen brightness works, volume control doesn't)

neil@neil-Aspire-E5-511:~$ lsb_release -rd
Description:Ubuntu 20.04.1 LTS
Release:20.04

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-26-generic 5.4.0-26.30
ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
Uname: Linux 5.4.0-26-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  neil943 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Fri Sep 11 19:20:04 2020
InstallationDate: Installed on 2020-09-10 (1 days ago)
InstallationMedia: Kubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
MachineType: Acer Aspire E5-511
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-5.4.0-26-generic 
root=UUID=7c62eb69-2b7c-4aea-a384-1460d6533ecd ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-26-generic N/A
 linux-backports-modules-5.4.0-26-generic  N/A
 linux-firmware1.187.3
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/09/2015
dmi.bios.vendor: Acer
dmi.bios.version: V1.10
dmi.board.name: Aspire E5-511
dmi.board.vendor: Acer
dmi.board.version: V1.10
dmi.chassis.type: 10
dmi.chassis.vendor: Acer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAcer:bvrV1.10:bd09/09/2015:svnAcer:pnAspireE5-511:pvrV1.10:rvnAcer:rnAspireE5-511:rvrV1.10:cvnAcer:ct10:cvrChassisVersion:
dmi.product.family: Bay Trail-M System
dmi.product.name: Aspire E5-511
dmi.product.sku: Aspire E5-511_0905_V1.10
dmi.product.version: V1.10
dmi.sys.vendor: Acer

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


** Tags: amd64 apport-bug focal

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

Title:
  Acer Aspire E15 keyboard and trackpad non functional after update to
  vmlinuz-5.4.0-47-generic

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

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

[Bug 1894852] Re: Graphics slow on hybrid AMD/Nvidia laptop

2020-09-11 Thread Scott Lewin
I am running 20.10 on my laptop now and that options has not been added
yet I think.  At least it does not show in the advanced part of the
application tab for me.

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

Title:
  Graphics slow on hybrid AMD/Nvidia laptop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-450/+bug/1894852/+subscriptions

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

[Bug 1853193] Re: copy_file_range test fails with linux 5.3+ on bionic

2020-09-11 Thread Thadeu Lima de Souza Cascardo
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-bionic/bionic/ppc64el/g/glibc/20200911_170104_5f83a@/log.gz

https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-bionic/bionic/ppc64el/g/glibc/20200911_180721_529c2@/log.gz

Comparing the two results, glibc 2.27-3ubuntu1.3 is definitively better.
So, marking as verified.

** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

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

Title:
  copy_file_range test fails with linux 5.3+ on bionic

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

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

[Bug 1895339] Re: display has stopped autorotating once logged-in

2020-09-11 Thread crysman
Ah, my fault I am sorry, I've just found out there is a "Lock Screen
Rotation" button in notification area which has been enabled (although
accidentally). Please close this issue, thanks and sorry.

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

Title:
  display has stopped autorotating once logged-in

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

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

[Bug 1770480] Re: preadv2 test does not consider new flag from linux 4.16

2020-09-11 Thread Thadeu Lima de Souza Cascardo
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-bionic/bionic/ppc64el/g/glibc/20200911_170104_5f83a@/log.gz

https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-bionic/bionic/ppc64el/g/glibc/20200911_180721_529c2@/log.gz

Comparing the two results, glibc 2.27-3ubuntu1.3 is definitively better.
So, marking as verified.

** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

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

Title:
  preadv2 test does not consider new flag from linux 4.16

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

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

[Bug 1895339] [NEW] display has stopped autorotating once logged-in

2020-09-11 Thread crysman
Public bug reported:

My modern Spin 5 (SP513-54N) is able to flip display into both "tent"
mode and/or "tablet" mode (almost 360°) and it used to flip OS screen
automatically, too.

Recently, the automatic rotation works only at login screen (before I
log in), once logged-in, flipping display keeps screen unrotated :(

What might be the cause?

Thanks

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: xorg 1:7.7+19ubuntu14
ProcVersionSignature: Ubuntu 5.4.0-47.51-generic 5.4.55
Uname: Linux 5.4.0-47-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: skip
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Fri Sep 11 20:18:47 2020
DistUpgraded: Fresh install
DistroCodename: focal
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Device [8086:8a5a] (rev 07) (prog-if 00 [VGA controller])
   Subsystem: Acer Incorporated [ALI] Device [1025:141f]
InstallationDate: Installed on 2020-06-19 (83 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
MachineType: Acer Spin SP513-54N
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-47-generic 
root=UUID=415eed75-e8aa-4b5a-a49d-51f5b103641e ro quiet splash i8042.nopnp=1 
pci=nocrs vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/17/2020
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: V1.05
dmi.board.name: Caboom_IL
dmi.board.vendor: IL
dmi.board.version: V1.05
dmi.chassis.type: 31
dmi.chassis.vendor: Acer
dmi.chassis.version: V1.05
dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.05:bd07/17/2020:svnAcer:pnSpinSP513-54N:pvrV1.05:rvnIL:rnCaboom_IL:rvrV1.05:cvnAcer:ct31:cvrV1.05:
dmi.product.family: Spin 5
dmi.product.name: Spin SP513-54N
dmi.product.sku: 
dmi.product.version: V1.05
dmi.sys.vendor: Acer
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.101-2
version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.8-0ubuntu1~20.04.1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2.4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug focal ubuntu

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

Title:
  display has stopped autorotating once logged-in

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

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

[Bug 1895333] Re: cannot change the regulatory domain ath10k, QCA9984 (QNAP QWA-AC2600)

2020-09-11 Thread sparks71
** Description changed:

  linux-image-generic-hwe-20.04
  
  hello,
  
  since the update to Ubuntu 20.04.1 I can no longer change the regulatory
  domain of my QCA9984 cards.
  
  This works fine with Ubuntu 16.04.7 / DD-WRT / OpenWrt.
  
  Or if I build the kernel modules myself .. ("Atheros dynamic user
  regulatory testing")
  
  The card has "World" in the Eeprom and is sold worldwide.
  
  [2.896628] ath10k_pci :03:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [2.960023] ath10k_pci :04:00.0: pci irq msi oper_irq_mode 2 irq_mode 
0 reset_mode 0
  [3.015612] ath10k_pci :03:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.015613] ath10k_pci :03:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.015934] ath10k_pci :03:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [3.069593] ath10k_pci :04:00.0: qca9984/qca9994 hw1.0 target 
0x0100 chip_id 0x sub 168c:cafe
  [3.069594] ath10k_pci :04:00.0: kconfig debug 0 debugfs 1 tracing 1 
dfs 0 testmode 0
  [3.069933] ath10k_pci :04:00.0: firmware ver 10.4-3.9.0.2-00124 api 5 
features 
no-p2p,mfp,peer-flow-ctrl,btcoex-param,allows-mesh-bcast,no-ps,peer-fixed-rate 
crc32 ea4c0777
  [4.247469] ath10k_pci :03:00.0: board_file api 2 bmi_id 0:1 crc32 
85498734
  [4.298899] ath10k_pci :04:00.0: board_file api 2 bmi_id 0:2 crc32 
85498734
  [6.980756] ath10k_pci :03:00.0: unsupported HTC service id: 1536
  [7.087506] ath10k_pci :03:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.125981] ath10k_pci :04:00.0: unsupported HTC service id: 1536
  [7.149519] ath: EEPROM regdomain: 0x0
  [7.149520] ath: EEPROM indicates default country code should be used
  [7.149520] ath: doing EEPROM country->regdmn map search
  [7.149521] ath: country maps to regdmn code: 0x3a
  [7.149521] ath: Country alpha2 being used: US
  [7.149521] ath: Regpair used: 0x3a
  [7.152614] ath10k_pci :03:00.0 wlp3s0: renamed from wlan0
  [7.235146] ath10k_pci :04:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal otp 
max-sta 512 raw 0 hwcrypto 1
  [7.297494] ath: EEPROM regdomain: 0x0
  [7.297495] ath: EEPROM indicates default country code should be used
  [7.297495] ath: doing EEPROM country->regdmn map search
  [7.297496] ath: country maps to regdmn code: 0x3a
  [7.297496] ath: Country alpha2 being used: US
  [7.297497] ath: Regpair used: 0x3a
  
- 
- The ath10k driver incorrectly sets the card to "US" ( phy0 + phy1 )
- 
+ The ath driver incorrectly sets the card to "US" ( phy0 + phy1 )
  
  global
  country DE: DFS-ETSI
-   (2400 - 2483 @ 40), (N/A, 20), (N/A)
-   (5150 - 5250 @ 80), (N/A, 20), (N/A), NO-OUTDOOR, AUTO-BW
-   (5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
-   (5470 - 5725 @ 160), (N/A, 26), (0 ms), DFS
-   (5725 - 5875 @ 80), (N/A, 13), (N/A)
-   (57000 - 66000 @ 2160), (N/A, 40), (N/A)
+  (2400 - 2483 @ 40), (N/A, 20), (N/A)
+  (5150 - 5250 @ 80), (N/A, 20), (N/A), NO-OUTDOOR, AUTO-BW
+  (5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
+  (5470 - 5725 @ 160), (N/A, 26), (0 ms), DFS
+  (5725 - 5875 @ 80), (N/A, 13), (N/A)
+  (57000 - 66000 @ 2160), (N/A, 40), (N/A)
  
  phy#1
  country US: DFS-FCC
-   (2402 - 2472 @ 40), (N/A, 30), (N/A)
-   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
-   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
-   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
-   (5735 - 5835 @ 80), (N/A, 30), (N/A)
-   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
+  (2402 - 2472 @ 40), (N/A, 30), (N/A)
+  (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
+  (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
+  (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
+  (5735 - 5835 @ 80), (N/A, 30), (N/A)
+  (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#0
  country US: DFS-FCC
-   (2402 - 2472 @ 40), (N/A, 30), (N/A)
-   (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
-   (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
-   (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
-   (5735 - 5835 @ 80), (N/A, 30), (N/A)
-   (57240 - 63720 @ 2160), (N/A, 40), (N/A)
+  (2402 - 2472 @ 40), (N/A, 30), (N/A)
+  (5170 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
+  (5250 - 5330 @ 80), (N/A, 23), (0 ms), DFS, AUTO-BW
+  (5490 - 5730 @ 160), (N/A, 23), (0 ms), DFS
+  (5735 - 5835 @ 80), (N/A, 30), (N/A)
+  (57240 - 63720 @ 2160), (N/A, 40), (N/A)
  
  phy#2 (self-managed)
  country DE: DFS-UNSET
-   (2402 - 2437 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40MINUS, NO-80MHZ, 
NO-160MHZ
-   (2422 - 2462 @ 40), (6, 22), (N/A), AUTO-BW, NO-80MHZ, NO-160MHZ
-   (2447 - 2482 @ 40), (6, 22), (N/A), AUTO-BW, NO-HT40PLUS, NO-80MHZ, 
NO-160MHZ
-   

[Bug 1887930] Re: [FFe][20.10 FEAT] KVM: Enable Channel Path Handling for vfio-ccw - qemu part

2020-09-11 Thread Frank Heimes
** Changed in: ubuntu-z-systems
   Status: Incomplete => Confirmed

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

Title:
  [FFe][20.10 FEAT] KVM: Enable Channel Path Handling for vfio-ccw -
  qemu part

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1887930/+subscriptions

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

  1   2   3   4   >