[Touch-packages] [Bug 2039280] Re: Support IP address protocol

2023-10-13 Thread Paolo Pisati
** Also affects: iproute2 (Ubuntu Mantic)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to iproute2 in Ubuntu.
https://bugs.launchpad.net/bugs/2039280

Title:
  Support IP address protocol

Status in iproute2 package in Ubuntu:
  New
Status in iproute2 source package in Mantic:
  New

Bug description:
  [Impact]

  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.

  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.

  [Fix]

  Apply the attached patch

  [How to test]

  $ cat << EOF > test.sh
  #!/bin/sh

  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123

  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up

  sudo ip address add dev "$ifr" "$addr2" proto 0x99

  sudo ip link del "$ifr"
  EOF

  $chmod +x test.sh
  $test.sh
  $ echo $?
  0

  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.

  your iproute2 is not patched.
  Alternativerly, you could download Linux v6.5 source code and run:

  $ cd linux
  $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t kci_test_address_proto

  [Regression potential]

  Two clean upstream cherry-picks, regression potential should be low.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2039280] Re: Support IP address protocol

2023-10-13 Thread Paolo Pisati
** Patch added: "iproute2_6.1.0-1ubuntu3.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/iproute2/+bug/2039280/+attachment/5709212/+files/iproute2_6.1.0-1ubuntu3.debdiff

** Description changed:

  [Impact]
  
  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.
  
  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.
  
  [Fix]
  
  Apply the attached patch
  
  [How to test]
  
  $ cat << EOF > test.sh
  #!/bin/sh
  
  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123
  
  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up
  
  sudo ip address add dev "$ifr" "$addr2" proto 0x99
  
  sudo ip link del "$ifr"
  EOF
  
  $chmod +x test.sh
  $test.sh
  $ echo $?
  0
  
  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.
  
  your iproute2 is not patched.
  Alternativerly, you could download Linux v6.5 source code and run:
  
  $ cd linux
  $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t kci_test_address_proto
  
  [Regression potential]
  
- Two clean upstream cherry-picks so regression potential is low.
+ Two clean upstream cherry-picks, low regression potential is low.

** Description changed:

  [Impact]
  
  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.
  
  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.
  
  [Fix]
  
  Apply the attached patch
  
  [How to test]
  
  $ cat << EOF > test.sh
  #!/bin/sh
  
  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123
  
  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up
  
  sudo ip address add dev "$ifr" "$addr2" proto 0x99
  
  sudo ip link del "$ifr"
  EOF
  
  $chmod +x test.sh
  $test.sh
  $ echo $?
  0
  
  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.
  
  your iproute2 is not patched.
  Alternativerly, you could download Linux v6.5 source code and run:
  
  $ cd linux
  $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t kci_test_address_proto
  
  [Regression potential]
  
- Two clean upstream cherry-picks, low regression potential is low.
+ Two clean upstream cherry-picks, regression potential should be low.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to iproute2 in Ubuntu.
https://bugs.launchpad.net/bugs/2039280

Title:
  Support IP address protocol

Status in iproute2 package in Ubuntu:
  New

Bug description:
  [Impact]

  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.

  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.

  [Fix]

  Apply the attached patch

  [How to test]

  $ cat << EOF > test.sh
  #!/bin/sh

  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123

  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up

  sudo ip address add dev "$ifr" "$addr2" proto 0x99

  sudo ip link del "$ifr"
  EOF

  $chmod +x test.sh
  $test.sh
  $ echo $?
  0

  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.

  your iproute2 is not patched.
  Alternativerly, you could download Linux v6.5 source code and run:

  $ cd linux
  $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t kci_test_address_proto

  [Regression potential]

  Two clean upstream cherry-picks, regression potential should be low.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More 

[Touch-packages] [Bug 2039280] Re: Support IP address protocol

2023-10-13 Thread Paolo Pisati
** Description changed:

  [Impact]
  
  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.
- 
+ 
  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.
- 
  
  [Fix]
  
  Apply the attached patch
  
  [How to test]
  
  $ cat << EOF > test.sh
  #!/bin/sh
  
  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123
  
  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up
  
  sudo ip address add dev "$ifr" "$addr2" proto 0x99
  
  sudo ip link del "$ifr"
  EOF
  
  $chmod +x test.sh
  $test.sh
  $ echo $?
  0
  
  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.
  
  your iproute2 is not patched.
- Alternativerly, you could download Linux v6.5 and run:
+ Alternativerly, you could download Linux v6.5 source code and run:
  
- $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t
- kci_test_address_proto
- 
+ $ cd linux
+ $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t kci_test_address_proto
  
  [Regression potential]
  
  The cherry-picked patches are 2 upstream commits so regression potential
  is low.

** Description changed:

  [Impact]
  
  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.
  
  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.
  
  [Fix]
  
  Apply the attached patch
  
  [How to test]
  
  $ cat << EOF > test.sh
  #!/bin/sh
  
  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123
  
  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up
  
  sudo ip address add dev "$ifr" "$addr2" proto 0x99
  
  sudo ip link del "$ifr"
  EOF
  
  $chmod +x test.sh
  $test.sh
  $ echo $?
  0
  
  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.
  
  your iproute2 is not patched.
  Alternativerly, you could download Linux v6.5 source code and run:
  
  $ cd linux
  $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t kci_test_address_proto
  
  [Regression potential]
  
