[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2020-03-05 Thread haytham-med
This bug is seen in linux 5.3.0.40 but was not present in older kernels.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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

[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2017-07-29 Thread Jodie Robinson
This affects me on Elementary OS 0.4.1 on my Lenovo Thinkpad T410 with NVIDIA 
Corporation GT218M.
Driver 340.102. Also with the Intel Integrated Controller (rev 02).
uname -r: 4.4.0-87-generic

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

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

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

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2017-04-04 Thread Massimo Bacilieri
Hallo.

I tried the two scripts on my Acer E5-771 with nvidia card and Ubuntu 14.04, 
for I have the suspend trouble yet with 4.4.0-72 kernel (3.19 works flawlessy). 
I noticed in my /sys/devices/system/cpu/cpu0 there is no "online" file to set 
to 0 or 1; neither under cpu1, cpu2, cpu3.
So the suggested script simply does nothing, for it has no aim file to change.

An "online" file exists instead in /sys/devices/system/cpu/online, containing 
0-3 value.
The "offline" file contains instead 4-7.
I'm not sure it's this the file to redirect the script to... any suggestion?

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2017-02-12 Thread Christopher M. Penalver
vladimir (rosco23), it will help immensely if you filed a new report with 
Ubuntu, using the default repository kernel (not mainline/upstream/3rd party) 
via a terminal:
ubuntu-bug linux

Please feel free to subscribe me to it.

For more on why this is helpful, please see
https://wiki.ubuntu.com/ReportingBugs.

** Changed in: linux (Ubuntu)
 Assignee: vladimir (rosco23) => (unassigned)

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2017-01-21 Thread vladimir
Ok Acer E5-573-38T2 Broadwell i3-5005u ubuntu 16.04.1/16.10 going freeze and 
black screen after suspend, fan still spins, the power light is on and the 
battery is trained. This problem only when plug in, on battery or when charged 
works fine. For me works this 
https://wiki.archlinux.org/index.php/Acer_Aspire_E5-573
"suspending to RAM (S3 Sleep state) and hibernating to disk don't work when 
running on AC power. After debugging with 
https://www.kernel.org/doc/Documentation/power/basic-pm-debugging.txt culprit 
revealed to be the non-boot online cpus."

Create file:

$ sudo nano /lib/systemd/system-sleep/sleepcpu

put that script and save:

#!/bin/bash

case "$1" in
pre)
for c in /sys/devices/system/cpu/cpu*/online; do echo 0 >$c; done
;;
post)
for c in /sys/devices/system/cpu/cpu*/online; do echo 1 >$c; done
;;
esac

Save it, and:

$ sudo chmod +x /lib/systemd/system-sleep/sleepcpu


After that going to suspend perfect, but when wake up sometimes freeze. If you 
have this, make another script. 

$ sudo nano /lib/systemd/system-sleep/network

Put script:

!#/bin/bash

case "$1" in
  post)
sudo service network-manager restart
;;
esac

Save and

$ sudo chmod +x /lib/systemd/system-sleep/network

After that suspend on my acer work perfect, testing 20/20 all works.
Hope it helps.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2017-01-19 Thread vladimir
Same problem on Acer E5-573 ubuntu 16.04.1 kerner 4.4-4.10. In 14.04.1
kernel 3.x all works.

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => vladimir (rosco23)

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2017-01-15 Thread Tom V
I've reported https://bugs.launchpad.net/ubuntu/+source/linux-hwe-
edge/+bug/1656659 for my Dell XPS 9350 failing to wake from suspend.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-12-19 Thread Rondinelli Ribeiro
Same problem here, Acer Aspire V15 V3-575T-51Q8. Kernel 4.4.0-53, using
Sky Lake Integrated Graphics (Kernel modules: i915_bpo) - Intel HD
graphics 520.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-12-02 Thread Clark Barrenche
Same problem with Ubuntu Studio 1.6.01 with Dell 7559 laptop.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-11-10 Thread Massimo Bacilieri
The same here on a Acer E5-771 with nvidia card on Ubuntu 14.04.
Since updates gave 4.4.0 Kernel, the suspend is broken.

When I send to suspend, the suspend doesn't actually complete: the power led 
stays blue instead to turn to blink orange, and the computer freezes. No way to 
recover but completely kill it holding the power button and restart the system 
(it means you lose everything you were doing).
It's for sure a broken kernel, I reverted to an old 3.9 and the suspend works 
flawlessy.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-09-29 Thread Christopher M. Penalver
Slither (stephen-ohair), it will help immensely if you filed a new report with 
the Ubuntu repository kernel (not mainline/upstream) via a terminal:
ubuntu-bug linux

Please feel free to subscribe me to it.

For more on why this is helpful, please see
https://wiki.ubuntu.com/ReportingBugs.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-09-29 Thread Slither
I've also tried upgrading to kernel 4.6 as suggested in comment #58 and
still have the same problem.

$ uname -a
Linux NAS 4.6.0-040600-generic #201606100558 SMP Fri Jun 10 10:01:15 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-09-29 Thread Slither
I'm having the same issue as described in this bug.

