[Bug 1920784] Re: qemu-system-ppc64le fails with kvm acceleration

2021-03-23 Thread Laurent Vivier
** Also affects: linux (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/1920784

Title:
  qemu-system-ppc64le fails with kvm acceleration

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

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

[Bug 1920784] Re: qemu-system-ppc64le fails with kvm acceleration

2021-03-23 Thread Laurent Vivier
You need a kernel with a the following fix for POWER9:

commit 25edcc50d76c834479d11fcc7de46f3da4d95121
Author: Fabiano Rosas 
Date:   Thu Feb 4 17:05:17 2021 -0300

KVM: PPC: Book3S HV: Save and restore FSCR in the P9 path

The Facility Status and Control Register is a privileged SPR that
defines the availability of some features in problem state. Since it
can be written by the guest, we must restore it to the previous host
value after guest exit.

This restoration is currently done by taking the value from
current->thread.fscr, which in the P9 path is not enough anymore
because the guest could context switch the QEMU thread, causing the
guest-current value to be saved into the thread struct.

The above situation manifested when running a QEMU linked against a
libc with System Call Vectored support, which causes scv
instructions to be run by QEMU early during the guest boot (during
SLOF), at which point the FSCR is 0 due to guest entry. After a few
scv calls (1 to a couple hundred), the context switching happens and
the QEMU thread runs with the guest value, resulting in a Facility
Unavailable interrupt.

This patch saves and restores the host value of FSCR in the inner
guest entry loop in a way independent of current->thread.fscr. The old
way of doing it is still kept in place because it works for the old
entry path.

Signed-off-by: Fabiano Rosas 
Signed-off-by: Paul Mackerras 

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

Title:
  qemu-system-ppc64le fails with kvm acceleration

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

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

[Bug 1886811] Re: systemd complains Failed to enqueue loopback interface start request: Operation not supported

2020-07-15 Thread Laurent Vivier
Fixed here:

65b261a63a48 linux-user: add netlink RTM_SETLINK command
https://git.qemu.org/?p=qemu.git;a=commit;h=65b261a63a48fbb3b11193361d4ea0c38a3c3dfd

** Changed in: qemu
   Status: In Progress => Fix Committed

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

Title:
  systemd complains Failed to enqueue loopback interface start request:
  Operation not supported

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

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

[Bug 1749393] Re: sbrk() not working under qemu-user with a PIE-compiled binary?

2020-04-30 Thread Laurent Vivier
** Changed in: qemu
   Status: Fix Committed => 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/1749393

Title:
  sbrk() not working under qemu-user with a PIE-compiled binary?

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

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

[Bug 1749393] Re: sbrk() not working under qemu-user with a PIE-compiled binary?

2020-03-10 Thread Laurent Vivier
Fixed here:
https://git.qemu.org/?p=qemu.git;a=commitdiff;h=6fd5944980f4

** Changed in: qemu
   Status: New => Fix Committed

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

Title:
  sbrk() not working under qemu-user with a PIE-compiled binary?

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

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

Re: [Bug 1783362] Re: qemu-user: mmap should return failure (MAP_FAILED, -1) instead of success (NULL, 0) when len==0

2018-08-01 Thread Laurent Vivier
Le 01/08/2018 à 00:57, umarcor a écrit :
> Alex, Laurent, I'm new to this management/development system. So, first
> off, thanks for working on this bug.
> 
> I have a few (probably silly) questions:
> 
> 1. What is 'the r-b' that Alex used in #14?

"Reviewed-By:", it's a tag I've sent in answer to his e-email to say
I've reviewed his patch, and it is good for me.

> 2. When should I change the status of the bug? I can already see it in
GitHub's mirror and in https://git.qemu.org/?p=qemu.git;a=summary. But
not in the Changelog: https://wiki.qemu.org/ChangeLog/3.0#User-
mode_emulation. I am not sure if it is in 'Fix Committed' or 'Fix
Released' state.

I didn't update the Changelog, but the fix is now committed. It will be
released soon (07/08 or 14/08). But you should test master now to check
the commit really fixes your bug.

> 3. Where did you push these commits to before they where merge in
https://git.qemu.org/?p=qemu.git;a=summary? I cannot find your personal
forks/branches. Are commits automatically created from the mailing list?

No, sub-system maintainers collect patches from the mailing list. They
create and send a pull request (in their own git repo) to the QEMU
maintainers, and he merges the patches into the master.

my git repo for linux-user pull request is
git://github.com/vivier/qemu.git, and generally I prepare my pull
request on linux-user-for-3.0 branch (the release number changes).

Thanks,
Laurent

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

Title:
  qemu-user: mmap should return failure (MAP_FAILED, -1) instead of
  success (NULL, 0) when len==0

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

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

[Bug 1783362] [PULL 2/3] tests: add check_invalid_maps to test-mmap

2018-07-31 Thread Laurent Vivier
From: Alex Bennée 

This adds a test to make sure we fail properly for a 0 length mmap.
There are most likely other failure conditions we should also check.

Signed-off-by: Alex Bennée 
Reviewed-by: Richard Henderson 
Cc: umarcor <1783...@bugs.launchpad.net>
Message-Id: <20180730134321.19898-3-alex.ben...@linaro.org>
Signed-off-by: Laurent Vivier 
---
 tests/tcg/multiarch/test-mmap.c | 22 +-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/tests/tcg/multiarch/test-mmap.c b/tests/tcg/multiarch/test-mmap.c
index 5c0afe6e49..11d0e777b1 100644
--- a/tests/tcg/multiarch/test-mmap.c
+++ b/tests/tcg/multiarch/test-mmap.c
@@ -27,7 +27,7 @@
 #include 
 #include 
 #include 
-
+#include 
 #include 
 
 #define D(x)
@@ -435,6 +435,25 @@ void checked_write(int fd, const void *buf, size_t count)
 fail_unless(rc == count);
 }
 