- The cherry-picked patches are 2 upstream commits so regression potential
- is low.
+ Two clean upstream cherry-picks so regression potential is low.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to iproute2 in Ubuntu.
https://bugs.launchpad.net/bugs/2039280

Title:
  Support IP address protocol

Status in iproute2 package in Ubuntu:
  New

Bug description:
  [Impact]

  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.

  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.

  [Fix]

  Apply the attached patch

  [How to test]

  $ cat << EOF > test.sh
  #!/bin/sh

  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123

  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up

  sudo ip address add dev "$ifr" "$addr2" proto 0x99

  sudo ip link del "$ifr"
  EOF

  $chmod +x test.sh
  $test.sh
  $ echo $?
  0

  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.

  your iproute2 is not patched.
  Alternativerly, you could download Linux v6.5 source code and run:

  $ cd linux
  $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t kci_test_address_proto

  [Regression potential]

  Two clean upstream cherry-picks so regression potential is low.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2039280] [NEW] Support IP address protocol

2023-10-13 Thread Paolo Pisati
Public bug reported:

[Impact]

IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
provenance of the IP address. The attribute is modeled after ip route
protocols, and essentially allows the administrator or userspace stack to
tag addresses in some way that makes sense to the actor in question.
Support for this feature was merged with commit 47f0bd503210 ("net: Add new
protocol attribute to IP addresses"), for kernel 5.18.

In this patch, add support for setting the protocol attribute at IP address
addition, replacement, and listing requests.


[Fix]

Apply the attached patch

[How to test]

$ cat << EOF > test.sh
#!/bin/sh

addr=192.0.2.1/28
addr2=${addr%/*}2/${addr#*/}
ifr=test-dummy123

sudo ip link add name "$ifr" type dummy
sudo ip link set "$ifr" up

sudo ip address add dev "$ifr" "$addr2" proto 0x99

sudo ip link del "$ifr"
EOF

$chmod +x test.sh
$test.sh
$ echo $?
0

if you get an error instead, like:
Error: either "local" is duplicate, or "proto" is a garbage.

your iproute2 is not patched.
Alternativerly, you could download Linux v6.5 and run:

$ sudo ./tools/testing/selftests/net/rtnetlink.sh -t
kci_test_address_proto


[Regression potential]

The cherry-picked patches are 2 upstream commits so regression potential
is low.

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to iproute2 in Ubuntu.
https://bugs.launchpad.net/bugs/2039280

Title:
  Support IP address protocol

Status in iproute2 package in Ubuntu:
  New

Bug description:
  [Impact]

  IPv4 and IPv6 addresses can be assigned a protocol value that indicates the
  provenance of the IP address. The attribute is modeled after ip route
  protocols, and essentially allows the administrator or userspace stack to
  tag addresses in some way that makes sense to the actor in question.
  Support for this feature was merged with commit 47f0bd503210 ("net: Add new
  protocol attribute to IP addresses"), for kernel 5.18.
  
  In this patch, add support for setting the protocol attribute at IP address
  addition, replacement, and listing requests.

  
  [Fix]

  Apply the attached patch

  [How to test]

  $ cat << EOF > test.sh
  #!/bin/sh

  addr=192.0.2.1/28
  addr2=${addr%/*}2/${addr#*/}
  ifr=test-dummy123

  sudo ip link add name "$ifr" type dummy
  sudo ip link set "$ifr" up

  sudo ip address add dev "$ifr" "$addr2" proto 0x99

  sudo ip link del "$ifr"
  EOF

  $chmod +x test.sh
  $test.sh
  $ echo $?
  0

  if you get an error instead, like:
  Error: either "local" is duplicate, or "proto" is a garbage.

  your iproute2 is not patched.
  Alternativerly, you could download Linux v6.5 and run:

  $ sudo ./tools/testing/selftests/net/rtnetlink.sh -t
  kci_test_address_proto

  
  [Regression potential]

  The cherry-picked patches are 2 upstream commits so regression
  potential is low.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 2016908] Re: Unable to deploy hosts with lunar images after 20230319 - fails to connect and download squashfs

2023-04-20 Thread Paolo Pisati
Kernel side:

kernel/sys.c::SYSCALL_DEFINE5(prctl, int, option,...):

{
struct task_struct *me = current;
unsigned char comm[sizeof(me->comm)];
long error;

error = security_task_prctl(option, arg2, arg3, arg4, arg5);
if (error != -ENOSYS)
return error;

error = 0;
switch (option) {
case PR_SET_PDEATHSIG:
if (!valid_signal(arg2)) {
error = -EINVAL;
break;
}
me->pdeath_signal = arg2;
break;

...
return error;
}

and include/linux/signal.h::valid_signal():

/* Test if 'sig' is valid signal. Use this instead of testing _NSIG directly */
static inline int valid_signal(unsigned long sig)
{
return sig <= _NSIG ? 1 : 0;
}

and arch/x86/include/asm/signal.h:#define _NSIG 64

I wonder about security_task_prctl() though.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/2016908

Title:
  Unable to deploy hosts with lunar images after 20230319 - fails to
  connect and download squashfs

Status in maas-images:
  Incomplete
Status in systemd package in Ubuntu:
  New

Bug description:
  I'm assuming the image being used for these deploys is 20230417 or
  20230417.1 based on the fact that I saw a 6.2 kernel being used which
  I don't believe was part of the 20230319 serial. I don't have access
  to the maas server, so I can't directly check any log files.

  MAAS Version: 3.3.2

  Here's where the serial log indicates it can't download the squashfs. The 
full log is attached as scobee-lunar-no-squashfs.log (there are some other 
console message intermixed):
  no search or nameservers found in /run/net-BOOTIF.conf /run/net-*.conf 
/run/net6
  -*.conf
  :: 
root=squash:http://10.229.32.21:5248/images/ubuntu/arm64/ga-23.04/lunar/candi
  date/squa[  206.804704] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, 
fsverity
  =yes
  shfs
  :: mount_squash downloading 
http://10.229.32.21:5248/images/ubuntu/arm64/ga-23.0
  4/lunar/candidate/squashfs to /root.tmp.img
  Connecting to 10.229.32.21:5248 (10.229.32.21:5248)
  wget: can't connect to remote host (10.229.32.21): Network is unreachable
  :: mount -t squashfs -o loop  '/root.tmp.img' '/root.tmp'
  mount: mounting /root.tmp.img on /root.tmp failed: No such file or directory
  done.

  
  Still gathering logs and info and will update as I go.

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


-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1958127] [NEW] jammy:armhf assertion fail ../../bfd/elf32-arm.c:14759

2022-01-17 Thread Paolo Pisati
Public bug reported:

While running glibc autopkgtsts, ld assertion fail like this:

arm-linux-gnueabihf-gcc-10   -shared -static-libgcc  
-Wl,-dynamic-linker=/lib/ld-linux-armhf.so.3 -Wl,-z,defs 
-B/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/csu/  
-Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both  
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/math 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/dlfcn 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nss 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nis 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/rt 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/resolv 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/mathvec 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/support 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nptl 
-Wl,-rpath-link=/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/math:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/dlfcn:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nss:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nis:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/rt:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/resolv:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/mathvec:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/support:/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nptl
 -o 
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf/sotruss-lib.so  
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/csu/abi-note.o 
-Wl,--as-needed 
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf/sotruss-lib.os  
-Wl,--no-as-needed -Wl,--start-group 
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/libc.so 
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/libc_nonshared.a 
-Wl,--as-needed 
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf/ld.so 
-Wl,--no-as-needed -Wl,--end-group
mv -f 
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf/ld-linux-armhf.so.3.new
 
/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf/ld-linux-armhf.so.3
/usr/bin/ld: BFD (GNU Binutils for Ubuntu) 2.37 assertion fail 
../../bfd/elf32-arm.c:14759
collect2: error: ld returned 1 exit status

Full log here: https://autopkgtest.ubuntu.com/results/autopkgtest-jammy-
canonical-kernel-team-
bootstrap/jammy/armhf/g/glibc/20220114_114517_661dd@/log.gz

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

** Affects: binutils (Ubuntu Jammy)
 Importance: Undecided
 Status: New

** Also affects: binutils (Ubuntu Jammy)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to binutils in Ubuntu.
https://bugs.launchpad.net/bugs/1958127

Title:
  jammy:armhf assertion fail ../../bfd/elf32-arm.c:14759

Status in binutils package in Ubuntu:
  New
Status in binutils source package in Jammy:
  New

Bug description:
  While running glibc autopkgtsts, ld assertion fail like this:

  arm-linux-gnueabihf-gcc-10   -shared -static-libgcc  
-Wl,-dynamic-linker=/lib/ld-linux-armhf.so.3 -Wl,-z,defs 
-B/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/csu/  
-Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both  
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/math 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/elf 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/dlfcn 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nss 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nis 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/rt 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/resolv 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/mathvec 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/support 
-L/tmp/autopkgtest.yv4Uj8/build.WNF/src/build-tree/armhf-libc/nptl 

[Touch-packages] [Bug 1912609] Re: mac80211_hwsim: hostapd fails to start with S1G band

2021-01-21 Thread Paolo Pisati
** Patch added: "Upstream cherry pick for S1G band fix"
   
https://bugs.launchpad.net/ubuntu/+source/wpa/+bug/1912609/+attachment/5455144/+files/wpa_2.9-1ubuntu10.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to wpa in Ubuntu.
https://bugs.launchpad.net/bugs/1912609

Title:
  mac80211_hwsim: hostapd fails to start with S1G band

Status in wpa package in Ubuntu:
  New
Status in wpa source package in Hirsute:
  New

Bug description:
  Hostapd fails to start on a recent 5.10+ kernel:

  $ cat repro.sh 
  #!/bin/sh

  sudo modprobe mac80211_hwsim
  sudo  ip a flush dev wlan0
  sudo  ip a add 192.168.5.1/24 dev wlan0

  cat << EOF > hostapd.conf
  interface=wlan0
  driver=nl80211
  hw_mode=b
  channel=1
  ssid=fake net
  EOF

  sudo  hostapd hostapd.conf

  ubuntu@hirsute-amd64:~$ ./repro.sh 
  Configuration file: hostapd.conf
  nl80211: kernel reports: expected nested data
  Using interface wlan0 with hwaddr 02:00:00:00:00:00 and ssid "fake net"
  wlan0: interface state UNINITIALIZED->ENABLED
  wlan0: AP-ENABLED 
  ^C
  wlan0: interface state ENABLED->DISABLED
  wlan0: AP-DISABLED  
  wlan0: CTRL-EVENT-TERMINATING 
  nl80211: deinit ifname=wlan0 disabled_11b_rates=0

  this due to the mismanagement of the newly added S1G band, the
  attached patch fixes it.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1912609] [NEW] mac80211_hwsim: hostapd fails to start with S1G band

