[Kernel-packages] [Bug 1548867] Re: After upgrading to 4.2.0.30 there's no desktop

2016-03-11 Thread Francis
I too faced the booting problem with  Ubuntu 15.10 to kernel 4.2.0.30
after software update. But if I move to previous Kernel version
4.2.0.27, then it is working fine.

Today again I updated my Kernel 4.2.0.30. Now everything is working
fine. It seems there was a bug, but now it is resolved.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1548867

Title:
  After upgrading to 4.2.0.30 there's no desktop

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  Hi,

  This morning I've updated my Ubuntu 15.10 to kernel 4.2.0.30 and now
  can't enter to the desktop. In fact, the laptop freezes after grub
  screen.

  If start from the recovery, from "upstart" option I get a message like
  "upstart: broken pipe". And I enter to "recovery mode" options  and
  after resume with the normal start the desktop loads but only with
  1024x768 or 800x600

  I've have to start with the previous kernel, the 4.2.0.27. Then all
  works as expected and I log to my desktop as usual.

  Thank you very much.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  albert 2638 F pulseaudio
   /dev/snd/controlC1:  albert 2638 F pulseaudio
  DistroRelease: Ubuntu 15.10
  HibernationDevice: RESUME=UUID=3ea73c4c-4dc5-4f7f-8c97-d2f477414305
  InstallationDate: Installed on 2016-01-20 (34 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: Hewlett-Packard HP G62 Notebook PC
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=es_ES
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=es_ES.UTF-8
   SHELL=/bin/bash
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=e34b1243-4d35-4e1d-ab47-19304b7c369b ro recovery nomodeset
  ProcVersionSignature: Ubuntu 4.2.0-30.35-generic 4.2.8-ckt3
  PulseList:
   Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
   No PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 03/15/2011
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.29
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 143C
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 62.3D
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.29:bd03/15/2011:svnHewlett-Packard:pnHPG62NotebookPC:pvr059411252710001020100:rvnHewlett-Packard:rn143C:rvr62.3D:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP G62 Notebook PC
  dmi.product.version: 059411252710001020100
  dmi.sys.vendor: Hewlett-Packard

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

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


[Kernel-packages] [Bug 1555997] Re: overlay fs regression: chmod fails with "Operation not permitted" on chowned files

2016-03-11 Thread Martin Pitt
Nice work Seth, thanks!

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555997

Title:
  overlay fs regression: chmod fails with "Operation not permitted" on
  chowned files

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress
Status in linux source package in Xenial:
  In Progress

Bug description:
  This is a regression in Xenial's kernel 4.4.0-9 or 4.4.0-10. See
  comment #3 for simple reproducer.

  ORIGINAL BUG REPORT
  ===
  I'm investigating some failures in autopkgtest's testsuite, and stumbled over 
something really weird: In an ephemeral container it is apparently not possible 
any more to chmod files that started out being root owned and got chowned later:

  $ sudo lxc-start-ephemeral -o adt-wily
  (log in as ubuntu/ubuntu)
  ubuntu@adt-wily-hvzj1eoa:~$ echo hello | sudo tee /tmp/testfile
  [sudo] password for ubuntu:
  hello
  ubuntu@adt-wily-hvzj1eoa:~$ sudo chown ubuntu:ubuntu /tmp/testfile
  ubuntu@adt-wily-hvzj1eoa:~$ chmod +x /tmp/testfile
  chmod: changing permissions of ‘/tmp/testfile’: Operation not permitted

  However, if the file was *not* previously chowned, it works as
  expected:

  ubuntu@adt-wily-hvzj1eoa:~$ echo hello > /tmp/testfile2
  ubuntu@adt-wily-hvzj1eoa:~$ chmod +x /tmp/testfile2
  ubuntu@adt-wily-hvzj1eoa:~$ chmod -x /tmp/testfile2

  (no errors and testfile2 becomes executable)

  There is no visible permission difference in the files at all, other
  than being group-writable (but changing the group w bit in either
  direction does not change the error at all):

  -rw-r--r-- 1 ubuntu ubuntu 6 Mar 11 10:26 /tmp/testfile
  -rw-rw-r-- 1 ubuntu ubuntu 6 Mar 11 10:26 /tmp/testfile2

  ubuntu@adt-wily-hvzj1eoa:~$ stat /tmp/testfile*
    File: ‘/tmp/testfile’
    Size: 6 Blocks: 8  IO Block: 4096   regular file
  Device: 15h/21d   Inode: 28  Links: 1
  Access: (0644/-rw-r--r--)  Uid: ( 1000/  ubuntu)   Gid: ( 1000/  ubuntu)
  Access: 2016-03-11 10:26:19.574364117 +0100
  Modify: 2016-03-11 10:26:19.574364117 +0100
  Change: 2016-03-11 10:26:21.930343210 +0100
   Birth: -
    File: ‘/tmp/testfile2’
    Size: 6 Blocks: 8  IO Block: 4096   regular file
  Device: 15h/21d   Inode: 29  Links: 1
  Access: (0664/-rw-rw-r--)  Uid: ( 1000/  ubuntu)   Gid: ( 1000/  ubuntu)
  Access: 2016-03-11 10:26:58.730145919 +0100
  Modify: 2016-03-11 10:26:58.730145919 +0100
  Change: 2016-03-11 10:27:44.530203985 +0100
   Birth: -

  There are also no ACLs involved (I checked with getfacl).

  This does not happen with a normal lxc-start, so this might very well
  be a bug in Linux' overlayfs. However, it also does not happen with
  the more modern "sudo lxc-copy -n adt-wily --ephemeral --foreground"
  -- bug perhaps this isn't using overlayfs?

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lxc 2.0.0~rc9-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
  Uname: Linux 4.4.0-11-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  CurrentDesktop: i3
  Date: Fri Mar 11 10:21:20 2016
  EcryptfsInUse: Yes
  PackageArchitecture: all
  SourcePackage: lxc
  UpgradeStatus: No upgrade log present (probably fresh install)
  defaults.conf:
   lxc.network.type = veth
   lxc.network.link = lxcbr0
   lxc.network.flags = up
   lxc.network.hwaddr = 00:16:3e:xx:xx:xx
  dnsmasq.conf:
   enable-tftp
   tftp-root=/tmp/tftp
   dhcp-boot=pxelinux.0
  lxc.conf: lxc.lxcpath = /srv/lxc

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

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


[Kernel-packages] [Bug 1556247] kili (amd64) - tests ran: 1, failed: 1

2016-03-11 Thread Brad Figg
tests ran:   1, failed: 1;
  
http://kernel.ubuntu.com/testing/4.4.0-12.28/kili__4.4.0-12.28__2016-03-12_02-48-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556247

Title:
  linux: 4.4.0-13.29 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow automated-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  New
Status in Kernel Development Workflow prepare-package-meta series:
  New
Status in Kernel Development Workflow prepare-package-signed series:
  New
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in Kernel Development Workflow regression-testing series:
  New
Status in linux package in Ubuntu:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug is for tracking the 4.4.0-13.29 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Friday, 11. March 2016 19:07 UTC
  kernel-phase-changed:Friday, 11. March 2016 19:07 UTC
  kernel-phase:Prepare
  kernel-stable-Promote-to-proposed-end:Friday, 11. March 2016 20:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1556247/+subscriptions

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


[Kernel-packages] [Bug 1556247] fozzie (amd64) - tests ran: 182, failed: 0

2016-03-11 Thread Brad Figg
tests ran: 182, failed: 0;
  
http://kernel.ubuntu.com/testing/4.4.0-12.28/fozzie__4.4.0-12.28__2016-03-12_04-35-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556247

Title:
  linux: 4.4.0-13.29 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow automated-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  New
Status in Kernel Development Workflow prepare-package-meta series:
  New
Status in Kernel Development Workflow prepare-package-signed series:
  New
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in Kernel Development Workflow regression-testing series:
  New
Status in linux package in Ubuntu:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug is for tracking the 4.4.0-13.29 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Friday, 11. March 2016 19:07 UTC
  kernel-phase-changed:Friday, 11. March 2016 19:07 UTC
  kernel-phase:Prepare
  kernel-stable-Promote-to-proposed-end:Friday, 11. March 2016 20:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1556247/+subscriptions

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


[Kernel-packages] [Bug 1553659] Re: Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

2016-03-11 Thread Christopher M. Penalver
Florian Tobé, in order to allow additional upstream developers to examine the 
issue, at your earliest convenience, could you please test the latest upstream 
kernel available from http://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D ? 
Please keep in mind the following:
1) The one to test is at the very top line at the top of the page (not the 
daily folder).
2) The release names are irrelevant.
3) The folder time stamps aren't indicative of when the kernel actually was 
released upstream.
4) Install instructions are available at 
https://wiki.ubuntu.com/Kernel/MainlineBuilds .

If testing on your main install would be inconvenient, one may:
1) Install Ubuntu to a different partition and then test this there.
2) Backup, or clone the primary install.

If the latest kernel did not allow you to test to the issue (ex. you couldn't 
boot into the OS) please make a comment in your report about this, and continue 
to test the next most recent kernel version until you can test to the issue. 
Once you've tested the upstream kernel, please comment on which kernel version 
specifically you tested. If this issue is fixed in the mainline kernel, please 
add the following tags by clicking on the yellow circle with a black pencil 
icon, next to the word Tags, located at the bottom of the report description:
kernel-fixed-upstream
kernel-fixed-upstream-X.Y-rcZ

Where X, and Y are the first two numbers of the kernel version, and Z is
the release candidate number if it exists.

If the mainline kernel does not fix the issue, please add the following tags:
kernel-bug-exists-upstream
kernel-bug-exists-upstream-X.Y-rcZ

Please note, an error to install the kernel does not fit the criteria of
kernel-bug-exists-upstream.

Also, you don't need to apport-collect further unless specifically
requested to do so.

Once testing of the latest upstream kernel is complete, please mark this
report Status Confirmed. Please let us know your results.

Thank you for your understanding.

** Description changed:

- I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
- florian@florian-W9x0LU:~$ lspci | grep VGA
- 00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
- After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
- But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
- So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
- I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
- Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
- --- 
+ In Ubuntu 14.04 and 15.10, freeze happens as soon as the login screen
+ appears, sometimes before the splash logo.
+ 
+ This doesn't occur with kernel 3.19, but the black screen of external
+ monitor problem still happens.
+ 
+ ---
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  florian1631 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
-  linux-restricted-modules-4.4.0-12-generic N/A
-  linux-backports-modules-4.4.0-12-generic  N/A
-  linux-firmware1.156
+  linux-restricted-modules-4.4.0-12-generic N/A
+  linux-backports-modules-4.4.0-12-generic  N/A
+  linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 

[Kernel-packages] [Bug 1555809] onibi (amd64) - tests ran: 148, failed: 1

2016-03-11 Thread Brad Figg
tests ran: 148, failed: 1;
  
http://kernel.ubuntu.com/testing/3.2.0-101.141/onibi__3.2.0-101.141__2016-03-12_04-47-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555809

Title:
  linux: 3.2.0-101.141 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lbm series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-101.141 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 21:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 22:04 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 04:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 04:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 15:56 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555809/+subscriptions

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


[Kernel-packages] [Bug 1556247] dagmar (amd64) - tests ran: 182, failed: 0

2016-03-11 Thread Brad Figg
tests ran: 182, failed: 0;
  
http://kernel.ubuntu.com/testing/4.4.0-12.28/dagmar__4.4.0-12.28__2016-03-12_04-11-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556247

Title:
  linux: 4.4.0-13.29 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow automated-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  New
Status in Kernel Development Workflow prepare-package-meta series:
  New
Status in Kernel Development Workflow prepare-package-signed series:
  New
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in Kernel Development Workflow regression-testing series:
  New
Status in linux package in Ubuntu:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug is for tracking the 4.4.0-13.29 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Friday, 11. March 2016 19:07 UTC
  kernel-phase-changed:Friday, 11. March 2016 19:07 UTC
  kernel-phase:Prepare
  kernel-stable-Promote-to-proposed-end:Friday, 11. March 2016 20:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1556247/+subscriptions

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


[Kernel-packages] [Bug 1548581] Re: using wacom tablet crashes the whole system in 16.04

2016-03-11 Thread Chris
I've updated my description with my info. I hope, now there will be some
kind of solution. Thanks in advance!

** Description changed:

  Just tried the daily build and - as I expected, because I tried many
  times - if I try to use my Wacom tablet, the whole system freezes.
  
  I'm not sure what it is, maybe it gets a kernel panic or it's because
  X.org, but I can't even restart the session, just if I turn off my
  laptop by pressing the power button for seconds, because after trying to
  use the graphics tablet, even the mouse and keyboard are frozen. I
  reproduced this many times and I got the same results every single time.
  But this doesn't even need to be in a drawing software. If I move the
  pen over the tablet the whole system crashes.
  
  Of course, if I pull it out and after restart I use Ubuntu without it,
  then everything is normal, but in my opinion this is a heavily serious
  issue, considering that we are talking about an LTS release, which has
  to mean rock-solid stability over non-LTS distros. Now I'm in Linux
  Mint, because this happens since 15.10 and Mint is the only Linux
  distribution which has full support for my graphics and art project
  workflow. Whatever they do, it just works, but Ubuntu is seriously
  unstable these days.