+void check_invalid_mmaps(void)
+{
+unsigned char *addr;
+
+/* Attempt to map a zero length page.  */
+addr = mmap(NULL, 0, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+fprintf(stdout, "%s addr=%p", __func__, (void *)addr);
+fail_unless(addr == MAP_FAILED);
+fail_unless(errno == EINVAL);
+
+/* Attempt to map a over length page.  */
+addr = mmap(NULL, -4, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+fprintf(stdout, "%s addr=%p", __func__, (void *)addr);
+fail_unless(addr == MAP_FAILED);
+fail_unless(errno == ENOMEM);
+
+fprintf(stdout, " passed\n");
+}
+
 int main(int argc, char **argv)
 {
char tempname[] = "/tmp/.cmmapXX";
@@ -476,6 +495,7 @@ int main(int argc, char **argv)
check_file_fixed_mmaps();
check_file_fixed_eof_mmaps();
check_file_unfixed_eof_mmaps();
+   check_invalid_mmaps();
 
/* Fails at the moment.  */
/* check_aligned_anonymous_fixed_mmaps_collide_with_host(); */
-- 
2.17.1

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

Title:
  qemu-user: mmap should return failure (MAP_FAILED, -1) instead of
  success (NULL, 0) when len==0

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

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

[Bug 1783362] [PULL 1/3] linux-user/mmap.c: handle invalid len maps correctly

2018-07-31 Thread Laurent Vivier
From: Alex Bennée 

I've slightly re-organised the check to more closely match the
sequence that the kernel uses in do_mmap(). We check for both the zero
case (EINVAL) and the overflow length case (ENOMEM).

Signed-off-by: Alex Bennée 
Cc: umarcor <1783...@bugs.launchpad.net>
Reviewed-by: Laurent Vivier 
Message-Id: <20180730134321.19898-2-alex.ben...@linaro.org>
Signed-off-by: Laurent Vivier 
---
 linux-user/mmap.c | 15 ---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index d0c50e4888..41e0983ce8 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -391,14 +391,23 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, int 
prot,
 }
 #endif
 
-if (offset & ~TARGET_PAGE_MASK) {
+if (!len) {
 errno = EINVAL;
 goto fail;
 }
 
+/* Also check for overflows... */
 len = TARGET_PAGE_ALIGN(len);
-if (len == 0)
-goto the_end;
+if (!len) {
+errno = ENOMEM;
+goto fail;
+}
+
+if (offset & ~TARGET_PAGE_MASK) {
+errno = EINVAL;
+goto fail;
+}
+
 real_start = start & qemu_host_page_mask;
 host_offset = offset & qemu_host_page_mask;
 
-- 
2.17.1

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

Title:
  qemu-user: mmap should return failure (MAP_FAILED, -1) instead of
  success (NULL, 0) when len==0

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

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

[Bug 1783362] Re: [Qemu-devel] [PATCH v2 for 3.0 1/2] linux-user/mmap.c: handle invalid len maps correctly

2018-07-30 Thread Laurent Vivier
Le 30/07/2018 à 16:21, Alex Bennée a écrit :
> 
> Laurent Vivier  writes:
> 
>> Le 30/07/2018 à 15:43, Alex Bennée a écrit:
>>> I've slightly re-organised the check to more closely match the
>>> sequence that the kernel uses in do_mmap(). We check for both the zero
>>> case (EINVAL) and the overflow length case (ENOMEM).
>>>
>>> Signed-off-by: Alex Bennée 
>>> Cc: umarcor <1783...@bugs.launchpad.net>
>>>
>>> ---
>>> v2
>>>   - add comment on overflow
>>> ---
>>>  linux-user/mmap.c | 15 ---
>>>  1 file changed, 12 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/linux-user/mmap.c b/linux-user/mmap.c
>>> index d0c50e4888..41e0983ce8 100644
>>> --- a/linux-user/mmap.c
>>> +++ b/linux-user/mmap.c
>>> @@ -391,14 +391,23 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, 
>>> int prot,
>>>  }
>>>  #endif
>>>
>>> -if (offset & ~TARGET_PAGE_MASK) {
>>> +if (!len) {
>>>  errno = EINVAL;
>>>  goto fail;
>>>  }
>>>
>>> +/* Also check for overflows... */
>>>  len = TARGET_PAGE_ALIGN(len);
>>> -if (len == 0)
>>> -goto the_end;
>>> +if (!len) {
>>> +errno = ENOMEM;
>>> +goto fail;
>>> +}
>>> +
>>> +if (offset & ~TARGET_PAGE_MASK) {
>>> +errno = EINVAL;
>>> +goto fail;
>>> +}
>>> +
>>>  real_start = start & qemu_host_page_mask;
>>>  host_offset = offset & qemu_host_page_mask;
>>>
>>>
>>
>> Reviewed-by: Laurent Vivier 
> 
> Are you going to take this via your queue or do you want me to re-post
> with the r-b?

I can take this via my queue.

Thanks,
Laurent

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

Title:
  qemu-user: mmap should return failure (MAP_FAILED, -1) instead of
  success (NULL, 0) when len==0

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

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

[Bug 1783362] Re: [Qemu-devel] [PATCH v2 for 3.0 1/2] linux-user/mmap.c: handle invalid len maps correctly

2018-07-30 Thread Laurent Vivier
Le 30/07/2018 à 15:43, Alex Bennée a écrit :
> I've slightly re-organised the check to more closely match the
> sequence that the kernel uses in do_mmap(). We check for both the zero
> case (EINVAL) and the overflow length case (ENOMEM).
> 
> Signed-off-by: Alex Bennée 
> Cc: umarcor <1783...@bugs.launchpad.net>
> 
> ---
> v2
>   - add comment on overflow
> ---
>  linux-user/mmap.c | 15 ---
>  1 file changed, 12 insertions(+), 3 deletions(-)
> 
> diff --git a/linux-user/mmap.c b/linux-user/mmap.c
> index d0c50e4888..41e0983ce8 100644
> --- a/linux-user/mmap.c
> +++ b/linux-user/mmap.c
> @@ -391,14 +391,23 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, 
> int prot,
>  }
>  #endif
>  
> -if (offset & ~TARGET_PAGE_MASK) {
> +if (!len) {
>  errno = EINVAL;
>  goto fail;
>  }
>  
> +/* Also check for overflows... */
>  len = TARGET_PAGE_ALIGN(len);
> -if (len == 0)
> -goto the_end;
> +if (!len) {
> +errno = ENOMEM;
> +goto fail;
> +}
> +
> +if (offset & ~TARGET_PAGE_MASK) {
> +errno = EINVAL;
> +goto fail;
> +}
> +
>  real_start = start & qemu_host_page_mask;
>  host_offset = offset & qemu_host_page_mask;
>  
> 

Reviewed-by: Laurent Vivier 

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

Title:
  qemu-user: mmap should return failure (MAP_FAILED, -1) instead of
  success (NULL, 0) when len==0

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

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

[Bug 1783362] Re: [Qemu-devel] [PATCH v1 for 3.0 1/2] linux-user/mmap.c: handle len = 0 maps correctly

2018-07-26 Thread Laurent Vivier
Le 26/07/2018 à 19:58, Alex Bennée a écrit :
> 
> Laurent Vivier  writes:
> 
>> Le 26/07/2018 à 15:29, Alex Bennée a écrit:
>>> I've slightly re-organised the check to more closely match the
>>> sequence that the kernel uses in do_mmap().
>>>
>>> Signed-off-by: Alex Bennée 
>>> Cc: umarcor <1783...@bugs.launchpad.net>
>>> ---
>>>  linux-user/mmap.c | 14 +++---
>>>  1 file changed, 11 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/linux-user/mmap.c b/linux-user/mmap.c
>>> index d0c50e4888..3ef69fa2d0 100644
>>> --- a/linux-user/mmap.c
>>> +++ b/linux-user/mmap.c
>>> @@ -391,14 +391,22 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, 
>>> int prot,
>>>  }
>>>  #endif
>>>
>>> -if (offset & ~TARGET_PAGE_MASK) {
>>> +if (!len) {
>>>  errno = EINVAL;
>>>  goto fail;
>>>  }
>>>
>>>  len = TARGET_PAGE_ALIGN(len);
>>> -if (len == 0)
>>> -goto the_end;
>>> +if (!len) {
>>> +errno = EINVAL;
>>> +goto fail;
>>> +}
>>
>> Why do you check twice len?
>> TARGET_PAGE_ALIGN() rounds up the value, so if it was not 0, it cannot
>> be now.
> 
> I was trying to follow the kernel style but I realise TARGET_PAGE_ALIGN
> might be a different test compared to the kernel's PAGE_ALIGN(len) for
> overflows:
...
>   /* Careful about overflows.. */
>   len = PAGE_ALIGN(len);
>   if (!len)
>   return -ENOMEM;
> 


OK, so keep it but you should use ENOMEM, not EINVAL (and add a comment :) )

Thanks,
Laurent

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

Title:
  qemu-user: mmap should return failure (MAP_FAILED, -1) instead of
  success (NULL, 0) when len==0

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

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

[Bug 1783362] Re: [Qemu-devel] [PATCH v1 for 3.0 1/2] linux-user/mmap.c: handle len = 0 maps correctly

2018-07-26 Thread Laurent Vivier
Le 26/07/2018 à 15:29, Alex Bennée a écrit :
> I've slightly re-organised the check to more closely match the
> sequence that the kernel uses in do_mmap().
> 
> Signed-off-by: Alex Bennée 
> Cc: umarcor <1783...@bugs.launchpad.net>
> ---
>  linux-user/mmap.c | 14 +++---
>  1 file changed, 11 insertions(+), 3 deletions(-)
> 
> diff --git a/linux-user/mmap.c b/linux-user/mmap.c
> index d0c50e4888..3ef69fa2d0 100644
> --- a/linux-user/mmap.c
> +++ b/linux-user/mmap.c
> @@ -391,14 +391,22 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, 
> int prot,
>  }
>  #endif
>  
> -if (offset & ~TARGET_PAGE_MASK) {
> +if (!len) {
>  errno = EINVAL;
>  goto fail;
>  }
>  
>  len = TARGET_PAGE_ALIGN(len);
> -if (len == 0)
> -goto the_end;
> +if (!len) {
> +errno = EINVAL;
> +goto fail;
> +}

Why do you check twice len?
TARGET_PAGE_ALIGN() rounds up the value, so if it was not 0, it cannot
be now.

Thanks,
Laurent

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

Title:
  qemu-user: mmap should return failure (MAP_FAILED, -1) instead of
  success (NULL, 0) when len==0

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

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

[Bug 1254786] Re: qemu-m68k-static: illegal instruction ebc0 during debootstrap second stage

2018-02-14 Thread Laurent Vivier
0xebc0 is "bfexts" with register and is implemented since:

ac815f46a3 target-m68k: Implement bitfield ops for registers

Available since qemu v2.9.0

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

Title:
  qemu-m68k-static: illegal instruction ebc0 during debootstrap second
  stage

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

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

[Bug 1208091] Re: scanimage assert failure: *** Error in `scanimage': double free or corruption (top): 0x0000000002598130 ***

2017-02-09 Thread Laurent Vivier
No, and I don't see anymore this problem with my computers using Fedora
25 or Ubuntu 16.04, so I think it should be already fixed upstream.

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

Title:
  scanimage assert failure: *** Error in `scanimage': double free or
  corruption (top): 0x02598130 ***

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

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


[Bug 1254824] Re: qemu-sh4-static: segmentation fault during debootstrap second stage on amd64 but not i386

2015-11-21 Thread Laurent Vivier
The attached patch fixes the problem for me on an x86_64 host. It needs
to be tested on a i386 host.

** Patch added: "Fix stack frame retcode address"
   
https://bugs.launchpad.net/ubuntu/+source/qemu-linaro/+bug/1254824/+attachment/4523213/+files/fix_setup_frame.patch

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

Title:
  qemu-sh4-static: segmentation fault during debootstrap second stage on
  amd64 but not i386

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

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


[Bug 1208091] Re: scanimage assert failure: *** Error in `scanimage': double free or corruption (top): 0x0000000002598130 ***

2015-05-16 Thread Laurent Vivier
I have the problem.

This is a race condition between the sane_net_init() loop adding devices
from net.conf into the chained list and the AVAHI thread doing the same
thing. As there is no lock to protect the head pointer, we can have list
corruption. Delaying avahi_init() at the end of sane_net_init() corrects
the problem.

** Patch added: sane_net.patch
   
https://bugs.launchpad.net/ubuntu/+source/sane-backends/+bug/1208091/+attachment/4398656/+files/sane_net.patch

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

Title:
  scanimage assert failure: *** Error in `scanimage': double free or
  corruption (top): 0x02598130 ***

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

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


[Bug 1208091] Re: scanimage assert failure: *** Error in `scanimage': double free or corruption (top): 0x0000000002598130 ***

2015-05-16 Thread Laurent Vivier
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 15.04
Release:15.04
Codename:   vivid

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

Title:
  scanimage assert failure: *** Error in `scanimage': double free or
  corruption (top): 0x02598130 ***

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

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


[Bug 1101534] CRDA.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3776875/+files/CRDA.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] BootDmesg.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776874/+files/BootDmesg.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] IwConfig.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776877/+files/IwConfig.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: 14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-08-18 Thread Laurent Vivier
apport information