2021-01-21 Thread Paolo Pisati
Public bug reported:

Hostapd fails to start on a recent 5.10+ kernel:

$ cat repro.sh 
#!/bin/sh

sudo modprobe mac80211_hwsim
sudo  ip a flush dev wlan0
sudo  ip a add 192.168.5.1/24 dev wlan0

cat << EOF > hostapd.conf
interface=wlan0
driver=nl80211
hw_mode=b
channel=1
ssid=fake net
EOF

sudo  hostapd hostapd.conf

ubuntu@hirsute-amd64:~$ ./repro.sh 
Configuration file: hostapd.conf
nl80211: kernel reports: expected nested data
Using interface wlan0 with hwaddr 02:00:00:00:00:00 and ssid "fake net"
wlan0: interface state UNINITIALIZED->ENABLED
wlan0: AP-ENABLED 
^C
wlan0: interface state ENABLED->DISABLED
wlan0: AP-DISABLED  
wlan0: CTRL-EVENT-TERMINATING 
nl80211: deinit ifname=wlan0 disabled_11b_rates=0

this due to the mismanagement of the newly added S1G band, the attached
patch fixes it.

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

** Affects: wpa (Ubuntu Hirsute)
 Importance: Undecided
 Status: New

** Patch added: "Upstream cherry pick for S1G band fix"
   
