similar to: Why report LVDS as disconnected when lid is closed?

Displaying 20 results from an estimated 2000 matches similar to: "Why report LVDS as disconnected when lid is closed?"

2010 Feb 26
1
module parameter description fix
I found a bug in the nouveau kernel module. It looks like a cut and paste error on the definitions of some module parameters in nouveau_drv.c. The bug exhibits when displaying module parameter information with the modinfo utility. Here's a patch: diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.c b/drivers/gpu/drm/nouveau/nouveau_drv.c index da3b93b..874adf5 100644 ---
2010 Jan 26
1
[PATCH] drm/nouveau: Add module options to disable acceleration.
noaccel=1 disables all acceleration and doesn't even attempt initialising PGRAPH+PFIFO, nofbaccel=1 only makes fbcon unaccelerated. Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net> --- drivers/gpu/drm/nouveau/nouveau_drv.c | 8 +++++++ drivers/gpu/drm/nouveau/nouveau_drv.h | 2 + drivers/gpu/drm/nouveau/nouveau_fbcon.c | 10 ++++++--
2015 Dec 11
1
no longer goes to standby when lid is closed
On Fri, Dec 11, 2015 at 03:42:21PM +0000, Richard wrote: > > > > Date: Friday, December 11, 2015 10:29:20 -0500 > > From: Fred Smith <fredex at fcshome.stoneham.ma.us> > > > > since I got the big bolus of updates from the CR repo a few days > > ago my netbook (AcerAspire One D255E) will no longer go to standby > > when the lid is closed. > >
2017 Mar 02
3
Laptop turns off after lid closed Centos6
Folks I have a laptop which i am using temporarily as a test server. It is permanently plugged in. It is running Centos 6, command line only. In the past, I could close the lid, thereby turning off the display, but not turning off the machine. It remained running indefinitely. A recent update (this past week) changed that behavior. Now, when I close the lid, the laptop turns itself off
2015 Dec 11
1
no longer goes to standby when lid is closed
On Fri, Dec 11, 2015 at 03:40:27PM +0000, Nux! wrote: > I've heard this happening to someone on IRC, the solution if I remember correctly is to update MATE from epel-testing. > See if that works for you. > > -- > Sent from the Delta quadrant using Borg technology! > > Nux! > www.nux.ro thanks, Nux. I've just installed allthe MATE packaages from epel testing, and
2016 Apr 10
1
[PATCH] module parameters: permissions as defines, readable to everyone
For the purposes of the module parameters, specifies the permissions of the corresponding files in sysfs in predefined S_I* form rather than in octal notation. Withal it makes the source code more consistent. Moreover, because all parameters are readable to everyone, it is more user-friendly. $ grep S_IRUGO include/linux/stat.h #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH) $ grep
2015 Dec 11
4
no longer goes to standby when lid is closed
since I got the big bolus of updates from the CR repo a few days ago my netbook (AcerAspire One D255E) will no longer go to standby when the lid is closed. This was a Gnome desktopp installation with theh MATE desktop fromm EPEL. I've verified that the correct setting still exists in power manager but it persists in continuing to run when the lid closes. it WILL go to standby if explicitly
2017 Mar 02
1
Laptop turns off after lid closed Centos6
At 07:16 AM 3/2/2017, Leon Fauster wrote: > > Am 02.03.2017 um 16:08 schrieb david <david at daku.org>: > > > > Folks > > > > I have a laptop which i am using temporarily as a test > server. It is permanently plugged in. It is running Centos 6, > command line only. In the past, I could close the lid, thereby > turning off the display, but not
2015 Oct 13
2
Preventing laptop from sleeping when lid closed?
How can I prevent the laptop from sleeping when the lid is closed. I tried messing with the settings in gnome-power-preferences but that doesn't seem to prevent it when no one is logged in. Any suggestions? Thanks, Dave
2010 Jan 05
1
Assertion failure in gallium on nv50
I upgraded mesa, libdrm, xf86-video-nouveau and the DRM module to latest git recently (previously I had git versions from Dec 22). Now, when I try to run a simple GL program with the DRI driver, it fails: glxgears: /usr/include/nouveau/nouveau_pushbuf.h:135: BIND_RING: Assertion `0' failed. The old, previously working build of mesa and the DRI driver also failed, which makes me think the
2015 Jun 08
2
Problem with GT218 (GeForce GT210)
Hello, I'm facing issues with a Point of View GT210/218 and nouveau drivers. I'm using ubuntu server with LXDE on top of it... *lshw -c video* output: *-display description: VGA compatible controller product: GT218 [GeForce 210] vendor: NVIDIA Corporation physical id: 0 bus info: pci at 0000:01:00.0 version: a2 width: 64 bits clock:
2008 Apr 08
1
How to get status of notebook lid?
Hello, I am using CentOS 5.1 on a toshiba tecra 8000 notebook. That works great so far. The only thing I could not realize is to shutdown the notebook if closing the lid. Therefor I need the current status (open or close) of the lid, but I don't know how. Is there any way to get this status, maybe under /proc/ or by some command? [root at beutelsend ~]# uname -a Linux beutelsend
2010 Feb 24
35
[Bug 26733] New: Full-screen XV causes graphics lockup
http://bugs.freedesktop.org/show_bug.cgi?id=26733 Summary: Full-screen XV causes graphics lockup Product: xorg Version: git Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy:
2017 Dec 05
2
Switch off laptop screen when docked with lid close - CentOS 7
Hi, I'm using CentOS on a laptop that part of the time is connected to a docking station with two monitor connected to it. When the laptop lid is docked, its lid is closed, as the system is placed in a position where it's not convenient to keep it open, let alone look at the screen. Now in the past, with CentOS 5 (on a different laptop, but same physical config) and 6, the screen has
2009 Nov 24
3
[Bug 25260] New: Screen corruption in top left corner on NV50
http://bugs.freedesktop.org/show_bug.cgi?id=25260 Summary: Screen corruption in top left corner on NV50 Product: xorg Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: major Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2016 Aug 02
0
[PATCH 0204/1285] Replace numeric parameter like 0444 with macro
I find that the developers often just specified the numeric value when calling a macro which is defined with a parameter for access permission. As we know, these numeric value for access permission have had the corresponding macro, and that using macro can improve the robustness and readability of the code, thus, I suggest replacing the numeric parameter with the macro. Signed-off-by: Chuansheng
2015 Oct 13
0
Re: Preventing laptop from sleeping when lid closed?
On Tue, 13 Oct 2015 18:12, Dave Johansen <davejohansen at ...> wrote: > How can I prevent the laptop from sleeping when the lid is closed. I tried > messing with the settings in gnome-power-preferences but that doesn't seem > to prevent it when no one is logged in. Any suggestions? > Thanks, > Dave With C7 that is caused by systemd. Somewhere in /etc/systemd/logind.conf
2015 Dec 11
0
no longer goes to standby when lid is closed
> Date: Friday, December 11, 2015 10:29:20 -0500 > From: Fred Smith <fredex at fcshome.stoneham.ma.us> > > since I got the big bolus of updates from the CR repo a few days > ago my netbook (AcerAspire One D255E) will no longer go to standby > when the lid is closed. > > This was a Gnome desktopp installation with theh MATE desktop fromm > EPEL. > > I've
2015 Dec 11
0
no longer goes to standby when lid is closed
I've heard this happening to someone on IRC, the solution if I remember correctly is to update MATE from epel-testing. See if that works for you. -- Sent from the Delta quadrant using Borg technology! Nux! www.nux.ro ----- Original Message ----- > From: "Fred Smith" <fredex at fcshome.stoneham.ma.us> > To: centos at centos.org > Sent: Friday, 11 December, 2015
2009 Jul 14
4
[Bug 22765] New: Nouveau KMS makes framebuffer consoles unusable on 9800M
http://bugs.freedesktop.org/show_bug.cgi?id=22765 Summary: Nouveau KMS makes framebuffer consoles unusable on 9800M Product: xorg Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at