** Tags added: saucy

** Description changed:

  Since ubuntu 12.10, my wifi is correctly detected and network-manager
  try to connect to it, but it seems unable to connect : it asks again and
  again the wifi password. If I try to connect to an open wifi network, it
  just fails after some time.
  
  ---
  ApportVersion: 2.6.1-0ubuntu10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  laurent1900 F pulseaudio
   /dev/snd/controlC0:  laurent1900 F pulseaudio
  CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type
  DistroRelease: Ubuntu 12.10
  HibernationDevice: RESUME=UUID=ccb8baed-8fa2-4b8b-b392-fcc77c92f1f1
  InstallationDate: Installed on 2012-07-05 (214 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 305U1A
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.5.0-23-generic 
root=/dev/mapper/hostname-root ro quiet splash loop.max_part=15 vt.handoff=7
  ProcVersionSignature: Ubuntu 3.5.0-23.35-generic 3.5.7.2
  RelatedPackageVersions:
   linux-restricted-modules-3.5.0-23-generic N/A
   linux-backports-modules-3.5.0-23-generic  N/A
   linux-firmware1.95
  Tags:  quantal running-unity
  Uname: Linux 3.5.0-23-generic x86_64
  UpgradeStatus: Upgraded to quantal on 2012-10-31 (96 days ago)
  UserGroups: adm cdrom davfs2 dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/29/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 03PS.M505.20110929.LEO
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: 305U1A/305U1A
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: 03PS
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr03PS.M505.20110929.LEO:bd09/29/2011:svnSAMSUNGELECTRONICSCO.,LTD.:pn305U1A:pvr03PS:rvnSAMSUNGELECTRONICSCO.,LTD.:rn305U1A/305U1A:rvr03PS:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvrN/A:
  dmi.product.name: 305U1A
  dmi.product.version: 03PS
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
+ --- 
+ ApportVersion: 2.12-0ubuntu3
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  ubuntu 3145 F pulseaudio
+   ubuntu 5008 F pulseaudio
+  /dev/snd/controlC0:  ubuntu 3145 F pulseaudio
+   ubuntu 5008 F pulseaudio
+ CasperVersion: 1.336
+ DistroRelease: Ubuntu 13.10
+ LiveMediaBuild: Ubuntu 13.10 Saucy Salamander - Alpha amd64 (20130818)
+ MachineType: SAMSUNG ELECTRONICS CO., LTD. 305U1A
+ MarkForUpload: True
+ Package: linux (not installed)
+ ProcFB: 0 radeondrmfb
+ ProcKernelCmdLine: noprompt cdrom-detect/try-usb=true 
file=/cdrom/preseed/username.seed boot=casper initrd=/casper/initrd.lz quiet 
splash -- maybe-ubiquity
+ ProcVersionSignature: Ubuntu 3.11.0-2.5-generic 3.11.0-rc5
+ RelatedPackageVersions:
+  linux-restricted-modules-3.11.0-2-generic N/A
+  linux-backports-modules-3.11.0-2-generic  N/A
+  linux-firmware1.113
+ Tags:  saucy
+ Uname: Linux 3.11.0-2-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ dmi.bios.date: 10/24/2012
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 06PS.M507.20121024.LEO
+ dmi.board.asset.tag: To be filled by O.E.M.
+ dmi.board.name: 305U1A/305U1A
+ dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
+ dmi.board.version: 06PS
+ dmi.chassis.asset.tag: No Asset Tag
+ dmi.chassis.type: 9
+ dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
+ dmi.chassis.version: N/A
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr06PS.M507.20121024.LEO:bd10/24/2012:svnSAMSUNGELECTRONICSCO.,LTD.:pn305U1A:pvr06PS:rvnSAMSUNGELECTRONICSCO.,LTD.:rn305U1A/305U1A:rvr06PS:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvrN/A:
+ dmi.product.name: 305U1A
+ dmi.product.version: 06PS
+ dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

** Attachment added: AlsaInfo.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776873/+files/AlsaInfo.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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

[Bug 1101534] CurrentDmesg.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776876/+files/CurrentDmesg.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] Lspci.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3776878/+files/Lspci.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] ProcCpuinfo.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776880/+files/ProcCpuinfo.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] ProcModules.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776883/+files/ProcModules.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] UdevDb.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3776886/+files/UdevDb.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] RfKill.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3776885/+files/RfKill.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] WifiSyslog.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776888/+files/WifiSyslog.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] ProcEnviron.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776881/+files/ProcEnviron.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] UdevLog.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776887/+files/UdevLog.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: 14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-08-18 Thread Laurent Vivier
Issue remains with daily live iso of today, kernel 3.11.0-2.

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] ProcInterrupts.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776882/+files/ProcInterrupts.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] PulseList.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: PulseList.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3776884/+files/PulseList.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] Lsusb.txt