https://bugs.launchpad.net/bugs/1912609/+attachment/5455142/+files/wpa_2.9-1ubuntu10.debdiff

** Also affects: wpa (Ubuntu Hirsute)
   Importance: Undecided
   Status: New

** Patch removed: "Upstream cherry pick for S1G band fix"
   
https://bugs.launchpad.net/ubuntu/+source/wpa/+bug/1912609/+attachment/5455142/+files/wpa_2.9-1ubuntu10.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to wpa in Ubuntu.
https://bugs.launchpad.net/bugs/1912609

Title:
  mac80211_hwsim: hostapd fails to start with S1G band

Status in wpa package in Ubuntu:
  New
Status in wpa source package in Hirsute:
  New

Bug description:
  Hostapd fails to start on a recent 5.10+ kernel:

  $ cat repro.sh 
  #!/bin/sh

  sudo modprobe mac80211_hwsim
  sudo  ip a flush dev wlan0
  sudo  ip a add 192.168.5.1/24 dev wlan0

  cat << EOF > hostapd.conf
  interface=wlan0
  driver=nl80211
  hw_mode=b
  channel=1
  ssid=fake net
  EOF

  sudo  hostapd hostapd.conf

  ubuntu@hirsute-amd64:~$ ./repro.sh 
  Configuration file: hostapd.conf
  nl80211: kernel reports: expected nested data
  Using interface wlan0 with hwaddr 02:00:00:00:00:00 and ssid "fake net"
  wlan0: interface state UNINITIALIZED->ENABLED
  wlan0: AP-ENABLED 
  ^C
  wlan0: interface state ENABLED->DISABLED
  wlan0: AP-DISABLED  
  wlan0: CTRL-EVENT-TERMINATING 
  nl80211: deinit ifname=wlan0 disabled_11b_rates=0

  this due to the mismanagement of the newly added S1G band, the
  attached patch fixes it.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1881292] [NEW] Linux 5.7: autopkgtest failures - lxc-test-cloneconfig && lxc-destroy

2020-05-29 Thread Paolo Pisati
Public bug reported:

...
make[1]: Leaving directory '/tmp/autopkgtest.OzTsXV/build.myP/src'
PASS: lxc-tests: lxc-test-api-reboot (75s)
PASS: lxc-tests: lxc-test-apparmor (1s)
PASS: lxc-tests: lxc-test-apparmor-generated (0s)
PASS: lxc-tests: lxc-test-apparmor-mount (25s)
PASS: lxc-tests: lxc-test-attach (0s)
PASS: lxc-tests: lxc-test-autostart (38s)
PASS: lxc-tests: lxc-test-basic (0s)
PASS: lxc-tests: lxc-test-cgpath (0s)
PASS: lxc-tests: lxc-test-checkpoint-restore (0s)
FAIL: lxc-tests: lxc-test-cloneconfig (1s)
---
lxc-destroy: lxctestb: tools/lxc_destroy.c: main: 242 Container is not defined
Test 1 starting (/tmp/lxctest-2SbLtT/1.conf)
lxc-destroy: lxctestb2: tools/lxc_destroy.c: main: 242 Container is not defined
FAIL
---
...