$ uname -a
Linux NAS 4.4.0-38-generic #57-Ubuntu SMP Tue Sep 6 15:42:33 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-09-20 Thread Christopher M. Penalver
Bananabob, your best bet to get your problem addressed is to file a new report 
with the Ubuntu repository kernel (not mainline/upstream) via a terminal:
ubuntu-bug linux

Please feel free to subscribe me to it.

For more on why this is helpful, please see
https://wiki.ubuntu.com/ReportingBugs.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-09-19 Thread Bananabob
Just adding my name to the list HP Pavillion dv6

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-08-28 Thread Christopher M. Penalver
Andras Tim / Cristiano Gavião, it will help immensely if you filed a new report 
with the Ubuntu repository kernel (not mainline/upstream) via a terminal:
ubuntu-bug linux

Please feel free to subscribe me to it.

For more on why this is helpful, please see
https://wiki.ubuntu.com/ReportingBugs.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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

[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-08-21 Thread Cristiano Gavião
This issue is driven me crazy... every time my notebook Dell 15R 5537
suspend I have to power it off... even if with 4.4.0-36-generic

Please could some developer tell me if a fix will be release or if do I
really need to install 4.6 kernel?

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-08-18 Thread Andras Tim
A kernel upgrade was fixed my problem. I updated my Xenial kernel
(4.4.0-34.53) to the latest Yakkety kernel (4.6.3-040603.201606241434)

Installed .debs, what solves my problem:
* 
http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.6.3-yakkety/linux-headers-4.6.3-040603_4.6.3-040603.201606241434_all.deb
* 
http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.6.3-yakkety/linux-headers-4.6.3-040603-generic_4.6.3-040603.201606241434_amd64.deb
* 
http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.6.3-yakkety/linux-image-4.6.3-040603-generic_4.6.3-040603.201606241434_amd64.deb
* 
http://archive.ubuntu.com/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.160_all.deb

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-08-18 Thread Andras Tim
I have this problem on my Dell Latitude E5440 :/

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-30 Thread Marcelo Fernandez
I have a Dell Inspiron 14z and in my case, this is fixed with the last
4.4.0-28-generic kernel version too.

Thank you!

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-30 Thread Mauricio López
This bug was affecting me and got fixed after the kernel
4.4.0-28-generic upgrade. Working on a Lenovo ThinkPad-E550.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-24 Thread Christopher M. Penalver
Goddard, it will help immensely if you filed a new report with the Ubuntu 
repository kernel (not mainline/upstream) via a terminal:
ubuntu-bug linux

Please feel free to subscribe me to it.

For more on why this is helpful, please see
https://wiki.ubuntu.com/ReportingBugs.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-23 Thread Christopher M. Penalver
** Changed in: linux (Ubuntu)
   Status: Confirmed => Incomplete

** Changed in: linux (Ubuntu)
 Assignee: AboAlfadl (inf-00) => (unassigned)

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-23 Thread Goddard
stock 16.04 doesn't work, but the commands below solve the problem for
me on my Razer Blade 2015

cd /tmp
wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.6.2-yakkety/linux-headers-4.6.2-040602_4.6.2-040602.201606100516_all.deb
 \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.6.2-yakkety/linux-headers-4.6.2-040602-generic_4.6.2-040602.201606100516_amd64.deb
 \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.6.2-yakkety/linux-image-4.6.2-040602-generic_4.6.2-040602.201606100516_amd64.deb

sudo dpkg -i linux-headers-4.6*.deb linux-image-4.6*.deb

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-22 Thread Goddard
Razer Blade 2015 is also unable to suspend... was able to suspend
previously in 14.04

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-20 Thread AboAlfadl
** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => AboAlfadl (inf-00)

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-09 Thread Ismail Gjevori
I've submitted a more general bug here
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1589139. If you
want you can subscribe to this bug.

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-08 Thread Christopher M. Penalver
Daniel Holm, the next step is to fully reverse commit bisect from kernel
4.4 to 4.5.2 in order to identify the last bad commit, followed
immediately by the first good one. Once this good commit has been
identified, it may be reviewed for backporting. Could you please do this
following
https://wiki.ubuntu.com/Kernel/KernelBisection#How_do_I_reverse_bisect_the_upstream_kernel.3F
?

Please note, finding adjacent kernel versions is not fully commit
bisecting.

Also, the kernel release names are irrelevant for the purposes of
bisecting.

After the fix commit (not kernel version) has been identified, then
please mark this report Status Confirmed.

Thank you for your understanding.

Helpful bug reporting tips:
https://wiki.ubuntu.com/ReportingBugs

** Tags added: kernel-fixed-upstream kernel-fixed-upstream-4.5.2 needs-
reverse-bisect

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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


[Bug 1574125] Re: [Lenovo G50-70] suspend not working after upgrade

2016-06-08 Thread Daniel Holm
Christopher, I am currently running 4.5.2-040502-generic and suspend
works fine.

Thank you

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

Title:
  [Lenovo G50-70] suspend not working after upgrade

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

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