2013-08-18 Thread Laurent Vivier
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3776879/+files/Lsusb.txt

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: 14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-08-07 Thread Laurent Vivier
Updated from 03PS to 06PS : no change.

06PS.M507.20121024.LEO
10/24/2012

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

Title:
  14e4:4727 [Samsung NP305U1A-A01FR] Cannot connect to WiFi network --
  Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-08-06 Thread Laurent Vivier
MODEL CODE: Samsung NP305U1A-A01FR

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-08-06 Thread Laurent Vivier
The issue is always there with ubuntu 13.04 (linux 3.8.0-19-generic)

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-02-05 Thread Laurent Vivier
apport information

** Description changed:

  Since ubuntu 12.10, my wifi is correctly detected and network-manager
  try to connect to it, but it seems unable to connect : it asks again and
  again the wifi password. If I try to connect to an open wifi network, it
  just fails after some time.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: network-manager-gnome 0.9.6.2-0ubuntu6
  ProcVersionSignature: Ubuntu 3.5.0-22.34-generic 3.5.7.2
  Uname: Linux 3.5.0-22-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.6.1-0ubuntu9
  Architecture: amd64
  CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type: 'iw'
  Date: Fri Jan 18 23:35:33 2013
  InstallationDate: Installed on 2012-07-05 (196 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  IpRoute:
   default via 192.168.100.254 dev eth0  proto static 
   10.0.3.0/24 dev lxcbr0  proto kernel  scope link  src 10.0.3.1 
   169.254.0.0/16 dev eth0  scope link  metric 1000 
   192.168.100.0/24 dev eth0  proto kernel  scope link  src 192.168.100.4  
metric 1
  MarkForUpload: True
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=false
   WWANEnabled=true
   WimaxEnabled=true
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: network-manager-applet
  UpgradeStatus: Upgraded to quantal on 2012-10-31 (79 days ago)
  nmcli-con:
   NAME  UUID   TYPE
  TIMESTAMPTIMESTAMP-REAL AUTOCONNECT   READONLY   
DBUS-PATH 
   Bull  028f785a-2c07-4a97-8103-94b75c42a91a   vpn 
  1344399678   mer. 08 août 2012 06:21:18 CESTyes   no 
/org/freedesktop/NetworkManager/Settings/2
   eth0  6c727f94-1091-4bf8-bd39-61152ca9788b   
802-3-ethernet1358548545   ven. 18 janv. 2013 23:35:45 CETyes   
no /org/freedesktop/NetworkManager/Settings/1
   Laurent_Vivierb774eb6c-736b-46d1-a7a7-83e39181a79b   
802-11-wireless   0never  yes   
no /org/freedesktop/NetworkManager/Settings/0
   Vodafone Internet Facile  fe010041-967a-4240-b9c2-c9af9365cd25   gsm 
  1356510304   mer. 26 déc. 2012 09:25:04 CET nono 
/org/freedesktop/NetworkManager/Settings/3
  nmcli-dev:
   DEVICE TYPE  STATE DBUS-PATH 
 
   eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1  
   eth1   802-11-wireless   unavailable   
/org/freedesktop/NetworkManager/Devices/0
  nmcli-nm:
   RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
   running 0.9.6.0connected   enabled   enabled 
disabled   enabled disabled
  --- 
  ApportVersion: 2.6.1-0ubuntu10
  Architecture: amd64
  CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type
  DistroRelease: Ubuntu 12.10
  InstallationDate: Installed on 2012-07-05 (209 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  IpRoute:
   default via 192.168.100.254 dev eth0  proto static 
   10.0.3.0/24 dev lxcbr0  proto kernel  scope link  src 10.0.3.1 
   169.254.0.0/16 dev eth0  scope link  metric 1000 
   192.168.100.0/24 dev eth0  proto kernel  scope link  src 192.168.100.4  
metric 1
  MarkForUpload: True
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  NonfreeKernelModules: wl
  Package: network-manager 0.9.6.0-0ubuntu7
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 3.5.0-22.34-generic 3.5.7.2
  Tags:  quantal running-unity
  Uname: Linux 3.5.0-22-generic x86_64
  UpgradeStatus: Upgraded to quantal on 2012-10-31 (92 days ago)
  UserGroups: adm cdrom davfs2 dip lpadmin plugdev sambashare sudo
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2013-01-31T19:45:23.150893
  nmcli-dev:
   DEVICE TYPE  STATE DBUS-PATH 
 
   eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1  
   eth1   802-11-wireless   connecting (configuring) 
/org/freedesktop/NetworkManager/Devices/0
  nmcli-nm:
   RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
   running 0.9.6.0connected   enabled   enabled 
enabledenabled disabled
+ --- 
+ ApportVersion: 2.6.1-0ubuntu10
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  laurent1900 F 

[Bug 1101534] BootDmesg.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515947/+files/BootDmesg.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] CurrentDmesg.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515948/+files/CurrentDmesg.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] IwConfig.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515949/+files/IwConfig.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] Lspci.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3515950/+files/Lspci.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] Lsusb.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3515951/+files/Lsusb.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] ProcCpuinfo.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515952/+files/ProcCpuinfo.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] ProcInterrupts.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515953/+files/ProcInterrupts.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] ProcModules.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515954/+files/ProcModules.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] PulseList.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: PulseList.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515955/+files/PulseList.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] RfKill.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3515956/+files/RfKill.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] UdevDb.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3515957/+files/UdevDb.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] UdevLog.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515958/+files/UdevLog.txt

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] WifiSyslog.txt