Groovy 5.7 kernel here: https://launchpad.net/~canonical-kernel-
team/+archive/ubuntu/bootstrap - linux-5.7

Full log here:
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-groovy-canonical-kernel-team-
bootstrap/groovy/amd64/l/lxc/20200528_142652_ac8b1@/log.gz

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1881292

Title:
  Linux 5.7: autopkgtest failures - lxc-test-cloneconfig && lxc-destroy

Status in lxc package in Ubuntu:
  New

Bug description:
  ...
  make[1]: Leaving directory '/tmp/autopkgtest.OzTsXV/build.myP/src'
  PASS: lxc-tests: lxc-test-api-reboot (75s)
  PASS: lxc-tests: lxc-test-apparmor (1s)
  PASS: lxc-tests: lxc-test-apparmor-generated (0s)
  PASS: lxc-tests: lxc-test-apparmor-mount (25s)
  PASS: lxc-tests: lxc-test-attach (0s)
  PASS: lxc-tests: lxc-test-autostart (38s)
  PASS: lxc-tests: lxc-test-basic (0s)
  PASS: lxc-tests: lxc-test-cgpath (0s)
  PASS: lxc-tests: lxc-test-checkpoint-restore (0s)
  FAIL: lxc-tests: lxc-test-cloneconfig (1s)
  ---
  lxc-destroy: lxctestb: tools/lxc_destroy.c: main: 242 Container is not defined
  Test 1 starting (/tmp/lxctest-2SbLtT/1.conf)
  lxc-destroy: lxctestb2: tools/lxc_destroy.c: main: 242 Container is not 
defined
  FAIL
  ---
  ...

  Groovy 5.7 kernel here: https://launchpad.net/~canonical-kernel-
  team/+archive/ubuntu/bootstrap - linux-5.7

  Full log here:
  
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
  /autopkgtest-groovy-canonical-kernel-team-
  bootstrap/groovy/amd64/l/lxc/20200528_142652_ac8b1@/log.gz

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1871182] Re: [RTL810xE] No ethernet connection

2020-04-20 Thread Paolo Pisati
Here is a test kernel, could you test it and tell us if it fixes your
problem?

https://people.canonical.com/~ppisati/lp1871182/

linux-image-unsigned-5.4.0-25-generic_5.4.0-25.29~lp1871182_amd64.deb
linux-modules-5.4.0-25-generic_5.4.0-25.29~lp1871182_amd64.deb
linux-modules-extra-5.4.0-25-generic_5.4.0-25.29~lp1871182_amd64.deb

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to initramfs-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1871182

Title:
  [RTL810xE] No ethernet connection

Status in initramfs-tools package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  ubuntu doesn't show cable plugged-in. Wifi is also intermittent.
  Errors in log with realtek. long boot up. No problems with live-USB or
  fresh install, only after update.

  sudo lspci -vnvn > lspci-vnvn.log
  pcilib: sysfs_read_vpd: read failed: Input/output error

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-headers-5.4.0-22-generic 5.4.0-22.26
  ProcVersionSignature: Ubuntu 5.4.0-22.26-generic 5.4.29
  Uname: Linux 5.4.0-22-generic x86_64
  ApportVersion: 2.20.11-0ubuntu24
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  finisdiem   1332 F pulseaudio
   /dev/snd/controlC0:  finisdiem   1332 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Apr  6 10:49:03 2020
  InstallationDate: Installed on 2020-04-01 (4 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200331)
  MachineType: Hewlett-Packard HP Pavilion g6 Notebook PC
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-22-generic 
root=UUID=e2543a6c-bc86-40b3-a4dd-d9e29603fb52 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-22-generic N/A
   linux-backports-modules-5.4.0-22-generic  N/A
   linux-firmware1.187
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/04/2012
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.15
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 1849
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 57.2F
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.15:bd10/04/2012:svnHewlett-Packard:pnHPPaviliong6NotebookPC:pvr088B1130591620100:rvnHewlett-Packard:rn1849:rvr57.2F:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.family: 103C_5335KV G=N L=CON B=HP S=PAV
  dmi.product.name: HP Pavilion g6 Notebook PC
  dmi.product.sku: C2N51UA#ABA
  dmi.product.version: 088B1130591620100
  dmi.sys.vendor: Hewlett-Packard

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1383410] Re: gcc PR 58854 - 4.8.1 and 4.8.2 are known to miscompile the ARM kernel

