display/monitor settings not persistent

Bug #565305 reported by marijus
28
This bug affects 5 people
Affects Status Importance Assigned to Milestone
linux (Ubuntu)
Expired
Undecided
Unassigned
Nominated for Lucid by Carey

Bug Description

i'm using an external 19" display with an asus eeepc 1000h with Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03).

i need to switch off the internal eeepc display and use just the external display... since the update to kernel 2.6.32-16 and until now this setting is beeing disregarded...
after login the internal monitor switches off as expected but after some seconds it switches on again...
on each login i have to manualy turn off the eeepc display again...

starting totem, executing xrandr in terminal or restarting compiz again resets the displays...

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: linux-image-2.6.32-21-generic 2.6.32-21.32
Regression: Yes
Reproducible: Yes
ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-21-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
AplayDevices:
 **** List of PLAYBACK Hardware Devices ****
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: i386
ArecordDevices:
 **** List of CAPTURE Hardware Devices ****
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USER PID ACCESS COMMAND
 /dev/snd/controlC0: mario 1309 F.... pulseaudio
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not found.
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf7eb8000 irq 16'
   Mixer name : 'Realtek ALC269'
   Components : 'HDA:10ec0269,1043831a,00100004'
   Controls : 12
   Simple ctrls : 7
Date: Sat Apr 17 12:20:11 2010
HibernationDevice: RESUME=UUID=cd6163c9-2167-4b29-8d09-a845b13b28e2
InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta i386 (20100406.1)
MachineType: ASUSTeK Computer INC. 1000H
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-21-generic root=UUID=5cedbe85-1874-42d5-a46d-0acab9729e18 ro quiet splash
ProcEnviron:
 LANG=de_AT.utf8
 SHELL=/bin/bash
RelatedPackageVersions: linux-firmware 1.34
SourcePackage: linux
StagingDrivers: rt2860sta
Title: [STAGING]
dmi.bios.date: 02/18/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1701
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 1000H
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x00000000
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTek Computer INC.
dmi.chassis.version: x.x
dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1701:bd02/18/2009:svnASUSTeKComputerINC.:pn1000H:pvrx.x:rvnASUSTeKComputerINC.:rn1000H:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x:
dmi.product.name: 1000H
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.

Revision history for this message
marijus (marijus73) wrote :
marijus (marijus73)
affects: linux (Ubuntu) → xrandr (Ubuntu)
affects: xrandr (Ubuntu) → linux (Ubuntu)
description: updated
marijus (marijus73)
description: updated
Revision history for this message
Carey (carey) wrote :

I can confirm this bug.

In addition to the above, I have found the displays also reset every time the screensaver comes on. In the course of a day I am finding myself reconfiguring my displays in upwards of 50 times a day. Bug did not exist in 9.10 (display settings were indeed remembered correctly and were not reset).

Revision history for this message
Carey (carey) wrote :

Shouldn't this bug have an importance of High at least? Many people will need to be able to save monitor changes, it's a basic ability of a desktop since at least Windows 95 times.

I have just searched and it seems there appears to be a number of other reports of this same problem:

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/566683 (same)
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/562468 (same effect, perhaps different cause)
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/551475 (similar)
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/550592 (same)

Carey (carey)
Changed in linux (Ubuntu):
status: New → Confirmed
Revision history for this message
Carey (carey) wrote :

I've just noticed that this bug and the duplicate both have Asus eeePC's... so do I, an Asus 1000HE with an Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03), same as the reporter. Maybe this bug is particular to these Intel graphic chips? Although as above there are also people with AMD and nVidia cards that seem to be experiencing similar problems with the display settings not being saved, so I'm not sure.

P.S.: Still occurring with latest Lucid updates as of April 26th.

Revision history for this message
omriasta (omriasta) wrote :

Those interested, I posted a workaround on my bug report. I will post here so you can work in the meantime!
using the following script in /etc/X11/Xsession.d/45custom_xrandr_settings:
Code:

EXTERNAL_OUTPUT="VGA1"
INTERNAL_OUTPUT="LVDS1"

xrandr |grep $EXTERNAL_OUTPUT | grep " connected "
if [ $? -eq 0 ]; then
    xrandr --output $INTERNAL_OUTPUT --off --output $EXTERNAL_OUTPUT --auto
else
    xrandr --output $INTERNAL_OUTPUT --auto --output $EXTERNAL_OUTPUT --off
fi

What the script does is disable my LVDS display when I connect the external monitor.

Revision history for this message
marijus (marijus73) wrote :

@omarista
ty, this one makes life easier again...

Revision history for this message
marijus (marijus73) wrote :

this bug seems to be solved for me if using xorg-edgers repository and kernel 2.6.34 based on rc6 from this repo...
can anyone confirm?

tags: removed: regression-potential
Revision history for this message
penalvch (penalvch) wrote :

marijus, this bug was reported a while ago and there hasn't been any activity in it recently. We were wondering if this is still an issue? If so, could you please test for this with the latest development release of Ubuntu? ISO images are available from http://cdimage.ubuntu.com/daily-live/current/ .

If it remains an issue, could you please run the following command in the development release from a Terminal (Applications->Accessories->Terminal), as it will automatically gather and attach updated debug information to this report:

apport-collect -p linux <replace-with-bug-number>

Also, could you please test the latest upstream kernel available following https://wiki.ubuntu.com/KernelMainlineBuilds ? It will allow additional upstream developers to examine the issue. Please do not test the daily folder, but the one all the way at the bottom. Once you've tested the upstream kernel, please comment on which kernel version specifically you tested. If this bug is fixed in the mainline kernel, please add the following tags:
kernel-fixed-upstream
kernel-fixed-upstream-VERSION-NUMBER

where VERSION-NUMBER is the version number of the kernel you tested. For example:
kernel-fixed-upstream-v3.11-rc5

This can be done by clicking on the yellow circle with a black pencil icon next to the word Tags located at the bottom of the bug description. As well, please remove the tag:
needs-upstream-testing

If the mainline kernel does not fix this bug, please add the following tags:
kernel-bug-exists-upstream
kernel-bug-exists-upstream-VERSION-NUMBER

As well, please remove the tag:
needs-upstream-testing

If you are unable to test the mainline kernel, please comment as to why specifically you were unable to test it and add the following tags:
kernel-unable-to-test-upstream
kernel-unable-to-test-upstream-VERSION-NUMBER

Once testing of the upstream kernel is complete, please mark this bug's Status as Confirmed. Please let us know your results. Thank you for your understanding.

tags: added: bios-outdated-2204
Changed in linux (Ubuntu):
status: Confirmed → Incomplete
Revision history for this message
Launchpad Janitor (janitor) wrote :

[Expired for linux (Ubuntu) because there has been no activity for 60 days.]

Changed in linux (Ubuntu):
status: Incomplete → Expired
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.