2013-02-05 Thread Laurent Vivier
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3515959/+files/WifiSyslog.txt

** Changed in: linux (Ubuntu)
   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/1101534

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-02-05 Thread Laurent Vivier
** Tags added: kernel-bug-exists-upstream

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: Cannot connect to WiFi network -- Broadcom BCM4313 wl

2013-02-05 Thread Laurent Vivier
If needed, I can reinstall this computer with a fresh install (my /home
is stored in a separate logical volume) or install another version of
ubuntu in another logical volume.

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

Title:
  Cannot connect to WiFi network -- Broadcom BCM4313 wl

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

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


[Bug 1101534] Re: Cannot connect to WiFi network

2013-01-31 Thread Laurent Vivier
apport information

** Tags added: apport-collected

** Description changed:

  Since ubuntu 12.10, my wifi is correctly detected and network-manager
  try to connect to it, but it seems unable to connect : it asks again and
  again the wifi password. If I try to connect to an open wifi network, it
  just fails after some time.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: network-manager-gnome 0.9.6.2-0ubuntu6
  ProcVersionSignature: Ubuntu 3.5.0-22.34-generic 3.5.7.2
  Uname: Linux 3.5.0-22-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.6.1-0ubuntu9
  Architecture: amd64
  CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type: 'iw'
  Date: Fri Jan 18 23:35:33 2013
  InstallationDate: Installed on 2012-07-05 (196 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  IpRoute:
   default via 192.168.100.254 dev eth0  proto static 
   10.0.3.0/24 dev lxcbr0  proto kernel  scope link  src 10.0.3.1 
   169.254.0.0/16 dev eth0  scope link  metric 1000 
   192.168.100.0/24 dev eth0  proto kernel  scope link  src 192.168.100.4  
metric 1
  MarkForUpload: True
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=false
   WWANEnabled=true
   WimaxEnabled=true
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: network-manager-applet
  UpgradeStatus: Upgraded to quantal on 2012-10-31 (79 days ago)
  nmcli-con:
   NAME  UUID   TYPE
  TIMESTAMPTIMESTAMP-REAL AUTOCONNECT   READONLY   
DBUS-PATH 
   Bull  028f785a-2c07-4a97-8103-94b75c42a91a   vpn 
  1344399678   mer. 08 août 2012 06:21:18 CESTyes   no 
/org/freedesktop/NetworkManager/Settings/2
   eth0  6c727f94-1091-4bf8-bd39-61152ca9788b   
802-3-ethernet1358548545   ven. 18 janv. 2013 23:35:45 CETyes   
no /org/freedesktop/NetworkManager/Settings/1
   Laurent_Vivierb774eb6c-736b-46d1-a7a7-83e39181a79b   
802-11-wireless   0never  yes   
no /org/freedesktop/NetworkManager/Settings/0
   Vodafone Internet Facile  fe010041-967a-4240-b9c2-c9af9365cd25   gsm 
  1356510304   mer. 26 déc. 2012 09:25:04 CET nono 
/org/freedesktop/NetworkManager/Settings/3
  nmcli-dev:
   DEVICE TYPE  STATE DBUS-PATH 
 
   eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1  
   eth1   802-11-wireless   unavailable   
/org/freedesktop/NetworkManager/Devices/0
  nmcli-nm:
   RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
   running 0.9.6.0connected   enabled   enabled 
disabled   enabled disabled
+ --- 
+ ApportVersion: 2.6.1-0ubuntu10
+ Architecture: amd64
+ CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type
+ DistroRelease: Ubuntu 12.10
+ InstallationDate: Installed on 2012-07-05 (209 days ago)
+ InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
+ IpRoute:
+  default via 192.168.100.254 dev eth0  proto static 
+  10.0.3.0/24 dev lxcbr0  proto kernel  scope link  src 10.0.3.1 
+  169.254.0.0/16 dev eth0  scope link  metric 1000 
+  192.168.100.0/24 dev eth0  proto kernel  scope link  src 192.168.100.4  
metric 1
+ MarkForUpload: True
+ NetworkManager.state:
+  [main]
+  NetworkingEnabled=true
+  WirelessEnabled=true
+  WWANEnabled=true
+  WimaxEnabled=true
+ NonfreeKernelModules: wl
+ Package: network-manager 0.9.6.0-0ubuntu7
+ PackageArchitecture: amd64
+ ProcEnviron:
+  TERM=xterm
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=set
+  LANG=fr_FR.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 3.5.0-22.34-generic 3.5.7.2
+ Tags:  quantal running-unity
+ Uname: Linux 3.5.0-22-generic x86_64
+ UpgradeStatus: Upgraded to quantal on 2012-10-31 (92 days ago)
+ UserGroups: adm cdrom davfs2 dip lpadmin plugdev sambashare sudo
+ mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2013-01-31T19:45:23.150893
+ nmcli-dev:
+  DEVICE TYPE  STATE DBUS-PATH 
 
+  eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1  
+  eth1   802-11-wireless   connecting (configuring) 
/org/freedesktop/NetworkManager/Devices/0
+ nmcli-nm:
+  RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
+  running 0.9.6.0connected   enabled   enabled 
enabledenabled disabled

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509397/+files/Dependencies.txt

-- 
You 

[Bug 1101534] IfupdownConfig.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: IfupdownConfig.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509398/+files/IfupdownConfig.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] IpAddr.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: IpAddr.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3509399/+files/IpAddr.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] IwConfig.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509400/+files/IwConfig.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] NetDevice.eth0.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: NetDevice.eth0.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509401/+files/NetDevice.eth0.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] NetDevice.eth1.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: NetDevice.eth1.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509402/+files/NetDevice.eth1.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] NetDevice.lo.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: NetDevice.lo.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509403/+files/NetDevice.lo.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] NetDevice.lxcbr0.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: NetDevice.lxcbr0.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509404/+files/NetDevice.lxcbr0.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] NetworkManager.conf.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: NetworkManager.conf.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509405/+files/NetworkManager.conf.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] RfKill.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/1101534/+attachment/3509407/+files/RfKill.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] PciNetwork.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: PciNetwork.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509406/+files/PciNetwork.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] WifiSyslog.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509408/+files/WifiSyslog.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] modified.conffile..etc.NetworkManager.NetworkManager.conf.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: 
modified.conffile..etc.NetworkManager.NetworkManager.conf.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509409/+files/modified.conffile..etc.NetworkManager.NetworkManager.conf.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] nmcli-con.txt