2014-10-20 Thread Paolo Pisati
** Package changed: gcc-4.8-armhf-cross (Ubuntu) = gcc-4.8 (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gcc-4.8 in Ubuntu.
https://bugs.launchpad.net/bugs/1383410

Title:
  gcc PR 58854 - 4.8.1 and 4.8.2 are known to miscompile the ARM kernel

Status in “gcc-4.8” package in Ubuntu:
  New

Bug description:
  From https://lkml.org/lkml/2014/10/10/272:

  gcc versions 4.8.[012] and 4.9.0 generates code that prematurely adjusts the 
stack pointer such that still-to-be-referenced locals
  are below the stack pointer, which allows them to be overwritten by 
interrupts.

  rmk already has a patch in his for-next branch that blacklist this
  compiler:

  http://ftp.arm.linux.org.uk/cgit/linux-arm.git/commit/?h=for-
  nextid=7fc150543c73de71859631c8a6b17e3067fe7617

   and Trusty's toolchain is affected:

  [flag@stinkpad linux-2.6]$ make ARCH=arm 
CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf- 
HOSTCC  scripts/basic/fixdep
HOSTCC  scripts/kconfig/conf.o
SHIPPED scripts/kconfig/zconf.tab.c
SHIPPED scripts/kconfig/zconf.lex.c
HOSTCC  scripts/kconfig/zconf.tab.o
HOSTLD  scripts/kconfig/conf
  scripts/kconfig/conf --silentoldconfig Kconfig
CHK include/config/kernel.release
CHK include/generated/uapi/linux/version.h
CHK include/generated/utsrelease.h
  make[1]: `include/generated/mach-types.h' is up to date.
CC  kernel/bounds.s
GEN include/generated/bounds.h
CC  arch/arm/kernel/asm-offsets.s
  arch/arm/kernel/asm-offsets.c:53:2: error: #error Your compiler is too buggy; 
it is known to miscompile kernels
   #error Your compiler is too buggy; it is known to miscompile kernels
^
  arch/arm/kernel/asm-offsets.c:54:2: error: #error and result in filesystem 
corruption and oopses.
   #error and result in filesystem corruption and oopses.
^
  make[1]: *** [arch/arm/kernel/asm-offsets.s] Error 1
  make: *** [prepare0] Error 2
  [flag@stinkpad linux-2.6]$

  [flag@stinkpad linux-2.6]$ gcc -v
  Using built-in specs.
  COLLECT_GCC=gcc
  COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
  Target: x86_64-linux-gnu
  Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
4.8.2-19ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs 
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr 
--program-suffix=-4.8 --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls 
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap 
--enable-plugin --with-system-zlib --disable-browser-plugin 
--enable-java-awt=gtk --enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home 
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar 
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic 
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu 
--target=x86_64-linux-gnu
  Thread model: posix
  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) 
  [flag@stinkpad linux-2.6]$

  [flag@stinkpad linux-2.6]$ dpkg -l | grep linux-gnueabihf-
  ii  gcc-4.6-arm-linux-gnueabihf-base  
4.6.3-8ubuntu1cross1.67 all  GCC, the GNU 
Compiler Collection (base package)
  ii  gcc-4.8-arm-linux-gnueabihf-base  
4.8.2-16ubuntu4cross0.11amd64GCC, the GNU 
Compiler Collection (base package)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1383410] Re: gcc PR 58854 - 4.8.1 and 4.8.2 are known to miscompile the ARM kernel

2014-10-20 Thread Paolo Pisati
while we carry the 4.8.2 version, the proper fix was already cherry-
picked and applied, we'll revert Russel patch when it flows downstream.

Marking as invalid.

** Changed in: gcc-4.8 (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gcc-4.8 in Ubuntu.
https://bugs.launchpad.net/bugs/1383410

Title:
  gcc PR 58854 - 4.8.1 and 4.8.2 are known to miscompile the ARM kernel

Status in “gcc-4.8” package in Ubuntu:
  Invalid

Bug description:
  From https://lkml.org/lkml/2014/10/10/272:

  gcc versions 4.8.[012] and 4.9.0 generates code that prematurely adjusts the 
stack pointer such that still-to-be-referenced locals
  are below the stack pointer, which allows them to be overwritten by 
interrupts.

  rmk already has a patch in his for-next branch that blacklist this
  compiler:

  http://ftp.arm.linux.org.uk/cgit/linux-arm.git/commit/?h=for-
  nextid=7fc150543c73de71859631c8a6b17e3067fe7617

   and Trusty's toolchain is affected:

  [flag@stinkpad linux-2.6]$ make ARCH=arm 
CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf- 
HOSTCC  scripts/basic/fixdep
HOSTCC  scripts/kconfig/conf.o
SHIPPED scripts/kconfig/zconf.tab.c
SHIPPED scripts/kconfig/zconf.lex.c
HOSTCC  scripts/kconfig/zconf.tab.o
HOSTLD  scripts/kconfig/conf
  scripts/kconfig/conf --silentoldconfig Kconfig
CHK include/config/kernel.release
CHK include/generated/uapi/linux/version.h
CHK include/generated/utsrelease.h
  make[1]: `include/generated/mach-types.h' is up to date.
CC  kernel/bounds.s
GEN include/generated/bounds.h
CC  arch/arm/kernel/asm-offsets.s
  arch/arm/kernel/asm-offsets.c:53:2: error: #error Your compiler is too buggy; 
it is known to miscompile kernels
   #error Your compiler is too buggy; it is known to miscompile kernels
^
  arch/arm/kernel/asm-offsets.c:54:2: error: #error and result in filesystem 
corruption and oopses.
   #error and result in filesystem corruption and oopses.
^
  make[1]: *** [arch/arm/kernel/asm-offsets.s] Error 1
  make: *** [prepare0] Error 2
  [flag@stinkpad linux-2.6]$

  [flag@stinkpad linux-2.6]$ gcc -v
  Using built-in specs.
  COLLECT_GCC=gcc
  COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
  Target: x86_64-linux-gnu
  Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
4.8.2-19ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs 
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr 
--program-suffix=-4.8 --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls 
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap 
--enable-plugin --with-system-zlib --disable-browser-plugin 
--enable-java-awt=gtk --enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home 
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar 
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic 
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu 
--target=x86_64-linux-gnu
  Thread model: posix
  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) 
  [flag@stinkpad linux-2.6]$

  [flag@stinkpad linux-2.6]$ dpkg -l | grep linux-gnueabihf-
  ii  gcc-4.6-arm-linux-gnueabihf-base  