+ 
+ Here are my outputs:
+ Linux CNB-NoteBook-Pro 4.4.0-11-generic #26-Ubuntu SMP Sat Mar 5 14:25:21 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux
+ 
+ Ubuntu 4.4.0-11.26-generic 4.4.4
+ 
+ dmesg.log -> http://pastebin.com/WjLQpbvk
+ lspci-vvnn.log -> http://pastebin.com/6aYymGAG

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1548581

Title:
  using wacom tablet crashes the whole system in 16.04

Status in linux-firmware package in Ubuntu:
  Incomplete

Bug description:
  Just tried the daily build and - as I expected, because I tried many
  times - if I try to use my Wacom tablet, the whole system freezes.

  I'm not sure what it is, maybe it gets a kernel panic or it's because
  X.org, but I can't even restart the session, just if I turn off my
  laptop by pressing the power button for seconds, because after trying
  to use the graphics tablet, even the mouse and keyboard are frozen. I
  reproduced this many times and I got the same results every single
  time. But this doesn't even need to be in a drawing software. If I
  move the pen over the tablet the whole system crashes.

  Of course, if I pull it out and after restart I use Ubuntu without it,
  then everything is normal, but in my opinion this is a heavily serious
  issue, considering that we are talking about an LTS release, which has
  to mean rock-solid stability over non-LTS distros. Now I'm in Linux
  Mint, because this happens since 15.10 and Mint is the only Linux
  distribution which has full support for my graphics and art project
  workflow. Whatever they do, it just works, but Ubuntu is seriously
  unstable these days.

  Here are my outputs:
  Linux CNB-NoteBook-Pro 4.4.0-11-generic #26-Ubuntu SMP Sat Mar 5 14:25:21 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux

  Ubuntu 4.4.0-11.26-generic 4.4.4

  dmesg.log -> http://pastebin.com/WjLQpbvk
  lspci-vvnn.log -> http://pastebin.com/6aYymGAG

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

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


[Kernel-packages] [Bug 1521173] Re: AER: Corrected error received: id=00e0

2016-03-11 Thread Jordon Bedwell
I still get this problem in Xenial as well... randomly but it happens.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1521173

Title:
  AER: Corrected error received: id=00e0

Status in linux package in Ubuntu:
  Triaged
Status in linux source package in Xenial:
  Triaged

Bug description:
  My dmesg gets completely spammed with the following messages appearing
  over and over again. It stops after one s3 cycle; it only happens
  after reboot.

  [ 5315.986588] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5315.987249] pcieport :00:1c.0: can't find device of ID00e0
  [ 5315.995632] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5315.995664] pcieport :00:1c.0: PCIe Bus Error: severity=Corrected, 
type=Physical Layer, id=00e0(Receiver ID)
  [ 5315.995674] pcieport :00:1c.0:   device [8086:9d14] error 
status/mask=0001/2000
  [ 5315.995683] pcieport :00:1c.0:[ 0] Receiver Error
  [ 5316.002772] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5316.002811] pcieport :00:1c.0: PCIe Bus Error: severity=Corrected, 
type=Physical Layer, id=00e0(Receiver ID)
  [ 5316.002826] pcieport :00:1c.0:   device [8086:9d14] error 
status/mask=0001/2000
  [ 5316.002838] pcieport :00:1c.0:[ 0] Receiver Error
  [ 5316.009926] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5316.009964] pcieport :00:1c.0: PCIe Bus Error: severity=Corrected, 
type=Physical Layer, id=00e0(Receiver ID)
  [ 5316.009979] pcieport :00:1c.0:   device [8086:9d14] error 
status/mask=0001/2000
  [ 5316.009991] pcieport :00:1c.0:[ 0] Receiver Error

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.2.0-19-generic 4.2.0-19.23 [modified: 
boot/vmlinuz-4.2.0-19-generic]
  ProcVersionSignature: Ubuntu 4.2.0-19.23-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  ApportVersion: 2.19.2-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0c:   david  1502 F...m pulseaudio
   /dev/snd/controlC0:  david  1502 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Nov 30 13:19:00 2015
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=fe528b90-b4eb-4a20-82bd-6a03b79cfb14
  InstallationDate: Installed on 2015-11-28 (2 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151127)
  MachineType: Dell Inc. Inspiron 13-7359
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic.efi.signed 
root=UUID=94d54f88-5d18-4e2b-960a-8717d6e618bb ro noprompt persistent quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-19-generic N/A
   linux-backports-modules-4.2.0-19-generic  N/A
   linux-firmware1.153
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/07/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.00.00
  dmi.board.name: 0NT3WX
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr01.00.00:bd08/07/2015:svnDellInc.:pnInspiron13-7359:pvr:rvnDellInc.:rn0NT3WX:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Inspiron 13-7359
  dmi.sys.vendor: Dell Inc.

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

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


[Kernel-packages] [Bug 1553659] ProcEnviron.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596552/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] CurrentDmesg.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596546/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] PulseList.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596555/+files/PulseList.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] RfKill.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596556/+files/RfKill.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] ProcInterrupts.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596553/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] Re: Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

2016-03-11 Thread Florian Tobé
My pc just crashed ! so I launched the command again. Just before I
installed adobe air and skype with add I386 architecture

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] Re: Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

2016-03-11 Thread Florian Tobé
apport information

** Description changed:

  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
+ --- 
+ ApportVersion: 2.20-0ubuntu3
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  florian1626 F pulseaudio
+ CurrentDesktop: Unity
+ DistroRelease: Ubuntu 16.04
+ HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
+ InstallationDate: Installed on 2016-03-11 (0 days ago)
+ InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
+ MachineType: Notebook W9x0LU
+ Package: linux (not installed)
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
+ RelatedPackageVersions:
+  linux-restricted-modules-4.4.0-12-generic N/A
+  linux-backports-modules-4.4.0-12-generic  N/A
+  linux-firmware1.156
+ Tags:  xenial
+ Uname: Linux 4.4.0-12-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 07/31/2015
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 1.05.01
+ dmi.board.asset.tag: Tag 12345
+ dmi.board.name: W9x0LU
+ dmi.board.vendor: NOTEBOOK
+ dmi.board.version: Not Applicable
+ dmi.chassis.asset.tag: No Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: Notebook
+ dmi.chassis.version: N/A
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
+ dmi.product.name: W9x0LU
+ dmi.product.version: Not Applicable
+ dmi.sys.vendor: Notebook

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596544/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: 

[Kernel-packages] [Bug 1553659] ProcModules.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596554/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] UdevDb.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596557/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] WifiSyslog.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596558/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1555821] onza (i386) - tests ran: 170, failed: 2

2016-03-11 Thread Brad Figg
tests ran: 170, failed: 2;
  
http://kernel.ubuntu.com/testing/4.2.0-34.39/onza__4.2.0-34.39__2016-03-11_19-52-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555821

Title:
  linux: 4.2.0-34.39 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Confirmed
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-34.39 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 21:44 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 22:04 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 09:27 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 09:27 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:01 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555821/+subscriptions

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


[Kernel-packages] [Bug 1553659] IwConfig.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596547/+files/IwConfig.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] Lsusb.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596550/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] ProcCpuinfo.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596551/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] CRDA.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596545/+files/CRDA.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] Lspci.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596549/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] JournalErrors.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596548/+files/JournalErrors.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1626 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1553659] ProcCpuinfo.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596534/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] CRDA.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596528/+files/CRDA.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] Lsusb.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596533/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] CurrentDmesg.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596529/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] ProcEnviron.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596535/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] RfKill.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596539/+files/RfKill.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] ProcInterrupts.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596536/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] ProcModules.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596537/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] PulseList.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596538/+files/PulseList.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] Lspci.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596532/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] UdevDb.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1553659/+attachment/4596540/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] WifiSyslog.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596541/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] IwConfig.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596530/+files/IwConfig.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] JournalErrors.txt

2016-03-11 Thread Florian Tobé
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596531/+files/JournalErrors.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: Linux 4.4.0-12-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 07/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.01
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: W9x0LU
  dmi.board.vendor: NOTEBOOK
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.name: W9x0LU
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1553659] Re: Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

2016-03-11 Thread Florian Tobé
apport information

** Tags added: apport-collected xenial

** Description changed:

  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
+ --- 
+ ApportVersion: 2.20-0ubuntu3
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  florian1631 F pulseaudio
+ CurrentDesktop: Unity
+ DistroRelease: Ubuntu 16.04
+ HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
+ InstallationDate: Installed on 2016-03-11 (0 days ago)
+ InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
+ MachineType: Notebook W9x0LU
+ Package: linux (not installed)
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
+ RelatedPackageVersions:
+  linux-restricted-modules-4.4.0-12-generic N/A
+  linux-backports-modules-4.4.0-12-generic  N/A
+  linux-firmware1.156
+ Tags:  xenial
+ Uname: Linux 4.4.0-12-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 07/31/2015
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 1.05.01
+ dmi.board.asset.tag: Tag 12345
+ dmi.board.name: W9x0LU
+ dmi.board.vendor: NOTEBOOK
+ dmi.board.version: Not Applicable
+ dmi.chassis.asset.tag: No Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: Notebook
+ dmi.chassis.version: N/A
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.01:bd07/31/2015:svnNotebook:pnW9x0LU:pvrNotApplicable:rvnNOTEBOOK:rnW9x0LU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
+ dmi.product.name: W9x0LU
+ dmi.product.version: Not Applicable
+ dmi.sys.vendor: Notebook

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1553659/+attachment/4596527/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553659

Title:
  Ubuntu 15.10 freezes with linux Kernel 4.2 (with intel chipset)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I started with a brand new pc with a fresh install of ubuntu 14.04. But 
graphics were poor :
  florian@florian-W9x0LU:~$ lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
  After some research, I found out that using Kernel 3.19 would solve the 
problem : it did !
  But External Monitor used to get black (detected and working : sliding 
windows into it was possible) suddenly after few minutes.
  So I've finally decided to upgrade to 15.10... And freeze happened as soon as 
login screen appeared, sometimes before at splash logo.
  I changed boot order to Kernel 3.19 to make it work again but "black screen 
of external monitor"'s problem were still happening.
  Then I've tried to install Intel driver for linux successfully which didn't 
solve the black screen external monitor problem. Lastly, I tryied one last time 
to boot with kernel 4.2 with big freeze again again.
  --- 
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  florian1631 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  HibernationDevice: RESUME=UUID=eca37581-7b02-477e-8847-5d1fe024f793
  InstallationDate: Installed on 2016-03-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  MachineType: Notebook W9x0LU
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1258a432-22b2-45c4-ad2f-009dcac1c11b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-12-generic N/A
   linux-backports-modules-4.4.0-12-generic  N/A
   linux-firmware1.156
  Tags:  xenial
  Uname: 

[Kernel-packages] [Bug 1555919] Re: linux-armadaxp: 3.2.0-1664.88 -proposed tracker

2016-03-11 Thread Brad Figg
All builds are complete, packages in this bug can be copied to
-proposed.

** Changed in: kernel-sru-workflow/prepare-package
   Status: New => Fix Released

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel) => Ike Panhc (ikepanhc)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: New => Confirmed

** Description changed:

  This bug is for tracking the 3.2.0-1664.88 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
- kernel-stable-phase:Prepare
- kernel-stable-phase-changed:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809
  kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 03:02 UTC
  kernel-stable-Certification-testing-end:Saturday, 12. March 2016 03:01 UTC
  kernel-stable-Security-signoff-end:Saturday, 12. March 2016 03:02 UTC
+ kernel-stable-phase:CopyToProposed
+ kernel-stable-Prepare-package-end:Saturday, 12. March 2016 05:01 UTC
+ kernel-stable-Promote-to-proposed-start:Saturday, 12. March 2016 05:01 UTC
+ kernel-stable-phase-changed:Saturday, 12. March 2016 05:01 UTC

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-armadaxp in Ubuntu.
https://bugs.launchpad.net/bugs/1555919

Title:
  linux-armadaxp: 3.2.0-1664.88 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Confirmed
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-armadaxp source package in Precise:
  In Progress

Bug description:
  This bug is for tracking the 3.2.0-1664.88 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809
  kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 03:02 UTC
  kernel-stable-Certification-testing-end:Saturday, 12. March 2016 03:01 UTC
  kernel-stable-Security-signoff-end:Saturday, 12. March 2016 03:02 UTC
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Saturday, 12. March 2016 05:01 UTC
  kernel-stable-Promote-to-proposed-start:Saturday, 12. March 2016 05:01 UTC
  kernel-stable-phase-changed:Saturday, 12. March 2016 05:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555919/+subscriptions

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


[Kernel-packages] [Bug 1550879] Re: [Dell Inc. Inspiron 7559] suspend/resume failure

2016-03-11 Thread Christopher M. Penalver
Jimmy Pan, in order to allow additional upstream developers to examine the 
issue, at your earliest convenience, could you please test the latest upstream 
kernel available from http://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D ? 
Please keep in mind the following:
1) The one to test is at the very top line at the top of the page (not the 
daily folder).
2) The release names are irrelevant.
3) The folder time stamps aren't indicative of when the kernel actually was 
released upstream.
4) Install instructions are available at 
https://wiki.ubuntu.com/Kernel/MainlineBuilds .

If testing on your main install would be inconvenient, one may:
1) Install Ubuntu to a different partition and then test this there.
2) Backup, or clone the primary install.