2013-01-31 Thread Laurent Vivier
apport information

** Attachment added: nmcli-con.txt
   
https://bugs.launchpad.net/bugs/1101534/+attachment/3509410/+files/nmcli-con.txt

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

Title:
  Cannot connect to WiFi network

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

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


[Bug 1101534] [NEW] Cannot connect to WiFi network

2013-01-18 Thread Laurent Vivier
Public bug reported:

Since ubuntu 12.10, my wifi is correctly detected and network-manager
try to connect to it, but it seems unable to connect : it asks again and
again the wifi password. If I try to connect to an open wifi network, it
just fails after some time.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: network-manager-gnome 0.9.6.2-0ubuntu6
ProcVersionSignature: Ubuntu 3.5.0-22.34-generic 3.5.7.2
Uname: Linux 3.5.0-22-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.6.1-0ubuntu9
Architecture: amd64
CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type: 'iw'
Date: Fri Jan 18 23:35:33 2013
InstallationDate: Installed on 2012-07-05 (196 days ago)
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
IpRoute:
 default via 192.168.100.254 dev eth0  proto static 
 10.0.3.0/24 dev lxcbr0  proto kernel  scope link  src 10.0.3.1 
 169.254.0.0/16 dev eth0  scope link  metric 1000 
 192.168.100.0/24 dev eth0  proto kernel  scope link  src 192.168.100.4  metric 
1
MarkForUpload: True
NetworkManager.state:
 [main]
 NetworkingEnabled=true
 WirelessEnabled=false
 WWANEnabled=true
 WimaxEnabled=true
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: network-manager-applet
UpgradeStatus: Upgraded to quantal on 2012-10-31 (79 days ago)
nmcli-con:
 NAME  UUID   TYPE  
TIMESTAMPTIMESTAMP-REAL AUTOCONNECT   READONLY   
DBUS-PATH 
 Bull  028f785a-2c07-4a97-8103-94b75c42a91a   vpn   
1344399678   mer. 08 août 2012 06:21:18 CESTyes   no 
/org/freedesktop/NetworkManager/Settings/2
 eth0  6c727f94-1091-4bf8-bd39-61152ca9788b   
802-3-ethernet1358548545   ven. 18 janv. 2013 23:35:45 CETyes   
no /org/freedesktop/NetworkManager/Settings/1
 Laurent_Vivierb774eb6c-736b-46d1-a7a7-83e39181a79b   
802-11-wireless   0never  yes   
no /org/freedesktop/NetworkManager/Settings/0
 Vodafone Internet Facile  fe010041-967a-4240-b9c2-c9af9365cd25   gsm   
1356510304   mer. 26 déc. 2012 09:25:04 CET nono 
/org/freedesktop/NetworkManager/Settings/3
nmcli-dev:
 DEVICE TYPE  STATE DBUS-PATH   
   
 eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1  
 eth1   802-11-wireless   unavailable   
/org/freedesktop/NetworkManager/Devices/0
nmcli-nm:
 RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   WIFI  
 WWAN-HARDWARE   WWAN  
 running 0.9.6.0connected   enabled   enabled 
disabled   enabled disabled

** Affects: network-manager-applet (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug quantal running-unity

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

Title:
  Cannot connect to WiFi network

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1101534/+subscriptions

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

[Bug 1035431] Re: bluetooh-wizard failed to connect to a keyboard

2012-08-12 Thread Laurent Vivier
# bluez-simple-agent hci0 00:1F:20:4D:3A:FE
Creating device failed: org.bluez.Error.AuthenticationFailed: Authentication 
Failed


bluetoothd[903]: src/adapter.c:adapter_create_device() 00:1F:20:4D:3A:FE
bluetoothd[903]: src/device.c:device_create() Creating device 
/org/bluez/903/hci0/dev_00_1F_20_4D_3A_FE
bluetoothd[903]: src/device.c:btd_device_ref() 0x7f8093527de0: ref=1
bluetoothd[903]: src/device.c:device_set_temporary() temporary 1
bluetoothd[903]: src/device.c:bonding_request_new() Requesting bonding for 
00:1F:20:4D:3A:FE
bluetoothd[903]: src/device.c:bonding_request_new() Temporary agent registered 
for 00:1F:20:4D:3A:FE at :1.117:/test/agent
bluetoothd[903]: plugins/hciops.c:conn_complete() status 0x0b
bluetoothd[903]: src/event.c:btd_event_conn_failed() status 0x0b
bluetoothd[903]: src/device.c:device_cancel_bonding() Canceling bonding request 
for 00:1F:20:4D:3A:FE
bluetoothd[903]: plugins/hciops.c:hciops_cancel_bonding() hci0
bluetoothd[903]: src/agent.c:agent_release() Releasing agent :1.117, /test/agent
bluetoothd[903]: src/device.c:device_remove() Removing device 
/org/bluez/903/hci0/dev_00_1F_20_4D_3A_FE
bluetoothd[903]: src/device.c:btd_device_unref() 0x7f8093527de0: ref=0
bluetoothd[903]: src/device.c:device_free() 0x7f8093527de0
bluetoothd[903]: plugins/hciops.c:bonding_complete() status 0x0b
bluetoothd[903]: plugins/hciops.c:conn_complete() status 0x00
bluetoothd[903]: src/adapter.c:adapter_get_device() 00:1F:20:4D:3A:FE
bluetoothd[903]: src/adapter.c:adapter_create_device() 00:1F:20:4D:3A:FE
bluetoothd[903]: src/device.c:device_create() Creating device 
/org/bluez/903/hci0/dev_00_1F_20_4D_3A_FE
bluetoothd[903]: src/device.c:btd_device_ref() 0x7f8093527de0: ref=1
bluetoothd[903]: src/device.c:device_set_temporary() temporary 1
bluetoothd[903]: plugins/hciops.c:remote_features_information() hci0 status 0
bluetoothd[903]: plugins/hciops.c:link_key_request() hci0 dba 00:1F:20:4D:3A:FE
bluetoothd[903]: plugins/hciops.c:get_auth_info() hci0 dba 00:1F:20:4D:3A:FE
bluetoothd[903]: plugins/hciops.c:link_key_request() kernel auth requirements = 
0x04
bluetoothd[903]: plugins/hciops.c:link_key_request() Matching key not found
bluetoothd[903]: plugins/hciops.c:remote_name_information() hci0 status 0
bluetoothd[903]: plugins/hciops.c:link_key_request() hci0 dba 00:1F:20:4D:3A:FE
bluetoothd[903]: plugins/hciops.c:get_auth_info() hci0 dba 00:1F:20:4D:3A:FE
bluetoothd[903]: plugins/hciops.c:link_key_request() kernel auth requirements = 
0x04
bluetoothd[903]: plugins/hciops.c:link_key_request() Matching key not found
bluetoothd[903]: plugins/hciops.c:disconn_complete() handle 13 status 0x00
bluetoothd[903]: src/event.c:btd_event_disconn_complete() 
bluetoothd[903]: src/adapter.c:adapter_remove_connection() 
bluetoothd[903]: src/adapter.c:adapter_remove_connection() Removing temporary 
device /org/bluez/903/hci0/dev_00_1F_20_4D_3A_FE
bluetoothd[903]: src/device.c:device_remove() Removing device 
/org/bluez/903/hci0/dev_00_1F_20_4D_3A_FE
bluetoothd[903]: src/device.c:btd_device_unref() 0x7f8093527de0: ref=0
bluetoothd[903]: src/device.c:device_free() 0x7f8093527de0

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

Title:
  bluetooh-wizard failed to connect to a keyboard

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

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


[Bug 1035431] Re: bluetooh-wizard failed to connect to a keyboard

2012-08-12 Thread Laurent Vivier
Strangely, I was able to connect using :


# bluez-simple-agent hci0 00:1F:20:4D:3A:FE
DisplayPasskey (/org/bluez/903/hci0/dev_00_1F_20_4D_3A_FE, 153704)
Release
New device (/org/bluez/903/hci0/dev_00_1F_20_4D_3A_FE)


there is a line in /var/lib/bluetooth/linkkeys for my device now.

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

Title:
  bluetooh-wizard failed to connect to a keyboard

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

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


[Bug 1035431] [NEW] bluetooh-wizard failed to connect to a keyboard

2012-08-10 Thread Laurent Vivier
Public bug reported:

When I try to connect my bluetooth keyboard using bluetooth-wizard, it
ever fails:

** (bluetooth-wizard:11367): WARNING **: Setting up 'Logitech K760'
failed: Authentication Failed

This keyboard works fine with another computer under ubuntu 11.04.
This keyboard works fine with this computer and Windows 7 (arghhh).
This computer ubuntu 12.04 works fine with my bluetooth mouse.

I can attach manually this keyboard to this computer using :

sudo hidd --search

My computer is a Samsung 305U1A
My bluetooth interface is :

Bus 003 Device 002: ID 0a5c:219c Broadcom Corp.

** Affects: gnome-bluetooth (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/1035431

Title:
  bluetooh-wizard failed to connect to a keyboard

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

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


[Bug 1035431] Re: bluetooh-wizard failed to connect to a keyboard

2012-08-10 Thread Laurent Vivier
In /var/log/auth.log :

Aug 10 23:28:36 samsung dbus[898]: [system] Rejected send message, 3
matched rules; type=error, sender=:1.250 (uid=1000 pid=17327 comm
=bluetooth-wizard ) interface=(unset) member=(unset) error
name=org.freedesktop.DBus.Error.UnknownMethod requested_reply=0
destination=:1.3 (uid=0 pid=944 comm=/usr/sbin/bluetoothd )

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

Title:
  bluetooh-wizard failed to connect to a keyboard

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

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


[Bug 942184] Re: The Fn key of my Apple keyboard doesn't work

2012-03-07 Thread Laurent Vivier
Verification done:

$ uname -a
Linux Quad 2.6.38-13-generic #57-Ubuntu SMP Mon Mar 5 18:29:54 UTC 2012 x86_64 
x86_64 x86_64 GNU/Linux
$ dmesg
...
[   31.010704] input: Apple Wireless Keyboard as 
/devices/pci:00/:00:1a.7/usb1/1-3/1-3.6/1-3.6:1.0/bluetooth/hci0/hci0:43/input4
[   31.010808] apple 0005:05AC:0256.0001: input,hidraw0: BLUETOOTH HID v0.50 
Keyboard [Apple Wireless Keyboard] on 00:1B:DC:00:F5:A9
...
$ lsmod |grep hid

hidp   22572  2 
l2cap  53610  25 hidp,rfcomm,bnep
bluetooth  72320  10 hidp,rfcomm,sco,bnep,l2cap,btusb
hid_apple  13324  0 
hid91020  2 hidp,hid_apple


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

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

Title:
  The Fn key of my Apple keyboard doesn't work

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

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


[Bug 942184] Re: The Fn key of my Apple keyboard doesn't work

2012-02-28 Thread Laurent Vivier
Yes.

I just want to use my keyboard with Ubuntu 11.04 without having to
recompile the kernel each time the kernel is updated.

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

Title:
  The Fn key of my Apple keyboard doesn't work

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

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


[Bug 942184] Re: The Fn key of my Apple keyboard doesn't work

2012-02-27 Thread Laurent Vivier
** Attachment added: Patch to add new keyboard in hid-apple
   
https://bugs.launchpad.net/bugs/942184/+attachment/2788714/+files/alu2011.patch

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

Title:
  The Fn key of my Apple keyboard doesn't work

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

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


[Bug 942184] [NEW] The Fn key of my Apple keyboard doesn't work

2012-02-27 Thread Laurent Vivier
Public bug reported:

Ubuntu 2.6.38-13.55-generic 2.6.38.8

The Fn key of my brand new Apple wireless keyboard (A1314) is not
managed.

It seems because the hid-apple module is not loaded :

 input: Apple Wireless Keyboard as 
/devices/pci:00/:00:1a.7/usb1/1-3/1-3.6/1-3.6:1.0/bluetooth/hci0/hci0:42/input6
 generic-bluetooth 0005:05AC:0256.0003: input,hidraw0: BLUETOOTH HID v0.50 
Keyboard [Apple Wireless Keyboard] on 00:1B:DC:00:F5:A9

Checking in kernel source product id 0x0256 is not known

I've added it and recompiled hid.ko and hid-apple.ko and now it works
fine:

 input: Apple Wireless Keyboard as 
/devices/pci:00/:00:1a.7/usb1/1-3/1-3.6/1-3.6:1.0/bluetooth/hci0/hci0:42/input4
 apple 0005:05AC:0256.0001: input,hidraw0: BLUETOOTH HID v0.50 Keyboard [Apple 
Wireless Keyboard] on 00:1B:DC:00:F5:A9

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: linux-image-2.6.38-13-generic 2.6.38-13.55 [modified: 
lib/modules/2.6.38-13-generic/kernel/drivers/hid/hid-apple.ko 
lib/modules/2.6.38-13-generic/kernel/drivers/hid/hid.ko]
ProcVersionSignature: Ubuntu 2.6.38-13.55-generic 2.6.38.8
Uname: Linux 2.6.38-13-generic x86_64
NonfreeKernelModules: nvidia
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  laurent1919 F pulseaudio
 /dev/snd/controlC0:  laurent1919 F pulseaudio
CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfb4f8000 irq 48'
   Mixer name   : 'Realtek ALC889A'
   Components   : 'HDA:10ec0885,18491890,00100101'
   Controls  : 36
   Simple ctrls  : 21
Card1.Amixer.info:
 Card hw:1 'U0x46d0x825'/'USB Device 0x46d:0x825 at usb-:00:1a.7-4, high 
speed'
   Mixer name   : 'USB Mixer'
   Components   : 'USB046d:0825'
   Controls  : 2
   Simple ctrls  : 1
Card1.Amixer.values:
 Simple mixer control 'Mic',0
   Capabilities: cvolume cvolume-joined cswitch cswitch-joined penum
   Capture channels: Mono
   Limits: Capture 0 - 6144
   Mono: Capture 6144 [100%] [30.00dB] [on]
Date: Mon Feb 27 20:08:48 2012
HibernationDevice: RESUME=/dev/dm-3
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110426)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcEnviron:
 LANGUAGE=fr_FR:en
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: root=UUID=6cd6b1b8-4eb0-4459-95df-68fb11a1527c ro 
loop.max_part=16 quiet splash  crashkernel=384M-2G:64M,2G-:128M
RelatedPackageVersions:
 linux-restricted-modules-2.6.38-13-generic N/A
 linux-backports-modules-2.6.38-13-generic  N/A
 linux-firmware 1.52
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/18/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P1.90
dmi.board.name: P43R1600Twins-WiFi
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.90:bd12/18/2008:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnP43R1600Twins-WiFi:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.

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


** Tags: amd64 apport-bug natty

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

Title:
  The Fn key of my Apple keyboard doesn't work

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

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


[Bug 660990] Re: undefined symbol: _dbd_parse_datetime

2010-10-18 Thread Laurent Vivier
Hi Clint,

I'm sorry but I can't provide a repeatable test case.

My application (in fact a plugin for another application) has been recompiled. 
It was working perfectly as is with ubuntu 10.04. 
To make it working now, I've just to install a libdbd-pgsql built from a 
modified libdbi-drivers-0.8.3-1 (I've removed the --enable-libdbi from 
debian/rules).

Could you explain how to run libdbi-drivers test suite on my system ?

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

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


[Bug 660990] [NEW] undefined symbol: _dbd_parse_datetime

2010-10-15 Thread Laurent Vivier
Public bug reported:

Full logs:
/usr/lib/dbd/libdbdpgsql.so: undefined symbol: _dbd_parse_datetime
libdbi: Failed to load driver: /usr/lib/dbd/libdbdpgsql.so

When libdbi loads the postgresql driver, the load fails because _dbd_parse_time 
is missing for  /usr/lib/dbd/libdbdpgsql.so.
This symbol is normally provided by libdbi.so which is the loader:

$ objdump -T /usr/lib/libdbi.so.0.0.5|grep _dbd_parse_datetime
9570 gDF .text  02bc  Base
_dbd_parse_datetime

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: libdbd-pgsql 0.8.3-1-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-22.34-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Fri Oct 15 09:51:10 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
ProcEnviron:
 LANG=fr_FR.utf8
 SHELL=/bin/bash
SourcePackage: libdbi-drivers

** Affects: libdbi-drivers (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug maverick

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

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


[Bug 660990] Re: undefined symbol: _dbd_parse_datetime

2010-10-15 Thread Laurent Vivier


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

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


[Bug 660990] Re: undefined symbol: _dbd_parse_datetime

2010-10-15 Thread Laurent Vivier
Similar bug in debian:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594567

** Bug watch added: Debian Bug tracker #594567
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594567

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

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


[Bug 660990] Re: undefined symbol: _dbd_parse_datetime

2010-10-15 Thread Laurent Vivier
Removing --enable-dbi from debian/rules actually corrects the issue.

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

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