4.6.3-8ubuntu1cross1.67 all  GCC, the GNU 
Compiler Collection (base package)
  ii  gcc-4.8-arm-linux-gnueabihf-base  
4.8.2-16ubuntu4cross0.11amd64GCC, the GNU 
Compiler Collection (base package)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1359262] Re: Chrome + Radeon + hardware acceleration: black Google maps tab

2014-08-20 Thread Paolo Pisati
** Attachment added: Screenshot2014-08-20.png
   
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1359262/+attachment/4182583/+files/Screenshot2014-08-20.png

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/1359262

Title:
  Chrome + Radeon + hardware acceleration: black Google maps tab

Status in “mesa” package in Ubuntu:
  New

Bug description:
  When opening Google Maps, i got a completely black tab instead - see
  the attached image.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgl1-mesa-dri 10.1.3-0ubuntu0.1
  ProcVersionSignature: Ubuntu 3.13.0-34.60-generic 3.13.11.4
  Uname: Linux 3.13.0-34-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.3
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Wed Aug 20 17:29:32 2014
  DistUpgraded: 2014-04-04 15:34:47,605 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Park [Mobility Radeon HD 5430] 
[1002:68e1] (prog-if 00 [VGA controller])
 Subsystem: PC Partner Limited / Sapphire Technology Caicos [Radeon HD 
5450] [174b:3000]
  InstallationDate: Installed on 2012-11-15 (643 days ago)
  InstallationMedia: Ubuntu-Server 12.10 Quantal Quetzal - Release amd64 
(20121017.2)
  MachineType: Intel Corporation Shark Bay Client platform
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic 
root=UUID=5f908618-7000-4276-855c-8ec7a19ce316 ro crashkernel=384M-:128M 
crashkernel=384M-:128M crashkernel=384M-:128M crashkernel=384M-:128M
  SourcePackage: mesa
  UpgradeStatus: Upgraded to trusty on 2014-04-04 (138 days ago)
  dmi.bios.date: 01/28/2013
  dmi.bios.vendor: Intel Corporation
  dmi.bios.version: HSWLPTU1.86C.0109.R03.1301282055
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Flathead Creek Crb
  dmi.board.vendor: Intel Corp.
  dmi.board.version: 2
  dmi.chassis.asset.tag: Asset Tag
  dmi.chassis.type: 3
  dmi.chassis.vendor: Intel Corporation
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnIntelCorporation:bvrHSWLPTU1.86C.0109.R03.1301282055:bd01/28/2013:svnIntelCorporation:pnSharkBayClientplatform:pvr0.1:rvnIntelCorp.:rnFlatheadCreekCrb:rvr2:cvnIntelCorporation:ct3:cvr0.1:
  dmi.product.name: Shark Bay Client platform
  dmi.product.version: 0.1
  dmi.sys.vendor: Intel Corporation
  version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Wed Aug 20 11:04:41 2014
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.15.1-0ubuntu2
  xserver.video_driver: radeon

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1359262] [NEW] Chrome + Radeon + hardware acceleration: black Google maps tab

2014-08-20 Thread Paolo Pisati
Public bug reported:

When opening Google Maps, i got a completely black tab instead - see the
attached image.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: libgl1-mesa-dri 10.1.3-0ubuntu0.1
ProcVersionSignature: Ubuntu 3.13.0-34.60-generic 3.13.11.4
Uname: Linux 3.13.0-34-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Wed Aug 20 17:29:32 2014
DistUpgraded: 2014-04-04 15:34:47,605 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Park [Mobility Radeon HD 5430] 
[1002:68e1] (prog-if 00 [VGA controller])
   Subsystem: PC Partner Limited / Sapphire Technology Caicos [Radeon HD 5450] 