If the latest kernel did not allow you to test to the issue (ex. you couldn't 
boot into the OS) please make a comment in your report about this, and continue 
to test the next most recent kernel version until you can test to the issue. 
Once you've tested the upstream kernel, please comment on which kernel version 
specifically you tested. If this issue is fixed in the mainline kernel, please 
add the following tags by clicking on the yellow circle with a black pencil 
icon, next to the word Tags, located at the bottom of the report description:
kernel-fixed-upstream
kernel-fixed-upstream-X.Y-rcZ

Where X, and Y are the first two numbers of the kernel version, and Z is
the release candidate number if it exists.

If the mainline kernel does not fix the issue, please add the following tags:
kernel-bug-exists-upstream
kernel-bug-exists-upstream-X.Y-rcZ

Please note, an error to install the kernel does not fit the criteria of
kernel-bug-exists-upstream.

Also, you don't need to apport-collect further unless specifically
requested to do so.

Once testing of the latest upstream kernel is complete, please mark this
report Status Confirmed. Please let us know your results.

Thank you for your understanding.

** Tags removed: bios-outdated-1.1.5
** Tags added: latest-bios-1.1.5

** Changed in: linux (Ubuntu)
   Importance: Low => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1550879

Title:
  [Dell Inc. Inspiron 7559] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When using command of pm-suspend, the machine might be suspended, but
  cannot be waken either by clicking the keyboard or power button.

  Sometimes the suspension will fail too.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   pjm2439 F...m pulseaudio
   /dev/snd/controlC0:  pjm2439 F pulseaudio
  Date: Sun Feb 28 15:30:13 2016
  DuplicateSignature: suspend/resume:Dell Inc. Inspiron 7559:1.1.3
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=447ec3f7-71bc-498d-ba0f-03ed68deccf2
  InstallationDate: Installed on 2016-02-27 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160225)
  InterpreterPath: /usr/bin/python3.5
  MachineType: Dell Inc. Inspiron 7559
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic.efi.signed 
root=UUID=d19074ca-3e53-4e29-b6ba-95daa56f7da0 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-8-generic N/A
   linux-backports-modules-4.4.0-8-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [Dell Inc. Inspiron 7559] suspend/resume failure
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  dmi.bios.date: 11/05/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.1.3
  dmi.board.name: 0H87XC
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd11/05/2015:svnDellInc.:pnInspiron7559:pvr1.1.3:rvnDellInc.:rn0H87XC:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 7559
  dmi.product.version: 1.1.3
  dmi.sys.vendor: Dell Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1555839] onibi (i386) - tests ran: 153, failed: 0

2016-03-11 Thread Brad Figg
tests ran: 153, failed: 0;
  
http://kernel.ubuntu.com/testing/3.13.0-83.127/onibi__3.13.0-83.127__2016-03-12_02-36-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555839

Title:
  linux: 3.13.0-83.127 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

Bug description:
  This bug is for tracking the 3.13.0-83.127 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:39 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 07:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 07:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:03 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555839/+subscriptions

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


[Kernel-packages] [Bug 1555809] fozzie (i386) - tests ran: 147, failed: 1

2016-03-11 Thread Brad Figg
tests ran: 147, failed: 1;
  
http://kernel.ubuntu.com/testing/3.2.0-101.141/fozzie__3.2.0-101.141__2016-03-12_02-58-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555809

Title:
  linux: 3.2.0-101.141 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lbm series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-101.141 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 21:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 22:04 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 04:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 04:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 15:56 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555809/+subscriptions

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


[Kernel-packages] [Bug 1556362] Missing required logs.

2016-03-11 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
>From a terminal window please run:

apport-collect 1556362

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556362

Title:
  Graphic display problem

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I would like to report a problem with my video driver.  While using
  both LibreOffice Writer  and Firefox, Ihave had occasions when the
  screen went wonky with horizontal lines running across such that the
  screen was not readable.  The problem seems to correct itself if I
  switch programs using the Launcher and then return to the problem
  application.

  I am running 32 bit Ubuntu15.10 on a Toshiba NB200 with a Intel® Atom™
  CPU N280 @ 1.66GHz × 2 processer,, 2 gig of RAM and Intel® 945GME
  x86/MMX/SSE2 graphics.

  Thanks.
  Jonathan

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

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


[Kernel-packages] [Bug 1556362] [NEW] Graphic display problem

2016-03-11 Thread Jonathan Tigner
Public bug reported:

I would like to report a problem with my video driver.  While using both
LibreOffice Writer  and Firefox, Ihave had occasions when the screen
went wonky with horizontal lines running across such that the screen was
not readable.  The problem seems to correct itself if I switch programs
using the Launcher and then return to the problem application.

I am running 32 bit Ubuntu15.10 on a Toshiba NB200 with a Intel® Atom™
CPU N280 @ 1.66GHz × 2 processer,, 2 gig of RAM and Intel® 945GME
x86/MMX/SSE2 graphics.

Thanks.
Jonathan

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556362

Title:
  Graphic display problem

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I would like to report a problem with my video driver.  While using
  both LibreOffice Writer  and Firefox, Ihave had occasions when the
  screen went wonky with horizontal lines running across such that the
  screen was not readable.  The problem seems to correct itself if I
  switch programs using the Launcher and then return to the problem
  application.

  I am running 32 bit Ubuntu15.10 on a Toshiba NB200 with a Intel® Atom™
  CPU N280 @ 1.66GHz × 2 processer,, 2 gig of RAM and Intel® 945GME
  x86/MMX/SSE2 graphics.

  Thanks.
  Jonathan

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

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


[Kernel-packages] [Bug 1550879] Re: [Dell Inc. Inspiron 7559] suspend/resume failure

2016-03-11 Thread Jimmy Pan
Sorry, forgot about the command

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1550879

Title:
  [Dell Inc. Inspiron 7559] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When using command of pm-suspend, the machine might be suspended, but
  cannot be waken either by clicking the keyboard or power button.

  Sometimes the suspension will fail too.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   pjm2439 F...m pulseaudio
   /dev/snd/controlC0:  pjm2439 F pulseaudio
  Date: Sun Feb 28 15:30:13 2016
  DuplicateSignature: suspend/resume:Dell Inc. Inspiron 7559:1.1.3
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=447ec3f7-71bc-498d-ba0f-03ed68deccf2
  InstallationDate: Installed on 2016-02-27 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160225)
  InterpreterPath: /usr/bin/python3.5
  MachineType: Dell Inc. Inspiron 7559
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic.efi.signed 
root=UUID=d19074ca-3e53-4e29-b6ba-95daa56f7da0 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-8-generic N/A
   linux-backports-modules-4.4.0-8-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [Dell Inc. Inspiron 7559] suspend/resume failure
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  dmi.bios.date: 11/05/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.1.3
  dmi.board.name: 0H87XC
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd11/05/2015:svnDellInc.:pnInspiron7559:pvr1.1.3:rvnDellInc.:rn0H87XC:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 7559
  dmi.product.version: 1.1.3
  dmi.sys.vendor: Dell Inc.

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

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


[Kernel-packages] [Bug 1550879] Re: [Dell Inc. Inspiron 7559] suspend/resume failure

2016-03-11 Thread Jimmy Pan
$ sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date
1.1.5
01/14/2016

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1550879

Title:
  [Dell Inc. Inspiron 7559] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When using command of pm-suspend, the machine might be suspended, but
  cannot be waken either by clicking the keyboard or power button.

  Sometimes the suspension will fail too.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   pjm2439 F...m pulseaudio
   /dev/snd/controlC0:  pjm2439 F pulseaudio
  Date: Sun Feb 28 15:30:13 2016
  DuplicateSignature: suspend/resume:Dell Inc. Inspiron 7559:1.1.3
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=447ec3f7-71bc-498d-ba0f-03ed68deccf2
  InstallationDate: Installed on 2016-02-27 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160225)
  InterpreterPath: /usr/bin/python3.5
  MachineType: Dell Inc. Inspiron 7559
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic.efi.signed 
root=UUID=d19074ca-3e53-4e29-b6ba-95daa56f7da0 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-8-generic N/A
   linux-backports-modules-4.4.0-8-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [Dell Inc. Inspiron 7559] suspend/resume failure
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  dmi.bios.date: 11/05/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.1.3
  dmi.board.name: 0H87XC
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd11/05/2015:svnDellInc.:pnInspiron7559:pvr1.1.3:rvnDellInc.:rn0H87XC:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 7559
  dmi.product.version: 1.1.3
  dmi.sys.vendor: Dell Inc.

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

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


[Kernel-packages] [Bug 1451246] Re: Intel 7265 Wifi instability workaround

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

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1451246

Title:
  Intel 7265 Wifi instability workaround

Status in linux package in Ubuntu:
  Expired

Bug description:
  I have a Thinkpad T450s since 5/1/2015 (though linux wants the 7265D
  ucode though). It was unstable, even when upgrading to the 4.0.1
  mainline kernel.

  Using the latest 7265 firmware improved things, but things like streams, 
speed tests, and youtube would tank the connection:
  retrieve the latest linux-firmware from their git:
  http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git
  (git clone 
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git)

  sudo rm /lib/firmware/iwlwifi*
  sudo cp /path/to//iwlwifi-7265*-12.ucode 
/lib/firmware/.
  reboot

  WORKAROUND: Disable 802.11n:
  echo 'options iwlwifi 11n_disable=1' | sudo tee -a 
/etc/modprobe.d/iwlwifi.conf

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-15-generic 3.19.0-15.15 [modified: 
boot/vmlinuz-3.19.0-15-generic]
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  Uname: Linux 3.19.0-15-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  epicstar   1453 F pulseaudio
   /dev/snd/pcmC1D0p:   epicstar   1453 F...m pulseaudio
   /dev/snd/controlC1:  epicstar   1453 F pulseaudio
  CurrentDesktop: Unity
  Date: Sun May  3 15:43:35 2015
  HibernationDevice: RESUME=UUID=9caf85bf-266f-4356-9a64-031df7edb239
  InstallationDate: Installed on 2015-05-02 (1 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: LENOVO 20BXCTO1WW
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-15-generic.efi.signed 
root=UUID=b8187455-26c0-492f-bf45-755286cf5623 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-15-generic N/A
   linux-backports-modules-3.19.0-15-generic  N/A
   linux-firmware 1.143
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/10/2015
  dmi.bios.vendor: LENOVO
  dmi.bios.version: JBET47WW (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BXCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50512 STD
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrJBET47WW(1.12):bd03/10/2015:svnLENOVO:pn20BXCTO1WW:pvrThinkPadT450s:rvnLENOVO:rn20BXCTO1WW:rvrSDK0E50512STD:cvnLENOVO:ct10:cvrNone:
  dmi.product.name: 20BXCTO1WW
  dmi.product.version: ThinkPad T450s
  dmi.sys.vendor: LENOVO

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

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


[Kernel-packages] [Bug 1532099] Re: package linux-image-extra-3.13.0-66-generic 3.13.0-66.108 failed to install/upgrade: package linux-image-extra-3.13.0-66-generic is not ready for configuration cann

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

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1532099

Title:
  package linux-image-extra-3.13.0-66-generic 3.13.0-66.108 failed to
  install/upgrade: package linux-image-extra-3.13.0-66-generic is not
  ready for configuration  cannot configure (current status `half-
  installed')

Status in linux package in Ubuntu:
  Expired

Bug description:
  Nothing strange happen except that the bug report window opened and it
  seems it is not going away every time I boot until I report it.

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-extra-3.13.0-66-generic 3.13.0-66.108
  ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
  Uname: Linux 3.13.0-74-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  AptOrdering:
   gstreamer1.0-libav: Install
   linux-image-extra-3.13.0-66-generic: Configure
   gstreamer1.0-libav: Configure
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  zoltan 2345 F pulseaudio
  Date: Thu Jan  7 21:59:08 2016
  DuplicateSignature: 
package:linux-image-extra-3.13.0-66-generic:3.13.0-66.108:package 
linux-image-extra-3.13.0-66-generic is not ready for configuration  cannot 
configure (current status `half-installed')
  ErrorMessage: package linux-image-extra-3.13.0-66-generic is not ready for 
configuration  cannot configure (current status `half-installed')
  HibernationDevice: RESUME=UUID=c47ba259-9ee1-4396-b6a5-8d601db3c69b
  InstallationDate: Installed on 2014-08-29 (496 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: TOSHIBA Satellite P855
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-74-generic 
root=UUID=b71c80bb-8256-47ec-b5d8-57b1fa98ac0b ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  Title: package linux-image-extra-3.13.0-66-generic 3.13.0-66.108 failed to 
install/upgrade: package linux-image-extra-3.13.0-66-generic is not ready for 
configuration  cannot configure (current status `half-installed')
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/20/2013
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: 6.70
  dmi.board.asset.tag: *
  dmi.board.name: QFKAA
  dmi.board.vendor: TOSHIBA
  dmi.board.version: 1.00
  dmi.chassis.asset.tag: *
  dmi.chassis.type: 10
  dmi.chassis.vendor: TOSHIBA
  dmi.chassis.version: *
  dmi.modalias: 
dmi:bvnTOSHIBA:bvr6.70:bd02/20/2013:svnTOSHIBA:pnSatelliteP855:pvrPSPKAU-00F009:rvnTOSHIBA:rnQFKAA:rvr1.00:cvnTOSHIBA:ct10:cvr*:
  dmi.product.name: Satellite P855
  dmi.product.version: PSPKAU-00F009
  dmi.sys.vendor: TOSHIBA

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

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


[Kernel-packages] [Bug 1555919] Re: linux-armadaxp: 3.2.0-1664.88 -proposed tracker

2016-03-11 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: New => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel) => Ike Panhc (ikepanhc)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-armadaxp in Ubuntu.
https://bugs.launchpad.net/bugs/1555919

Title:
  linux-armadaxp: 3.2.0-1664.88 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-armadaxp source package in Precise:
  In Progress

Bug description:
  This bug is for tracking the 3.2.0-1664.88 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
  kernel-stable-phase:Prepare
  kernel-stable-phase-changed:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809
  kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 03:02 UTC
  kernel-stable-Certification-testing-end:Saturday, 12. March 2016 03:01 UTC
  kernel-stable-Security-signoff-end:Saturday, 12. March 2016 03:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555919/+subscriptions

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


[Kernel-packages] [Bug 1555809] dagmar (i386) - tests ran: 147, failed: 1

2016-03-11 Thread Brad Figg
tests ran: 147, failed: 1;
  
http://kernel.ubuntu.com/testing/3.2.0-101.141/dagmar__3.2.0-101.141__2016-03-12_02-33-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555809

Title:
  linux: 3.2.0-101.141 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lbm series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-101.141 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 21:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 22:04 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 04:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 04:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 15:56 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555809/+subscriptions

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


[Kernel-packages] [Bug 1550879] Re: [Dell Inc. Inspiron 7559] suspend/resume failure

2016-03-11 Thread Christopher M. Penalver
Jimmy Pan, please provide the output of the following terminal command:
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1550879

Title:
  [Dell Inc. Inspiron 7559] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When using command of pm-suspend, the machine might be suspended, but
  cannot be waken either by clicking the keyboard or power button.

  Sometimes the suspension will fail too.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   pjm2439 F...m pulseaudio
   /dev/snd/controlC0:  pjm2439 F pulseaudio
  Date: Sun Feb 28 15:30:13 2016
  DuplicateSignature: suspend/resume:Dell Inc. Inspiron 7559:1.1.3
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=447ec3f7-71bc-498d-ba0f-03ed68deccf2
  InstallationDate: Installed on 2016-02-27 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160225)
  InterpreterPath: /usr/bin/python3.5
  MachineType: Dell Inc. Inspiron 7559
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic.efi.signed 
root=UUID=d19074ca-3e53-4e29-b6ba-95daa56f7da0 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-8-generic N/A
   linux-backports-modules-4.4.0-8-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [Dell Inc. Inspiron 7559] suspend/resume failure
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  dmi.bios.date: 11/05/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.1.3
  dmi.board.name: 0H87XC
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd11/05/2015:svnDellInc.:pnInspiron7559:pvr1.1.3:rvnDellInc.:rn0H87XC:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 7559
  dmi.product.version: 1.1.3
  dmi.sys.vendor: Dell Inc.

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

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


[Kernel-packages] [Bug 1553427] Re: [LENOVO S10-3] suspend/resume failure

2016-03-11 Thread Christopher M. Penalver
Jonathan Duff, to clarify, did this issue not occur in a release prior
to Xenial?

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553427

Title:
  [LENOVO S10-3] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  - goes to sleep and netbook indicator light flashes.
  - touch keyboard or mouse and it starts to resume.
  - goes to black screen with all indicator light but hard drive light on
  - hard drive light flashes once.
  - caps lock fails to light up and toggle
  conclusion:
  goes to a black screen and fails to resume.
  unresponsive in switching to virtual terminals or toggling caps lock light.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-9-generic 4.4.0-9.24
  ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  user   1660 F pulseaudio
  Date: Fri Mar  4 16:38:43 2016
  DuplicateSignature: suspend/resume:LENOVO S10-3:2ACN23WW
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=3cd1818a-c595-48c2-9604-a4c99101405f
  InstallationDate: Installed on 2016-02-27 (7 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  InterpreterPath: /usr/bin/python3.5
  MachineType: LENOVO S10-3
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=bc2bf6a8-2064-486f-beeb-bcd366e8ba2f ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-9-generic N/A
   linux-backports-modules-4.4.0-9-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [LENOVO S10-3] suspend/resume failure
  UpgradeStatus: Upgraded to xenial on 2016-02-28 (5 days ago)
  UserGroups:
   
  dmi.bios.date: 03/12/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 2ACN23WW
  dmi.board.name: Mariana3A
  dmi.board.vendor: Lenovo
  dmi.board.version: Rev 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Lenovo
  dmi.chassis.version: Rev 1.0
  dmi.modalias: 
dmi:bvnLENOVO:bvr2ACN23WW:bd03/12/2010:svnLENOVO:pnS10-3:pvrLenovo:rvnLenovo:rnMariana3A:rvrRev1.0:cvnLenovo:ct10:cvrRev1.0:
  dmi.product.name: S10-3
  dmi.product.version: Lenovo
  dmi.sys.vendor: LENOVO

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

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


[Kernel-packages] [Bug 1550879] Re: [Dell Inc. Inspiron 7559] suspend/resume failure

2016-03-11 Thread Jimmy Pan
After updating bios, my machine still cannot suspend. I saw nothing in
syslog or kern.log, though I want to provide some more logs.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1550879

Title:
  [Dell Inc. Inspiron 7559] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When using command of pm-suspend, the machine might be suspended, but
  cannot be waken either by clicking the keyboard or power button.

  Sometimes the suspension will fail too.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   pjm2439 F...m pulseaudio
   /dev/snd/controlC0:  pjm2439 F pulseaudio
  Date: Sun Feb 28 15:30:13 2016
  DuplicateSignature: suspend/resume:Dell Inc. Inspiron 7559:1.1.3
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=447ec3f7-71bc-498d-ba0f-03ed68deccf2
  InstallationDate: Installed on 2016-02-27 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160225)
  InterpreterPath: /usr/bin/python3.5
  MachineType: Dell Inc. Inspiron 7559
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic.efi.signed 
root=UUID=d19074ca-3e53-4e29-b6ba-95daa56f7da0 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-8-generic N/A
   linux-backports-modules-4.4.0-8-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [Dell Inc. Inspiron 7559] suspend/resume failure
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  dmi.bios.date: 11/05/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.1.3
  dmi.board.name: 0H87XC
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd11/05/2015:svnDellInc.:pnInspiron7559:pvr1.1.3:rvnDellInc.:rn0H87XC:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 7559
  dmi.product.version: 1.1.3
  dmi.sys.vendor: Dell Inc.

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

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


[Kernel-packages] [Bug 1548663] Re: linux-armadaxp: 3.2.0-1663.87 -proposed tracker

2016-03-11 Thread Ike Panhc
*** This bug is a duplicate of bug 1555919 ***
https://bugs.launchpad.net/bugs/1555919

** This bug has been marked a duplicate of bug 1555919
   linux-armadaxp: 3.2.0-1664.88 -proposed tracker

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-armadaxp in Ubuntu.
https://bugs.launchpad.net/bugs/1548663

Title:
  linux-armadaxp: 3.2.0-1663.87 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-armadaxp source package in Precise:
  In Progress

Bug description:
  This bug is for tracking the 3.2.0-1663.87 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 23. February 2016 08:02 UTC
  kernel-stable-master-bug:1548504
  kernel-stable-Certification-testing-end:Tuesday, 23. February 2016 09:02 UTC
  kernel-stable-Security-signoff-end:Tuesday, 23. February 2016 09:02 UTC
  kernel-stable-Prepare-package-end:Tuesday, 23. February 2016 11:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 23. February 2016 11:04 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 24. February 2016 21:02 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Wednesday, 24. February 2016 23:01 UTC
  kernel-stable-Verification-testing-start:Wednesday, 24. February 2016 23:01 
UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Wednesday, 24. February 2016 23:01 UTC
  kernel-stable-Regression-testing-end:Thursday, 25. February 2016 09:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1548663/+subscriptions

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


[Kernel-packages] [Bug 1548506] Re: linux-armadaxp: 3.2.0-1663.87 -proposed tracker

2016-03-11 Thread Ike Panhc
*** This bug is a duplicate of bug 1555919 ***
https://bugs.launchpad.net/bugs/1555919

** This bug is no longer a duplicate of bug 1548663
   linux-armadaxp: 3.2.0-1663.87 -proposed tracker
** This bug has been marked a duplicate of bug 1555919
   linux-armadaxp: 3.2.0-1664.88 -proposed tracker

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-armadaxp in Ubuntu.
https://bugs.launchpad.net/bugs/1548506

Title:
  linux-armadaxp: 3.2.0-1663.87 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-armadaxp source package in Precise:
  In Progress

Bug description:
  This bug is for tracking the 3.2.0-1663.87 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 22. February 2016 21:02 UTC
  kernel-stable-phase:Prepare
  kernel-stable-phase-changed:Monday, 22. February 2016 21:02 UTC
  kernel-stable-master-bug:1548504
  kernel-stable-Certification-testing-end:Tuesday, 23. February 2016 06:01 UTC
  kernel-stable-Security-signoff-end:Tuesday, 23. February 2016 06:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1548506/+subscriptions

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


[Kernel-packages] [Bug 1553427] Re: [LENOVO S10-3] suspend/resume failure

2016-03-11 Thread Jonathan Duff
The issue is still reproducable.
Currently, the netbook is not able to resume from a suspend.

notes:
+ BIOS latest
+ using latest upstream kernel


user@lenovo:~$ date
Fri Mar 11 19:09:16 PST 2016

user@lenovo:~$ uname -a
Linux lenovo 4.5.0-040500rc7-generic #201603061830 SMP Sun Mar 6 23:33:11 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux

user@lenovo:~$ sudo apt-get upgrade
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.


** Tags added: kernel-bug-exists-upstream kernel-bug-exists-
upstream-4.5-rc7

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553427

Title:
  [LENOVO S10-3] suspend/resume failure

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  - goes to sleep and netbook indicator light flashes.
  - touch keyboard or mouse and it starts to resume.
  - goes to black screen with all indicator light but hard drive light on
  - hard drive light flashes once.
  - caps lock fails to light up and toggle
  conclusion:
  goes to a black screen and fails to resume.
  unresponsive in switching to virtual terminals or toggling caps lock light.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-9-generic 4.4.0-9.24
  ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  user   1660 F pulseaudio
  Date: Fri Mar  4 16:38:43 2016
  DuplicateSignature: suspend/resume:LENOVO S10-3:2ACN23WW
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=3cd1818a-c595-48c2-9604-a4c99101405f
  InstallationDate: Installed on 2016-02-27 (7 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  InterpreterPath: /usr/bin/python3.5
  MachineType: LENOVO S10-3
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=bc2bf6a8-2064-486f-beeb-bcd366e8ba2f ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-9-generic N/A
   linux-backports-modules-4.4.0-9-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [LENOVO S10-3] suspend/resume failure
  UpgradeStatus: Upgraded to xenial on 2016-02-28 (5 days ago)
  UserGroups:
   
  dmi.bios.date: 03/12/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 2ACN23WW
  dmi.board.name: Mariana3A
  dmi.board.vendor: Lenovo
  dmi.board.version: Rev 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Lenovo
  dmi.chassis.version: Rev 1.0
  dmi.modalias: 
dmi:bvnLENOVO:bvr2ACN23WW:bd03/12/2010:svnLENOVO:pnS10-3:pvrLenovo:rvnLenovo:rnMariana3A:rvrRev1.0:cvnLenovo:ct10:cvrRev1.0:
  dmi.product.name: S10-3
  dmi.product.version: Lenovo
  dmi.sys.vendor: LENOVO

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

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


[Kernel-packages] [Bug 1555919] Re: linux-armadaxp: 3.2.0-1664.88 -proposed tracker

2016-03-11 Thread Ike Panhc
** Changed in: kernel-sru-workflow
 Assignee: (unassigned) => Ike Panhc (ikepanhc)

** Changed in: kernel-sru-workflow/regression-testing
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Ike Panhc 
(ikepanhc)

** Changed in: kernel-sru-workflow/verification-testing
 Assignee: Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel) => Ike Panhc (ikepanhc)

** Changed in: linux-armadaxp (Ubuntu Precise)
   Status: New => In Progress

** Changed in: linux-armadaxp (Ubuntu Precise)
 Assignee: (unassigned) => Ike Panhc (ikepanhc)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-armadaxp in Ubuntu.
https://bugs.launchpad.net/bugs/1555919

Title:
  linux-armadaxp: 3.2.0-1664.88 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-armadaxp source package in Precise:
  In Progress

Bug description:
  This bug is for tracking the 3.2.0-1664.88 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
  kernel-stable-phase:Prepare
  kernel-stable-phase-changed:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809
  kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 03:02 UTC
  kernel-stable-Certification-testing-end:Saturday, 12. March 2016 03:01 UTC
  kernel-stable-Security-signoff-end:Saturday, 12. March 2016 03:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555919/+subscriptions

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


[Kernel-packages] [Bug 1555919] Re: linux-armadaxp: 3.2.0-1664.88 -proposed tracker

2016-03-11 Thread Brad Figg
** Description changed:

  This bug is for tracking the 3.2.0-1664.88 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
  kernel-stable-phase:Prepare
  kernel-stable-phase-changed:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809
+ kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 03:02 UTC
+ kernel-stable-Certification-testing-end:Saturday, 12. March 2016 03:01 UTC
+ kernel-stable-Security-signoff-end:Saturday, 12. March 2016 03:02 UTC

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-armadaxp in Ubuntu.
https://bugs.launchpad.net/bugs/1555919

Title:
  linux-armadaxp: 3.2.0-1664.88 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-armadaxp source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-1664.88 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
  kernel-stable-phase:Prepare
  kernel-stable-phase-changed:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809
  kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 03:02 UTC
  kernel-stable-Certification-testing-end:Saturday, 12. March 2016 03:01 UTC
  kernel-stable-Security-signoff-end:Saturday, 12. March 2016 03:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555919/+subscriptions

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


[Kernel-packages] [Bug 1556351] Status changed to Confirmed

2016-03-11 Thread Brad Figg
This change was made by a bot.

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556351

Title:
  package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I just ran the 16.04 installer onto my 15.10 version...

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-12-generic 4.4.0-12.28
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  kam2396 F pulseaudio
   /dev/snd/controlC0:  kam2396 F pulseaudio
  Date: Fri Mar 11 20:26:59 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 2
  HibernationDevice: RESUME=UUID=e40043d0-972d-4e86-9134-1ba25a46dd42
  InstallationDate: Installed on 2016-02-20 (20 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: LENOVO 80E3
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=518372d1-f890-4035-b9ab-c3eb12a8e665 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: linux
  Title: package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
  UpgradeStatus: Upgraded to xenial on 2016-03-12 (0 days ago)
  dmi.bios.date: 10/29/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: A2CN26WW(V1.08)
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Lancer 5B2
  dmi.board.vendor: LENOVO
  dmi.board.version: 31900058 WIN
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo G50-45
  dmi.modalias: 
dmi:bvnLENOVO:bvrA2CN26WW(V1.08):bd10/29/2014:svnLENOVO:pn80E3:pvrLenovoG50-45:rvnLENOVO:rnLancer5B2:rvr31900058WIN:cvnLENOVO:ct10:cvrLenovoG50-45:
  dmi.product.name: 80E3
  dmi.product.version: Lenovo G50-45
  dmi.sys.vendor: LENOVO

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

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


[Kernel-packages] [Bug 1555809] fozzie (amd64) - tests ran: 148, failed: 1

2016-03-11 Thread Brad Figg
tests ran: 148, failed: 1;
  
http://kernel.ubuntu.com/testing/3.2.0-101.141/fozzie__3.2.0-101.141__2016-03-12_01-22-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555809

Title:
  linux: 3.2.0-101.141 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lbm series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-101.141 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 21:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 22:04 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 04:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 04:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 15:56 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555809/+subscriptions

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


[Kernel-packages] [Bug 1555919] Re: linux-armadaxp: 3.2.0-1664.88 -proposed tracker

2016-03-11 Thread Ike Panhc
** Summary changed:

- linux-armadaxp:  -proposed tracker
+ linux-armadaxp: 3.2.0-1664.88 -proposed tracker

** Description changed:

- This bug is for tracking the  upload package. This
- bug will contain status and testing results related to that upload.
+ This bug is for tracking the 3.2.0-1664.88 upload package. This bug will
+ contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
  kernel-stable-phase:Prepare
  kernel-stable-phase-changed:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-armadaxp in Ubuntu.
https://bugs.launchpad.net/bugs/1555919

Title:
  linux-armadaxp: 3.2.0-1664.88 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-armadaxp source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-1664.88 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 11. March 2016 04:04 UTC
  kernel-stable-phase:Prepare
  kernel-stable-phase-changed:Friday, 11. March 2016 04:04 UTC
  kernel-stable-master-bug:1555809

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555919/+subscriptions

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


[Kernel-packages] [Bug 1556351] [NEW] package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2016-03-11 Thread The Geeko
Public bug reported:

I just ran the 16.04 installer onto my 15.10 version...

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-12-generic 4.4.0-12.28
ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
Uname: Linux 4.4.0-12-generic x86_64
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  kam2396 F pulseaudio
 /dev/snd/controlC0:  kam2396 F pulseaudio
Date: Fri Mar 11 20:26:59 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
HibernationDevice: RESUME=UUID=e40043d0-972d-4e86-9134-1ba25a46dd42
InstallationDate: Installed on 2016-02-20 (20 days ago)
InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
MachineType: LENOVO 80E3
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=518372d1-f890-4035-b9ab-c3eb12a8e665 ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc N/A
SourcePackage: linux
Title: package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
UpgradeStatus: Upgraded to xenial on 2016-03-12 (0 days ago)
dmi.bios.date: 10/29/2014
dmi.bios.vendor: LENOVO
dmi.bios.version: A2CN26WW(V1.08)
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Lancer 5B2
dmi.board.vendor: LENOVO
dmi.board.version: 31900058 WIN
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo G50-45
dmi.modalias: 
dmi:bvnLENOVO:bvrA2CN26WW(V1.08):bd10/29/2014:svnLENOVO:pn80E3:pvrLenovoG50-45:rvnLENOVO:rnLancer5B2:rvr31900058WIN:cvnLENOVO:ct10:cvrLenovoG50-45:
dmi.product.name: 80E3
dmi.product.version: Lenovo G50-45
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-package xenial

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556351

Title:
  package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

Status in linux package in Ubuntu:
  New

Bug description:
  I just ran the 16.04 installer onto my 15.10 version...

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-12-generic 4.4.0-12.28
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  kam2396 F pulseaudio
   /dev/snd/controlC0:  kam2396 F pulseaudio
  Date: Fri Mar 11 20:26:59 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 2
  HibernationDevice: RESUME=UUID=e40043d0-972d-4e86-9134-1ba25a46dd42
  InstallationDate: Installed on 2016-02-20 (20 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: LENOVO 80E3
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=518372d1-f890-4035-b9ab-c3eb12a8e665 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: linux
  Title: package linux-image-4.4.0-12-generic 4.4.0-12.28 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
  UpgradeStatus: Upgraded to xenial on 2016-03-12 (0 days ago)
  dmi.bios.date: 10/29/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: A2CN26WW(V1.08)
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Lancer 5B2
  dmi.board.vendor: LENOVO
  dmi.board.version: 31900058 WIN
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo G50-45
  dmi.modalias: 
dmi:bvnLENOVO:bvrA2CN26WW(V1.08):bd10/29/2014:svnLENOVO:pn80E3:pvrLenovoG50-45:rvnLENOVO:rnLancer5B2:rvr31900058WIN:cvnLENOVO:ct10:cvrLenovoG50-45:
  dmi.product.name: 80E3
  dmi.product.version: Lenovo G50-45
  dmi.sys.vendor: LENOVO

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

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


[Kernel-packages] [Bug 1555839] onibi (amd64) - tests ran: 180, failed: 2

2016-03-11 Thread Brad Figg
tests ran: 180, failed: 2;
  
http://kernel.ubuntu.com/testing/3.13.0-83.127/onibi__3.13.0-83.127__2016-03-12_00-18-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555839

Title:
  linux: 3.13.0-83.127 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

Bug description:
  This bug is for tracking the 3.13.0-83.127 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:39 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 07:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 07:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:03 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555839/+subscriptions

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


[Kernel-packages] [Bug 1555809] dagmar (amd64) - tests ran: 148, failed: 1

2016-03-11 Thread Brad Figg
tests ran: 148, failed: 1;
  
http://kernel.ubuntu.com/testing/3.2.0-101.141/dagmar__3.2.0-101.141__2016-03-12_00-56-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555809

Title:
  linux: 3.2.0-101.141 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lbm series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-101.141 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 21:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 22:04 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 04:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 04:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 15:56 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 15:56 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555809/+subscriptions

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


[Kernel-packages] [Bug 1555839] kili (i386) - tests ran: 1, failed: 1

2016-03-11 Thread Brad Figg
tests ran:   1, failed: 1;
  
http://kernel.ubuntu.com/testing/3.13.0-79.123/kili__3.13.0-79.123__2016-03-11_22-15-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555839

Title:
  linux: 3.13.0-83.127 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

Bug description:
  This bug is for tracking the 3.13.0-83.127 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:39 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 07:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 07:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:03 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555839/+subscriptions

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


[Kernel-packages] [Bug 1550756] Re: linux: 4.2.0-34.39 - shankbot development tracker

2016-03-11 Thread Brad Figg
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: New => Fix Released

** Description changed:

  This bug is for tracking the 4.2.0-34.39 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Saturday, 27. February 2016 17:36 UTC
  kernel-stable-phase:none
  kernel-stable-Prepare-package-end:Saturday, 27. February 2016 18:06 UTC
+ kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 01:17 UTC

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1550756

Title:
  linux: 4.2.0-34.39 - shankbot development tracker

Status in Kernel SRU Workflow:
  Invalid
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  Invalid
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  Invalid
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Wily:
  New

Bug description:
  This bug is for tracking the 4.2.0-34.39 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Saturday, 27. February 2016 17:36 UTC
  kernel-stable-phase:none
  kernel-stable-Prepare-package-end:Saturday, 27. February 2016 18:06 UTC
  kernel-stable-Promote-to-proposed-end:Saturday, 12. March 2016 01:17 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1550756/+subscriptions

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


[Kernel-packages] [Bug 1555828] Re: BTRFS Kernel trace - Terrible Write Performance

2016-03-11 Thread jdfalk
So it got much worse after 4.2.0-30-generic, the most stable of the
kernels I have installed is 4.2.0-27-generic. I will try reinstalling
the 4.2.0-25-generic and see how it performs.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555828

Title:
  BTRFS Kernel trace - Terrible Write Performance

Status in linux package in Ubuntu:
  Triaged

Bug description:
  I am seeing this several times in the logs. I also installed a
  mainline upstream kernel and it still occurred in 4.5-rc7-wily.

  
  theark kernel: INFO: task btrfs-transacti:518 blocked for more than 120 
seconds.
  Mar 10 14:00:44 theark kernel:   Not tainted 4.2.0-27-generic #32-Ubuntu
  Mar 10 14:00:44 theark kernel: "echo 0 > 
/proc/sys/kernel/hung_task_timeout_secs" disables this message.
  Mar 10 14:00:44 theark kernel: btrfs-transacti D 88041f296640 0   518 
 2 0x
  Mar 10 14:00:44 theark kernel:  8803e0eafdb8 0046 
88040cdaa940 88040c8dee00
  Mar 10 14:00:44 theark kernel:  0246 8803e0eb 
880409d44178 88040997f800
  Mar 10 14:00:44 theark kernel:  8803e0eafdf8 880409d441d8 
8803e0eafdd8 817edc37
  Mar 10 14:00:44 theark kernel: Call Trace:
  Mar 10 14:00:44 theark kernel:  [] schedule+0x37/0x80
  Mar 10 14:00:44 theark kernel:  [] 
btrfs_commit_transaction+0x423/0xb20 [btrfs]
  Mar 10 14:00:44 theark kernel:  [] ? 
wake_atomic_t_function+0x60/0x60
  Mar 10 14:00:44 theark kernel:  [] 
transaction_kthread+0x229/0x240 [btrfs]
  Mar 10 14:00:44 theark kernel:  [] ? 
btrfs_cleanup_transaction+0x550/0x550 [btrfs]
  Mar 10 14:00:44 theark kernel:  [] kthread+0xd8/0xf0
  Mar 10 14:00:44 theark kernel:  [] ? 
kthread_create_on_node+0x1f0/0x1f0
  Mar 10 14:00:44 theark kernel:  [] ret_from_fork+0x3f/0x70
  Mar 10 14:00:44 theark kernel:  [] ? 
kthread_create_on_node+0x1f0/0x1f0

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-27-generic 4.2.0-27.32
  ProcVersionSignature: Ubuntu 4.2.0-27.32-generic 4.2.8-ckt1
  Uname: Linux 4.2.0-27-generic x86_64
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/hwC0D3', '/dev/snd/hwC0D2', '/dev/snd/pcmC0D3p', '/dev/snd/pcmC0D2c', 
'/dev/snd/pcmC0D2p', '/dev/snd/pcmC0D1p', '/dev/snd/pcmC0D0c', 
'/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', '/dev/snd/timer'] 
failed with exit code 1:
  Date: Thu Mar 10 13:59:12 2016
  HibernationDevice: RESUME=/dev/mapper/sda5_crypt
  InstallationDate: Installed on 2015-05-10 (305 days ago)
  InstallationMedia: Ubuntu-Server 15.04 "Vivid Vervet" - Release amd64 
(20150422)
  IwConfig:
   p1p1  no wireless extensions.
   
   br0   no wireless extensions.
   
   lono wireless extensions.
  MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
  ProcEnviron:
   TERM=screen
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-27-generic.efi.signed 
root=UUID=51a981ad-aeb0-4bd7-91c6-2d493155c812 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-27-generic N/A
   linux-backports-modules-4.2.0-27-generic  N/A
   linux-firmware1.156
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: Upgraded to wily on 2015-10-26 (136 days ago)
  dmi.bios.date: 01/06/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F18i
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Z77X-D3H
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF18i:bd01/06/2014:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ77X-D3H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.: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: Gigabyte Technology Co., Ltd.

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

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


[Kernel-packages] [Bug 1555839] fozzie (i386) - tests ran: 153, failed: 0

2016-03-11 Thread Brad Figg
tests ran: 153, failed: 0;
  
http://kernel.ubuntu.com/testing/3.13.0-83.127/fozzie__3.13.0-83.127__2016-03-11_23-31-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555839

Title:
  linux: 3.13.0-83.127 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

Bug description:
  This bug is for tracking the 3.13.0-83.127 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:39 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 07:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 07:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:03 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555839/+subscriptions

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


[Kernel-packages] [Bug 1552504] Re: clicking noise on acer 131t-c1yf

2016-03-11 Thread bhikkhu subhuti
Version 1.09 fixed my booting problems as expected.
Legacy booting of usb still does not work.  It did before.
I will double check and make another stick using ubuntu 15.10
And then once again with universal installer.
I read that older casters do not work.
In any case that is a side issue.  I could not boot with the NEWER "more secure 
less buggy bios."

I still have an ubuntu 15.10 sd with rc7  
Let me know what the sound is.
Then...
I can install another daily if you want.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1552504

Title:
  clicking noise on acer 131t-c1yf

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  My machine is solid state.
  I updated the intel graphics driver
  I update a few days ago via ubuntu udpater

  There is a subtle clicking noise coming near from the usb port.  The machine 
is solid state and the ubuntu is running from the sd card  The noise happnes 
with usb live boot too.
  The mint 17 usb makes the noise too and then warns me that that the graphics 
gpu will not be used and then the clicking stops.
   
  Lubuntu installed on top of ubuntu still makes the noise.
  Lubuntu live usb does NOT make the noise.
  Windows 10 does not make the noise.

  I suspect compiz, but ultimately I think it is a kernal problem.
  I suspect this is a CherryView Bug.

  
  This bug has been reported on ubuntu forums and ask ubuntu and no responses.
  I will be switching to Lubuntu in a few days unless I hear back from you.  I 
am technical and willing to help.

  
  Bhikkhu Subhuti

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-27-generic 4.2.0-27.32
  ProcVersionSignature: Ubuntu 4.2.0-27.32-generic 4.2.8-ckt1
  Uname: Linux 4.2.0-27-generic x86_64
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bksubhuti   1067 F pulseaudio
  CurrentDesktop: Unity
  Date: Fri Mar  4 08:28:59 2016
  HibernationDevice: RESUME=UUID=709ea197-e6fb-428b-9c1f-4b258452b10c
  InstallationDate: Installed on 2016-02-04 (29 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: Acer Aspire R3-131T
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-27-generic.efi.signed 
root=UUID=ec51921a-2804-40c5-96f4-9597628656cb ro noprompt persistent quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-27-generic N/A
   linux-backports-modules-4.2.0-27-generic  N/A
   linux-firmware1.149.3
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/21/2015
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V1.09
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Aspire R3-131T
  dmi.board.vendor: Acer
  dmi.board.version: V1.09
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: V1.09
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.09:bd07/21/2015:svnAcer:pnAspireR3-131T:pvrV1.09:rvnAcer:rnAspireR3-131T:rvrV1.09:cvnAcer:ct10:cvrV1.09:
  dmi.product.name: Aspire R3-131T
  dmi.product.version: V1.09
  dmi.sys.vendor: Acer

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

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


[Kernel-packages] [Bug 1555839] dagmar (i386) - tests ran: 153, failed: 0

2016-03-11 Thread Brad Figg
tests ran: 153, failed: 0;
  
http://kernel.ubuntu.com/testing/3.13.0-83.127/dagmar__3.13.0-83.127__2016-03-11_23-10-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555839

Title:
  linux: 3.13.0-83.127 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

Bug description:
  This bug is for tracking the 3.13.0-83.127 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:39 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 07:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 07:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:03 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555839/+subscriptions

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


[Kernel-packages] [Bug 1553427] Re: [LENOVO S10-3] suspend/resume failure

2016-03-11 Thread Christopher M. Penalver
Jonathan Duff, in order to allow additional upstream developers to examine the 
issue, at your earliest convenience, could you please test the latest upstream 
kernel available from http://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D ? 
Please keep in mind the following:
1) The one to test is at the very top line at the top of the page (not the 
daily folder).
2) The release names are irrelevant.
3) The folder time stamps aren't indicative of when the kernel actually was 
released upstream.
4) Install instructions are available at 
https://wiki.ubuntu.com/Kernel/MainlineBuilds .

If testing on your main install would be inconvenient, one may:
1) Install Ubuntu to a different partition and then test this there.
2) Backup, or clone the primary install.

If the latest kernel did not allow you to test to the issue (ex. you couldn't 
boot into the OS) please make a comment in your report about this, and continue 
to test the next most recent kernel version until you can test to the issue. 
Once you've tested the upstream kernel, please comment on which kernel version 
specifically you tested. If this issue is fixed in the mainline kernel, please 
add the following tags by clicking on the yellow circle with a black pencil 
icon, next to the word Tags, located at the bottom of the report description:
kernel-fixed-upstream
kernel-fixed-upstream-X.Y-rcZ

Where X, and Y are the first two numbers of the kernel version, and Z is
the release candidate number if it exists.

If the mainline kernel does not fix the issue, please add the following tags:
kernel-bug-exists-upstream
kernel-bug-exists-upstream-X.Y-rcZ

Please note, an error to install the kernel does not fit the criteria of
kernel-bug-exists-upstream.

Also, you don't need to apport-collect further unless specifically
requested to do so.

Once testing of the latest upstream kernel is complete, please mark this
report Status Confirmed. Please let us know your results.

Thank you for your understanding.

** Changed in: linux (Ubuntu)
   Importance: Low => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553427

Title:
  [LENOVO S10-3] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  - goes to sleep and netbook indicator light flashes.
  - touch keyboard or mouse and it starts to resume.
  - goes to black screen with all indicator light but hard drive light on
  - hard drive light flashes once.
  - caps lock fails to light up and toggle
  conclusion:
  goes to a black screen and fails to resume.
  unresponsive in switching to virtual terminals or toggling caps lock light.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-9-generic 4.4.0-9.24
  ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  user   1660 F pulseaudio
  Date: Fri Mar  4 16:38:43 2016
  DuplicateSignature: suspend/resume:LENOVO S10-3:2ACN23WW
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=3cd1818a-c595-48c2-9604-a4c99101405f
  InstallationDate: Installed on 2016-02-27 (7 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  InterpreterPath: /usr/bin/python3.5
  MachineType: LENOVO S10-3
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=bc2bf6a8-2064-486f-beeb-bcd366e8ba2f ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-9-generic N/A
   linux-backports-modules-4.4.0-9-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [LENOVO S10-3] suspend/resume failure
  UpgradeStatus: Upgraded to xenial on 2016-02-28 (5 days ago)
  UserGroups:
   
  dmi.bios.date: 03/12/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 2ACN23WW
  dmi.board.name: Mariana3A
  dmi.board.vendor: Lenovo
  dmi.board.version: Rev 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Lenovo
  dmi.chassis.version: Rev 1.0
  dmi.modalias: 
dmi:bvnLENOVO:bvr2ACN23WW:bd03/12/2010:svnLENOVO:pnS10-3:pvrLenovo:rvnLenovo:rnMariana3A:rvrRev1.0:cvnLenovo:ct10:cvrRev1.0:
  dmi.product.name: S10-3
  dmi.product.version: Lenovo
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:

[Kernel-packages] [Bug 1555821] bantam (amd64) - tests ran: 194, failed: 0

2016-03-11 Thread Brad Figg
tests ran: 194, failed: 0;
  
http://kernel.ubuntu.com/testing/4.2.0-34.39/bantam__4.2.0-34.39__2016-03-11_21-25-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555821

Title:
  linux: 4.2.0-34.39 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Confirmed
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-34.39 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 21:44 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 22:04 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 09:27 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 09:27 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:01 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:01 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555821/+subscriptions

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


[Kernel-packages] [Bug 1555832] onibi (i386) - tests ran: 167, failed: 0

2016-03-11 Thread Brad Figg
tests ran: 167, failed: 0;
  
http://kernel.ubuntu.com/testing/3.19.0-56.62/onibi__3.19.0-56.62__2016-03-11_21-40-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555832

Title:
  linux: 3.19.0-56.62 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Vivid:
  Confirmed

Bug description:
  This bug is for tracking the 3.19.0-56.62 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:11 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 08:05 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 08:05 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:02 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:02 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:02 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:02 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:02 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555832/+subscriptions

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


[Kernel-packages] [Bug 1553427] Re: [LENOVO S10-3] suspend/resume failure

2016-03-11 Thread Jonathan Duff
My apologies Christopher, same behavior as before. Updating the BIOS (to
37) did not solve the issue. I am at your disposal if you would like me
to do further testing. :)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1553427

Title:
  [LENOVO S10-3] suspend/resume failure

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  - goes to sleep and netbook indicator light flashes.
  - touch keyboard or mouse and it starts to resume.
  - goes to black screen with all indicator light but hard drive light on
  - hard drive light flashes once.
  - caps lock fails to light up and toggle
  conclusion:
  goes to a black screen and fails to resume.
  unresponsive in switching to virtual terminals or toggling caps lock light.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-9-generic 4.4.0-9.24
  ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
  Uname: Linux 4.4.0-9-generic x86_64
  Annotation: This occurred during a previous suspend, and prevented the system 
from resuming properly.
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  user   1660 F pulseaudio
  Date: Fri Mar  4 16:38:43 2016
  DuplicateSignature: suspend/resume:LENOVO S10-3:2ACN23WW
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: suspend/resume
  HibernationDevice: RESUME=UUID=3cd1818a-c595-48c2-9604-a4c99101405f
  InstallationDate: Installed on 2016-02-27 (7 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  InterpreterPath: /usr/bin/python3.5
  MachineType: LENOVO S10-3
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=bc2bf6a8-2064-486f-beeb-bcd366e8ba2f ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-9-generic N/A
   linux-backports-modules-4.4.0-9-generic  N/A
   linux-firmware   1.156
  SourcePackage: linux
  Title: [LENOVO S10-3] suspend/resume failure
  UpgradeStatus: Upgraded to xenial on 2016-02-28 (5 days ago)
  UserGroups:
   
  dmi.bios.date: 03/12/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 2ACN23WW
  dmi.board.name: Mariana3A
  dmi.board.vendor: Lenovo
  dmi.board.version: Rev 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Lenovo
  dmi.chassis.version: Rev 1.0
  dmi.modalias: 
dmi:bvnLENOVO:bvr2ACN23WW:bd03/12/2010:svnLENOVO:pnS10-3:pvrLenovo:rvnLenovo:rnMariana3A:rvrRev1.0:cvnLenovo:ct10:cvrRev1.0:
  dmi.product.name: S10-3
  dmi.product.version: Lenovo
  dmi.sys.vendor: LENOVO

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

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


[Kernel-packages] [Bug 1556324] [NEW] /usr/lib/bluetooth/bluetoothd:11:encrypt_notify:g_main_dispatch:g_main_context_dispatch:g_main_context_iterate:g_main_loop_run

2016-03-11 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding bluez.  This problem was most recently seen with version
5.36-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/20c758a42f23b514e8bc98469a414de3ed9b727f
contains more details.

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


** Tags: wily xenial

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1556324

Title:
  
/usr/lib/bluetooth/bluetoothd:11:encrypt_notify:g_main_dispatch:g_main_context_dispatch:g_main_context_iterate:g_main_loop_run

Status in bluez package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding bluez.  This problem was most recently seen with version
  5.36-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/20c758a42f23b514e8bc98469a414de3ed9b727f
  contains more details.

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

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


[Kernel-packages] [Bug 1555839] fozzie (amd64) - tests ran: 180, failed: 2

2016-03-11 Thread Brad Figg
tests ran: 180, failed: 2;
  
http://kernel.ubuntu.com/testing/3.13.0-83.127/fozzie__3.13.0-83.127__2016-03-11_21-49-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555839

Title:
  linux: 3.13.0-83.127 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

Bug description:
  This bug is for tracking the 3.13.0-83.127 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:39 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 07:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 07:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:03 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555839/+subscriptions

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


[Kernel-packages] [Bug 1556297] Re: Vivid update to v3.19.8-ckt16 stable release

2016-03-11 Thread Kamal Mostafa
** Description changed:

- 
- SRU Justification
- 
- Impact:
-The upstream process for stable tree updates is quite similar
-in scope to the Ubuntu SRU process, e.g., each patch has to
-demonstrably fix a bug, and each patch is vetted by upstream
-by originating either directly from a mainline/stable Linux tree or
-a minimally backported form of that patch. The v3.19.8-ckt16 upstream 
stable
-patch set is now available. It should be included in the Ubuntu
-kernel as well.
- 
-git://kernel.ubuntu.com/ubuntu/linux.git
- 
- TEST CASE: TBD
- 
-The following patches from the v3.19.8-ckt16 stable release shall
+ SRU Justification
+ 
+ Impact:
+    The upstream process for stable tree updates is quite similar
+    in scope to the Ubuntu SRU process, e.g., each patch has to
+    demonstrably fix a bug, and each patch is vetted by upstream
+    by originating either directly from a mainline/stable Linux tree or
+    a minimally backported form of that patch. The v3.19.8-ckt16 upstream 
stable
+    patch set is now available. It should be included in the Ubuntu
+    kernel as well.
+ 
+    git://kernel.ubuntu.com/ubuntu/linux.git
+ 
+ TEST CASE: TBD
+ 
+    The following patches from the v3.19.8-ckt16 stable release shall
  be applied:
+ 
+ Linux 3.19.8-ckt16
+ pipe: limit the per-user amount of pages allocated in pipes
+ [media] exynos4-is: fix a format string bug
+ MAINTAINERS: Remove stale entry for BCM33xx chips
+ s390/stacktrace: fix address ranges for asynchronous and panic stack
+ ARM: dts: kirkwood: use unique machine name for ds112
+ netlink: not trim skb for mmaped socket when dump
+ net: phy: bcm7xxx: Fix 40nm EPHY features
+ net: phy: Avoid polling PHY with PHY_IGNORE_INTERRUPTS
+ net: phy: fix PHY_RUNNING in phy_state_machine
+ net: phy: Fix phy_mac_interrupt()
+ af_unix: Don't set err in unix_stream_read_generic unless there was an error
+ s390/perf_event: fix address range for asynchronous stack
+ s390/oprofile: fix address range for asynchronous stack
+ net: phy: bcm7xxx: Fix bcm7xxx_config_init() check
+ net: phy: bcm7xxx: Fix shadow mode 2 disabling
+ sctp: Fix port hash table size computation
+ unix_diag: fix incorrect sign extension in unix_lookup_by_ino
+ rtnl: RTM_GETNETCONF: fix wrong return value
+ route: check and remove route cache when we get route
+ pppoe: fix reference counting in PPPoE proxy
+ net/mlx4_en: Avoid changing dev->features directly in run-time
+ net/mlx4_en: Choose time-stamping shift value according to HW frequency
+ net/mlx4_en: Count HW buffer overrun only once
+ qmi_wwan: add "4G LTE usb-modem U901"
+ af_unix: Guard against other == sk in unix_dgram_sendmsg
+ ipv4: fix memory leaks in ip_cmsg_send() callers
+ bonding: Fix ARP monitor validation
+ net: Copy inner L3 and L4 headers as unaligned on GRE TEB
+ flow_dissector: Fix unaligned access in __skb_flow_dissector when used by 
eth_get_headlen
+ sctp: translate network order to host order when users get a hmacid
+ tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs
+ net:Add sysctl_max_skb_frags
+ unix: correctly track in-flight fds in sending process user_struct
+ ipv6: fix a lockdep splat
+ ipv6: addrconf: Fix recursive spin lock call
+ net/ipv6: add sysctl option accept_ra_min_hop_limit
+ ipv6/udp: use sticky pktinfo egress ifindex on connect()
+ sctp: allow setting SCTP_SACK_IMMEDIATELY by the application
+ pptp: fix illegal memory access caused by multiple bind()s
+ af_unix: fix struct pid memory leak
+ tcp: fix NULL deref in tcp_v4_send_ack()
+ net: dp83640: Fix tx timestamp overflow handling.
+ af_iucv: Validate socket address length in iucv_sock_bind()
+ target: Fix race with SCF_SEND_DELAYED_TAS handling
+ target: Fix remote-port TMR ABORT + se_cmd fabric stop
+ target: Fix TAS handling for multi-session se_node_acls
+ target: Fix LUN_RESET active I/O handling for ACK_KREF
+ target: Remove first argument of target_{get,put}_sess_cmd()
+ target: Remove the unused flag SCF_ACK_KREF
+ do_last(): don't let a bogus return value from ->open() et.al. to confuse us
+ hpfs: don't truncate the file when delete fails
+ mm: thp: fix SMP race condition between THP page fault and MADV_DONTNEED
+ x86/mpx: Fix off-by-one comparison with nr_registers
+ ALSA: hda - Fix headset support and noise on HP EliteBook 755 G2
+ KVM: x86: MMU: fix ubsan index-out-of-range warning
+ ALSA: hda - Fixing background noise on Dell Inspiron 3162
+ libceph: use the right footer size when skipping a message
+ libceph: don't bail early from try_read() when skipping a message
+ tracing: Fix showing function event in available_events
+ KVM: async_pf: do not warn on page allocation failures
+ KVM: arm/arm64: vgic: Ensure bitmaps are long enough
+ sunrpc/cache: fix off-by-one in qword_get()
+ s390/compat: correct restore of high gprs on signal return
+ can: ems_usb: Fix possible tx overflow
+ drivers: android: 

[Kernel-packages] [Bug 1518483] Re: problem with PIE binaries and kernels <= 3.19

2016-03-11 Thread Steve Beattie
Since it's not guaranteed that we'll ever get buildds booted into
kernels with the fix above, I'm proposing to disable -pie for bash. For
xenial, this will have no affect except for on s390x, as on all other
arches, pie is not the default anyway.

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

** Changed in: bash (Ubuntu Vivid)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1518483

Title:
  problem with PIE binaries and kernels <= 3.19

Status in bash package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Fix Released
Status in bash source package in Vivid:
  Invalid
Status in linux source package in Vivid:
  Fix Released

Bug description:
  When bash is built as a Position Independent Executable (PIE), it very
  sporadically crashes due to some issue with memory layout in kernels
  before 4.2. I'm currently testing enabling PIE by default in gcc on
  amd64 for xenial, and some of my builds (e.g. cpio) are failing in the
  buildds with the following message emitted:

bash: xmalloc: .././locale.c:81: cannot allocate 2 bytes (0 bytes
  allocated)

  when the bash that is used is built as PIE. I have seen these failures
  on buildds where the host is running 3.13 and 3.19. I am also able to
  reproduce this locally on a machine running trusty with the stock
  trusty kernel. However, when I boot that same machine with the linux-
  lts-wily (4.2) kernel and retry the build with everything else exactly
  the same, the failure disappears.

  I discussed this a bit with Kees Cook, and he noted that some cleanups
  to the kernel's ASLR code happened in 4.1. Specifically, he noted:

commit a87938b2e246b81b4fb713edb371a9fa3c5c3c86
Author: Michael Davidson 

  fs/binfmt_elf.c: fix bug in loading of PIE binaries
   
  However, that landed in stable and has been picked up in our kernels as 
668965be56ea0b2c45ed6bec84dc2088490ae6b1, landing in Ubuntu-3.13.0-56.93 and 
b51621abbcb4694b8d2842ce3a66006a60bba6e5 / Ubuntu-3.19.0-19.19.

  Kees also pointed out that he landed a series of patches from
  204db6ed17743000691d930368a5abd6ea541c58 until Michael Davidson's
  patch (i.e.
  
a87938b2e246b81b4fb713edb371a9fa3c5c3c86..204db6ed17743000691d930368a5abd6ea541c58
  ), and in particular, there's:

commit d1fd836dcf00d2028c700c7e44d2c23404062c90
Author: Kees Cook 

  mm: split ET_DYN ASLR from mmap ASLR
   
  Other fixes that I see to fs/binfmt_elf.c and arch/x86/mm/mmap.c look like 
they either occurred only in 4.3 or have already been backported via the stable 
kernels.

  I should also point out that these cleanups may address some of the
  ASLR failed tests that occur on non-x86 architectures for pre 4.2
  kernels.

  I am happy to test out kernels to try to address this. Thanks.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-68-generic 3.13.0-68.111
  ProcVersionSignature: Ubuntu 3.13.0-68.111-generic 3.13.11-ckt27
  Uname: Linux 3.13.0-68-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.18
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp', 
'/dev/snd/by-path', '/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/hwC0D1', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/pcmC0D1c', 
'/dev/snd/pcmC0D1p', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D3p', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  Date: Fri Nov 20 13:58:40 2015
  HibernationDevice: RESUME=UUID=dc63f523-507a-4f9d-aa30-a2e880199150
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: Shuttle Inc SG33
  ProcEnviron:
   SHELL=/bin/bash
   TERM=screen
   PATH=(custom, user)
   LANG=en_US.UTF-8
   XDG_RUNTIME_DIR=
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-68-generic 
root=UUID=d30e91cf-3c43-41a9-a72d-c07d1be1d53e ro loop.max_loop=64 
rootflags=data=ordered nomdmonddf nomdmonisw nomdmonddf nomdmonisw nomdmonddf 
nomdmonisw nomdmonddf nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-68-generic N/A
   linux-backports-modules-3.13.0-68-generic  N/A
   linux-firmware 1.127.18
  RfKill:
   
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: Upgraded to trusty on 2014-04-16 (583 days ago)
  WpaSupplicantLog:
   
  dmi.bios.date: 11/28/2007
  dmi.bios.vendor: Phoenix Technologies, LTD
  dmi.bios.version: 6.00 PG
  dmi.board.name: FG33
  dmi.board.vendor: Shuttle Inc
  dmi.board.version: V10
  dmi.chassis.type: 3
  dmi.chassis.vendor: Shuttle Inc
  dmi.chassis.version: G5
  dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd11/28/2007:svnShuttleInc:pnSG33:pvrV10:rvnShuttleInc:rnFG33:rvrV10:cvnShuttleInc:ct3:cvrG5:
  dmi.product.name: SG33
  dmi.product.version: V10
  dmi.sys.vendor: Shuttle Inc

To 

[Kernel-packages] [Bug 1556228] Re: HP Notebook Probook 440 G3 HDA Intel PCH horrible sounds while booting

2016-03-11 Thread Christopher M. Penalver
** Tags removed: 440 alsa g3 hda hp intel pch probook sound
** Tags added: latest-bios-1.07

** Changed in: linux (Ubuntu)
   Importance: Low => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1555839] dagmar (amd64) - tests ran: 180, failed: 1

2016-03-11 Thread Brad Figg
tests ran: 180, failed: 1;
  
http://kernel.ubuntu.com/testing/3.13.0-83.127/dagmar__3.13.0-83.127__2016-03-11_21-22-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1555839

Title:
  linux: 3.13.0-83.127 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  In Progress
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

Bug description:
  This bug is for tracking the 3.13.0-83.127 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 10. March 2016 22:39 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 10. March 2016 23:03 UTC
  kernel-stable-Prepare-package-end:Friday, 11. March 2016 07:06 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 11. March 2016 07:06 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Verification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Certification-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-start:Friday, 11. March 2016 12:03 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Friday, 11. March 2016 12:03 UTC
  kernel-stable-Security-signoff-end:Friday, 11. March 2016 18:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1555839/+subscriptions

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


[Kernel-packages] [Bug 1556247] dwalin (amd64) - tests ran: 66, failed: 1

2016-03-11 Thread Brad Figg
tests ran:  66, failed: 1;
  
http://kernel.ubuntu.com/testing/4.4.0-12.28/dwalin__4.4.0-12.28__2016-03-11_22-06-00/results-index.html

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556247

Title:
  linux: 4.4.0-13.29 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow automated-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  New
Status in Kernel Development Workflow prepare-package-meta series:
  New
Status in Kernel Development Workflow prepare-package-signed series:
  New
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in Kernel Development Workflow regression-testing series:
  New
Status in linux package in Ubuntu:
  New
Status in linux source package in Xenial:
  New

Bug description:
  This bug is for tracking the 4.4.0-13.29 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Friday, 11. March 2016 19:07 UTC
  kernel-phase-changed:Friday, 11. March 2016 19:07 UTC
  kernel-phase:Prepare
  kernel-stable-Promote-to-proposed-end:Friday, 11. March 2016 20:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1556247/+subscriptions

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


[Kernel-packages] [Bug 1556296] Re: usb-modeswitch doesn't support usb-modeswitch-data 20160112-1

2016-03-11 Thread Joseph Salisbury
** Package changed: linux (Ubuntu) => usb-modeswitch (Ubuntu)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556296

Title:
  usb-modeswitch doesn't support usb-modeswitch-data 20160112-1

Status in usb-modeswitch package in Ubuntu:
  New

Bug description:
  Hi, this is not a real bug, but it may be somehow annoying - there is
  a new version of usb-modeswitch-data (Proposed: 20160112-1), but the
  usb-modeswitch seems it doesn't work with this version so it cannot be
  upgraded. Thanks.

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

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


[Kernel-packages] [Bug 1556269] Re: Wily update to v4.2.8-ckt5 stable release

2016-03-11 Thread Kamal Mostafa
** Changed in: linux (Ubuntu Wily)
   Status: New => Fix Committed

** Changed in: linux (Ubuntu Wily)
 Assignee: (unassigned) => Kamal Mostafa (kamalmostafa)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556269

Title:
  Wily update to v4.2.8-ckt5 stable release

Status in linux package in Ubuntu:
  New
Status in linux source package in Wily:
  Fix Committed

Bug description:
  SRU Justification

  Impact:
     The upstream process for stable tree updates is quite similar
     in scope to the Ubuntu SRU process, e.g., each patch has to
     demonstrably fix a bug, and each patch is vetted by upstream
     by originating either directly from a mainline/stable Linux tree or
     a minimally backported form of that patch. The v4.2.8-ckt5 upstream 
stable
     patch set is now available. It should be included in the Ubuntu
     kernel as well.

     git://kernel.ubuntu.com/ubuntu/linux.git

  TEST CASE: TBD

     The following patches from the v4.2.8-ckt5 stable release shall
  be applied:

  Linux 4.2.8-ckt5
  pipe: limit the per-user amount of pages allocated in pipes
  netfilter: nfnetlink: correctly validate length of batch messages
  net: phy: bcm7xxx: Fix 40nm EPHY features
  net: phy: Avoid polling PHY with PHY_IGNORE_INTERRUPTS
  net: phy: Fix phy_mac_interrupt()
  s390/oprofile: fix address range for asynchronous stack
  net: phy: bcm7xxx: Fix bcm7xxx_config_init() check
  bonding: don't use stale speed and duplex information
  writeback: initialize inode members that track writeback history
  net: phy: bcm7xxx: Fix shadow mode 2 disabling
  net/mlx4_core: Fix potential corruption in counters database
  [media] exynos4-is: fix a format string bug
  MAINTAINERS: Remove stale entry for BCM33xx chips
  s390/stacktrace: fix address ranges for asynchronous and panic stack
  ARM: dts: kirkwood: use unique machine name for ds112
  Input: xpad - remove unused function
  netlink: not trim skb for mmaped socket when dump
  af_unix: Don't set err in unix_stream_read_generic unless there was an error
  batman-adv: Avoid endless loop in bat-on-bat netdevice check
  s390/perf_event: fix address range for asynchronous stack
  net/mlx4_core: Do not BUG_ON during reset when PCI is offline
  sctp: Fix port hash table size computation
  unix_diag: fix incorrect sign extension in unix_lookup_by_ino
  rtnl: RTM_GETNETCONF: fix wrong return value
  route: check and remove route cache when we get route
  pppoe: fix reference counting in PPPoE proxy
  l2tp: Fix error creating L2TP tunnels
  net/mlx4_en: Avoid changing dev->features directly in run-time
  net/mlx4_en: Choose time-stamping shift value according to HW frequency
  net/mlx4_en: Count HW buffer overrun only once
  qmi_wwan: add "4G LTE usb-modem U901"
  af_unix: Guard against other == sk in unix_dgram_sendmsg
  ipv4: fix memory leaks in ip_cmsg_send() callers
  bonding: Fix ARP monitor validation
  bpf: fix branch offset adjustment on backjumps after patching ctx expansion
  net: Copy inner L3 and L4 headers as unaligned on GRE TEB
  flow_dissector: Fix unaligned access in __skb_flow_dissector when used by 
eth_get_headlen
  sctp: translate network order to host order when users get a hmacid
  tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs
  net:Add sysctl_max_skb_frags
  unix: correctly track in-flight fds in sending process user_struct
  ipv6: fix a lockdep splat
  ipv6: addrconf: Fix recursive spin lock call
  net/ipv6: add sysctl option accept_ra_min_hop_limit
  ipv6/udp: use sticky pktinfo egress ifindex on connect()
  ipv6: enforce flowi6_oif usage in ip6_dst_lookup_tail()
  tcp: beware of alignments in tcp_get_info()
  switchdev: Require RTNL mutex to be held when sending FDB notifications
  sctp: allow setting SCTP_SACK_IMMEDIATELY by the application
  pptp: fix illegal memory access caused by multiple bind()s
  af_unix: fix struct pid memory leak
  tcp: fix NULL deref in tcp_v4_send_ack()
  net: dp83640: Fix tx timestamp overflow handling.
  af_iucv: Validate socket address length in iucv_sock_bind()
  do_last(): ELOOP failure exit should be done after leaving RCU mode
  should_follow_link(): validate ->d_seq after having decided to follow
  namei: ->d_inode of a pinned dentry is stable only for positives
  do_last(): don't let a bogus return value from ->open() et.al. to confuse us
  hpfs: don't truncate the file when delete fails
  ocfs2: unlock inode if deleting inode from orphan fails
  mm: thp: fix SMP race condition between THP page fault and MADV_DONTNEED
  x86/mpx: Fix off-by-one comparison with nr_registers
  ALSA: hda - Loop interrupt handling until really cleared
  ALSA: hda - Fix headset support and noise on HP EliteBook 755 G2
  ALSA: hda - Fixup speaker pass-through control for nid 0x14 on ALC225
  ALSA: hda/realtek - Support Dell headset mode for ALC225
  

[Kernel-packages] [Bug 1556297] [NEW] Vivid update to v3.19.8-ckt16 stable release

2016-03-11 Thread Kamal Mostafa
Public bug reported:


SRU Justification

Impact:
   The upstream process for stable tree updates is quite similar
   in scope to the Ubuntu SRU process, e.g., each patch has to
   demonstrably fix a bug, and each patch is vetted by upstream
   by originating either directly from a mainline/stable Linux tree or
   a minimally backported form of that patch. The v3.19.8-ckt16 upstream 
stable
   patch set is now available. It should be included in the Ubuntu
   kernel as well.

   git://kernel.ubuntu.com/ubuntu/linux.git

TEST CASE: TBD

   The following patches from the v3.19.8-ckt16 stable release shall
be applied:

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

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


** Tags: kernel-stable-tracking-bug

** Tags added: kernel-stable-tracking-bug

** Also affects: linux (Ubuntu Vivid)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556297

Title:
  Vivid update to v3.19.8-ckt16 stable release

Status in linux package in Ubuntu:
  New
Status in linux source package in Vivid:
  New

Bug description:
  
  SRU Justification

  Impact:
 The upstream process for stable tree updates is quite similar
 in scope to the Ubuntu SRU process, e.g., each patch has to
 demonstrably fix a bug, and each patch is vetted by upstream
 by originating either directly from a mainline/stable Linux tree or
 a minimally backported form of that patch. The v3.19.8-ckt16 upstream 
stable
 patch set is now available. It should be included in the Ubuntu
 kernel as well.

 git://kernel.ubuntu.com/ubuntu/linux.git

  TEST CASE: TBD

 The following patches from the v3.19.8-ckt16 stable release
  shall be applied:

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

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


[Kernel-packages] [Bug 1556264] Re: [Hyper-V] vmbus: Fix a bug in hv_need_to_signal_on_read()

2016-03-11 Thread Joseph Salisbury
I can submit an SRU request for each release once we have testing
feedback.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556264

Title:
  [Hyper-V] vmbus: Fix a bug in hv_need_to_signal_on_read()

Status in linux package in Ubuntu:
  In Progress
Status in linux-lts-vivid package in Ubuntu:
  In Progress
Status in linux source package in Trusty:
  In Progress
Status in linux-lts-vivid source package in Trusty:
  In Progress
Status in linux source package in Wily:
  In Progress
Status in linux source package in Xenial:
  In Progress

Bug description:
  The following patch has been submitted upstream in response to
  investigation of customer issues with network connections hanging
  under high load.

  On the consumer side, we have interrupt driven flow management of the
  producer. It is sufficient to base the signalling decision on the
  amount of space that is available to write after the read is complete.
  The current code samples the previous available space and uses this in
  making the signalling decision. This state can be stale and is
  unnecessary. Since the state can be stale, we end up not signalling
  the host (when we should) and this can result in a hang. Fix this
  problem by removing the unnecessary check.

  I would like to thank Arseney Romanenko 
  for pointing out this bug.

  Signed-off-by: K. Y. Srinivasan 
  Tested-by: Dexuan Cui 
  Cc: 
  ---
   drivers/hv/ring_buffer.c |7 +++
   1 files changed, 3 insertions(+), 4 deletions(-)

  diff --git a/drivers/hv/ring_buffer.c b/drivers/hv/ring_buffer.c
  index 5613e2b..085003a 100644
  --- a/drivers/hv/ring_buffer.c
  +++ b/drivers/hv/ring_buffer.c
  @@ -103,8 +103,7 @@ static bool hv_need_to_signal(u32 old_write, struct 
hv_ring_buffer_info *rbi)
*there is room for the producer to send the pending packet.
*/

  -static bool hv_need_to_signal_on_read(u32 prev_write_sz,
  - struct hv_ring_buffer_info *rbi)
  +static bool hv_need_to_signal_on_read(struct hv_ring_buffer_info *rbi)
   {
  u32 cur_write_sz;
  u32 r_size;
  @@ -120,7 +119,7 @@ static bool hv_need_to_signal_on_read(u32 prev_write_sz,
  cur_write_sz = write_loc >= read_loc ? r_size - (write_loc - 
read_loc) :
  read_loc - write_loc;

  -   if ((prev_write_sz < pending_sz) && (cur_write_sz >= pending_sz))
  +   if (cur_write_sz >= pending_sz)
  return true;

  return false;
  @@ -455,7 +454,7 @@ int hv_ringbuffer_read(struct hv_ring_buffer_info 
*inring_info,
  /* Update the read index */
  hv_set_next_read_location(inring_info, next_read_location);

  -   *signal = hv_need_to_signal_on_read(bytes_avail_towrite, inring_info);
  +   *signal = hv_need_to_signal_on_read(inring_info);

  return ret;
   }

  We have customers who are encountering this issue. Although this patch
  is not yet accepted upstream, we would like to get them a test kernel
  as soon as we can.

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

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


[Kernel-packages] [Bug 1556228] WifiSyslog.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596334/+files/WifiSyslog.txt

** Changed in: alsa-driver (Ubuntu)
   Status: New => Confirmed

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

-- 

[Kernel-packages] [Bug 1556228] CRDA.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1556228/+attachment/4596321/+files/CRDA.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] UdevDb.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1556228/+attachment/4596333/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] Re: HP Notebook Probook 440 G3 HDA Intel PCH horrible sounds while booting

2016-03-11 Thread svennnnn
i dont know if it helps but i have managed to get sound using opensuse
leap 42.1 with the exact same workaround, but also had these terrible
sound shutting down/restarting or starting ubuntu/opensuse. i can even
make a video to show when the sounds will  appear, but i will highly
doubt that they will sound as terrifying as in "real life".

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

To manage notifications about this bug go to:

[Kernel-packages] [Bug 1556228] IwConfig.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596323/+files/IwConfig.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] RfKill.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1556228/+attachment/4596332/+files/RfKill.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] CurrentDmesg.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596322/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] ProcEnviron.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596328/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] PulseList.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596331/+files/PulseList.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] ProcModules.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596330/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] ProcInterrupts.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596329/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

[Kernel-packages] [Bug 1556228] ProcCpuinfo.txt

2016-03-11 Thread svennnnn
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1556228/+attachment/4596327/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1556228

Title:
  HP Notebook Probook 440 G3  HDA Intel PCH horrible sounds while
  booting

Status in alsa-driver package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  At first there was no native recognition of my sound driver (see this [ 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1525554 ] a lot of 
others a experiencing this problem)
  so there was a workaround to fix that, the notebook has sound output now, but 
ever since i got these horrible scratching noises while booting, which i dont 
have booting windows, which is kinda surprising while one could take it for a 
bios or hardware problem.

  basic workaround for fixing missing sound driver was adding two lines to the 
/etc/modprobe.d/alsa-base.conf
  options snd-hda-intel single_cmd=1
  options snd-hda-intel probe_mask=1

  with these lines a was able to get sound, but i then have these crazy
  noises while booting.

  the following are some lines from the terminal which might help:

  'lsb_release -rd'
  Ubuntu 15.10

  cat /proc/asound/version
  Advanced Linux Sound Architecture Driver Version k4.2.0-30-generic.

  uname -a
  Linux 15 4.2.0-27-generic #32-Ubuntu SMP Fri Jan 22 04:49:08 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  lspci -v | grep -A7 -i "audio"
  00:1f.3 Multimedia audio controller: Intel Corporation Device 9d70 (rev 21)
   Subsystem: Hewlett-Packard Company Device 8100
   Flags: bus master, fast devsel, latency 64, IRQ 16
   Memory at c132 (64-bit, non-prefetchable) [size=16K]
   Memory at c131 (64-bit, non-prefetchable) [size=64K]
   Capabilities: 
   Kernel driver in use: snd_hda_intel

  lsmod | grep snd
  snd_hda_codec_hdmi 49152 1
  snd_hda_intel 36864 2
  snd_hda_codec 135168 2 snd_hda_codec_hdmi,snd_hda_intel
  snd_hda_core 65536 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
  snd_hwdep 16384 1 snd_hda_codec
  snd_pcm 106496 4 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_core
  snd_seq_midi 16384 0
  snd_seq_midi_event 16384 1 snd_seq_midi
  snd_rawmidi 32768 1 snd_seq_midi
  snd_seq 69632 2 snd_seq_midi_event,snd_seq_midi
  snd_seq_device 16384 3 snd_seq,snd_rawmidi,snd_seq_midi
  snd_timer 32768 2 snd_pcm,snd_seq
  snd 81920 13 
snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device
  soundcore 16384 1 snd

  cat /proc/asound/cards
   0 [PCH ]: HDA-Intel - HDA Intel PCH
    HDA Intel PCH at 0xc132 irq 129

  even adding the right driver and module into /etc/modules (like snd-
  hda-intel model=PCH index=0) did not work, like i found in this thread
  ( https://wiki.ubuntuusers.de/Soundkarten_konfigurieren/ ) sorry for
  the german thread.

  i dont know what to add anymore. feel free to ask.
  --- 
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1613 F pulseaudio
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 15.10
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=80c72696-84ee-47f5-8764-86ed7ccd8bf2
  InstallationDate: Installed on 2016-02-18 (22 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: HP HP ProBook 440 G3
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic 
root=UUID=9c79ccaf-65c6-40d6-a2a8-16d77841af74 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-30.36-generic 4.2.8-ckt3
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-30-generic N/A
   linux-backports-modules-4.2.0-30-generic  N/A
   linux-firmware1.149.3
  Tags:  wily
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/25/2016
  dmi.bios.vendor: HP
  dmi.bios.version: N78 Ver. 01.07
  dmi.board.name: 8100
  dmi.board.vendor: HP
  dmi.board.version: KBC Version 40.03
  dmi.chassis.asset.tag: 5CD5514XK5
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.modalias: 
dmi:bvnHP:bvrN78Ver.01.07:bd01/25/2016:svnHP:pnHPProBook440G3:pvr:rvnHP:rn8100:rvrKBCVersion40.03:cvnHP:ct10:cvr:
  dmi.product.name: HP ProBook 440 G3
  dmi.sys.vendor: HP

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

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

  1   2   3   4   >