[174b:3000]
InstallationDate: Installed on 2012-11-15 (643 days ago)
InstallationMedia: Ubuntu-Server 12.10 Quantal Quetzal - Release amd64 
(20121017.2)
MachineType: Intel Corporation Shark Bay Client platform
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic 
root=UUID=5f908618-7000-4276-855c-8ec7a19ce316 ro crashkernel=384M-:128M 
crashkernel=384M-:128M crashkernel=384M-:128M crashkernel=384M-:128M
SourcePackage: mesa
UpgradeStatus: Upgraded to trusty on 2014-04-04 (138 days ago)
dmi.bios.date: 01/28/2013
dmi.bios.vendor: Intel Corporation
dmi.bios.version: HSWLPTU1.86C.0109.R03.1301282055
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Flathead Creek Crb
dmi.board.vendor: Intel Corp.
dmi.board.version: 2
dmi.chassis.asset.tag: Asset Tag
dmi.chassis.type: 3
dmi.chassis.vendor: Intel Corporation
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnIntelCorporation:bvrHSWLPTU1.86C.0109.R03.1301282055:bd01/28/2013:svnIntelCorporation:pnSharkBayClientplatform:pvr0.1:rvnIntelCorp.:rnFlatheadCreekCrb:rvr2:cvnIntelCorporation:ct3:cvr0.1:
dmi.product.name: Shark Bay Client platform
dmi.product.version: 0.1
dmi.sys.vendor: Intel Corporation
version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Wed Aug 20 11:04:41 2014
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.15.1-0ubuntu2
xserver.video_driver: radeon

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


** Tags: amd64 apport-bug compiz-0.9 trusty ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/1359262

Title:
  Chrome + Radeon + hardware acceleration: black Google maps tab

Status in “mesa” package in Ubuntu:
  New

Bug description:
  When opening Google Maps, i got a completely black tab instead - see
  the attached image.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgl1-mesa-dri 10.1.3-0ubuntu0.1
  ProcVersionSignature: Ubuntu 3.13.0-34.60-generic 3.13.11.4
  Uname: Linux 3.13.0-34-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.3
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Wed Aug 20 17:29:32 2014
  DistUpgraded: 2014-04-04 15:34:47,605 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Park [Mobility Radeon HD 5430] 
[1002:68e1] (prog-if 00 [VGA controller])
 Subsystem: PC Partner Limited / Sapphire Technology Caicos [Radeon HD 
5450] [174b:3000]
  InstallationDate: Installed on 2012-11-15 (643 days ago)
  InstallationMedia: Ubuntu-Server 12.10 Quantal Quetzal - Release amd64 
(20121017.2)
  MachineType: Intel Corporation Shark Bay Client platform
  ProcKernelCmdLine: 

[Touch-packages] [Bug 1359262] Re: Chrome + Radeon + hardware acceleration: black Google maps tab

2014-08-20 Thread Paolo Pisati
i forgot to mention that turning off the hardware acceleration in
chrome - Settings - System, makes the bug disappear.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/1359262

Title:
  Chrome + Radeon + hardware acceleration: black Google maps tab

Status in “mesa” package in Ubuntu:
  New

Bug description:
  When opening Google Maps, i got a completely black tab instead - see
  the attached image.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgl1-mesa-dri 10.1.3-0ubuntu0.1
  ProcVersionSignature: Ubuntu 3.13.0-34.60-generic 3.13.11.4
  Uname: Linux 3.13.0-34-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.3
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Wed Aug 20 17:29:32 2014
  DistUpgraded: 2014-04-04 15:34:47,605 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Park [Mobility Radeon HD 5430] 
[1002:68e1] (prog-if 00 [VGA controller])
 Subsystem: PC Partner Limited / Sapphire Technology Caicos [Radeon HD 
5450] [174b:3000]
  InstallationDate: Installed on 2012-11-15 (643 days ago)
  InstallationMedia: Ubuntu-Server 12.10 Quantal Quetzal - Release amd64 
(20121017.2)
  MachineType: Intel Corporation Shark Bay Client platform
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic 
root=UUID=5f908618-7000-4276-855c-8ec7a19ce316 ro crashkernel=384M-:128M 
crashkernel=384M-:128M crashkernel=384M-:128M crashkernel=384M-:128M
  SourcePackage: mesa
  UpgradeStatus: Upgraded to trusty on 2014-04-04 (138 days ago)
  dmi.bios.date: 01/28/2013
  dmi.bios.vendor: Intel Corporation
  dmi.bios.version: HSWLPTU1.86C.0109.R03.1301282055
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Flathead Creek Crb
  dmi.board.vendor: Intel Corp.
  dmi.board.version: 2
  dmi.chassis.asset.tag: Asset Tag
  dmi.chassis.type: 3
  dmi.chassis.vendor: Intel Corporation
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnIntelCorporation:bvrHSWLPTU1.86C.0109.R03.1301282055:bd01/28/2013:svnIntelCorporation:pnSharkBayClientplatform:pvr0.1:rvnIntelCorp.:rnFlatheadCreekCrb:rvr2:cvnIntelCorporation:ct3:cvr0.1:
  dmi.product.name: Shark Bay Client platform
  dmi.product.version: 0.1
  dmi.sys.vendor: Intel Corporation
  version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Wed Aug 20 11:04:41 2014
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.15.1-0ubuntu2
  xserver.video_driver: radeon

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp