[Ubuntu-x-swat] [Bug 512192] Re: Can't configure Elan tech touchpad on Dell Inspiron 11z, Asus K7I0C and maybe also Dell Mini 10 (not V), ASUS k40in and Asus U81A.

2010-01-27 Thread oren
** Summary changed:

- Can't configure Elan tech touchpad on Dell Inspiron 11z, Asus K7I0C and maybe 
also ASUS k40in and Asus U81A.
+ Can't configure Elan tech touchpad on Dell Inspiron 11z, Asus K7I0C and maybe 
also Dell Mini 10 (not V), ASUS k40in and Asus U81A.

-- 
Can't configure Elan tech touchpad on Dell Inspiron 11z, Asus K7I0C and maybe 
also Dell Mini 10 (not V), ASUS k40in and Asus U81A.
https://bugs.launchpad.net/bugs/512192
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 317094] Re: meta bug to collect lshal touchscreen info

2010-01-27 Thread Prophet
I've added the evtouch_hal.out for the multitouch monitor iiyama ProLite
T2250MTS.

** Attachment added: evtouch_hal.out for iiyama ProLite T2250MTS
   http://launchpadlibrarian.net/38441499/evtouch_hal.out

-- 
meta bug to collect lshal touchscreen info
https://bugs.launchpad.net/bugs/317094
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-evtouch in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 312756] Re: support graphics card hot switch

2010-01-27 Thread Misi Mladoniczky
Fujitsu Amilo XI 3670

00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series 
Chipset Integrated Graphics Controller [8086:2a42] (rev 07)
01:00.0 VGA compatible controller [0300]: nVidia Corporation G96 [GeForce GT 
130M] [10de:0652] (rev a1)


** Attachment added: DSDT.dsl
   http://launchpadlibrarian.net/38441617/DSDT.dsl

-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


Re: [Ubuntu-x-swat] [Bug 484020] Re: [i845G] Display freezes (except for mouse pointer) without warning

2010-01-27 Thread Geir Ove Myhr
 Anyway, for now, are the three freezetestN kernels still in need of
 testing, or should I move on to the drivers in Brian Rogers' PPA?
 (Presumably with the latest mainline kernel?)

The kernels themselves do not need any more testing. We know now that
the change from freezetst8 to freezetest9 triggers the freezes for a
lot of people. You may still want to test them, since if you _don't_
see this behaviour, you are experiencing  a different underlying bug
from most other people, and we will have to make sure to treat it like
that.

You may follow Brian Rogers' PPA (not sure with which kernel, but at
least Karmic or newer), but there seems to be plenty of people
following that already. Once they narrow it down to a commit, there
should be two versions ready for testing (similar to the kernels
freezetest8 and freezetest9).

While Brian is homing in on the bad commit in libdrm or
xserver-xorg-video-intel, i have somewhat switched strategy and now
report any freeze bugs upstream once we have a batchbuffer dump from
Lucid with xorg-edgers and a new mainline kernel. That way upstream
will have several bug reports with the newest versions of the driver
stack. It seems that it is somewhat random if a batchbuffer dump is
able to catch the problematic code, so this should have some value
beyond making the problem more visible.

-- 
[i845G] Display freezes (except for mouse pointer) without warning
https://bugs.launchpad.net/bugs/484020
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 312756] Re: support graphics card hot switch

2010-01-27 Thread Albert Vilella
Hi all,

After inspecting the contents of 3 Fujitsu Amilo DSDT.dsl
tables we've got, it looks like the calls to switch on/off graphics card in this
laptop model are:

^^P0P2.PEGP._ON
^^P0P2.PEGP._OFF
^^P0P2.PEGP._STA

so instead of using the method below, which works in Asus UL*0V models:

status = acpi_get_handle(root_handle, \\_SB.PCI0.P0P1.VGA._OFF,
handle);

one would use this:

status = acpi_get_handle(root_handle, \\_SB.PCI0.P0P2.PEGP._OFF,
handle);

See a modified version of the module and makefile:

fujitsu_nvidia.c

#include acpi/acpi.h
#include linux/suspend.h

MODULE_LICENSE(GPL);

static acpi_handle root_handle;

static int kill_nvidia(void)
{
acpi_status status;
// The device handle
acpi_handle handle;
struct acpi_object_list args;
// For the return value
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };

status = acpi_get_handle(root_handle, \\_SB.PCI0.P0P2.PEGP._OFF, 
amp;handle);
if (ACPI_FAILURE(status))
{
printk(%s: cannot get ACPI handle: %s\n, __func__, 
acpi_format_exception(status));
return -ENOSYS;
}

args.count = 0;
args.pointer = NULL;

status = acpi_evaluate_object(handle, NULL, amp;args, amp;buffer);
if (ACPI_FAILURE(status))
{
printk(%s: _OFF method call failed: %s\n, __func__, 
acpi_format_exception(status));
return -ENOSYS;
}
kfree(buffer.pointer);

printk(%s: disabled the discrete graphics card\n,__func__);
return 0;
}

static int power_event(struct notifier_block *this, unsigned long event,
   void *ptr)
{
switch (event) {
case PM_POST_HIBERNATION:
kill_nvidia();
return NOTIFY_DONE;
case PM_POST_SUSPEND:
case PM_HIBERNATION_PREPARE:
case PM_SUSPEND_PREPARE:
default:
return NOTIFY_DONE;
}
}

static struct notifier_block power_notifier = {
.notifier_call = power_event,
};

static int __init fujitsu_nvidia(void)
{
int ret = register_pm_notifier(amp;power_notifier);
if (ret) return ret;
return kill_nvidia();
}

static void dummy(void)
{
}

module_init(fujitsu_nvidia);
module_exit(dummy);


Makefile

ifneq ($(KERNELRELEASE),)
  obj-m := fujitsu_nvidia.o
else
  KERNELDIR ?= /lib/modules/$(shell uname -r)/build
  PWD := $(shell pwd)

default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) $(EXTRA_FLAGS) modules

clean:
$(MAKE) -C $(KERNELDIR) M=$(PWD) $(EXTRA_FLAGS) clean

endif


-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 312756] Re: support graphics card hot switch

2010-01-27 Thread Albert Vilella
Hi,

After inspecting the contents of 2 MSI Megabook DSDT.dsl tables we've got, it 
looks like the calls to switch on/off graphics card in this
laptop model are:

^^^MXR0.MXM0._ON
^^^MXR0.MXM0._OFF
^^^MXR0.MXM0._STA

so instead of using the method below, which works in Asus UL*0V models:

status = acpi_get_handle(root_handle, \\_SB.PCI0.P0P1.VGA._OFF,
handle);

one would use this:

status = acpi_get_handle(root_handle, \\_SB.PCI0.MXR0.MXM0._OFF,
handle);

See a modified version of the module and makefile:

msi_nvidia.c

#include acpi/acpi.h
#include linux/suspend.h

MODULE_LICENSE(GPL);

static acpi_handle root_handle;

static int kill_nvidia(void)
{
acpi_status status;
// The device handle
acpi_handle handle;
struct acpi_object_list args;
// For the return value
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };

status = acpi_get_handle(root_handle, \\_SB.PCI0.MXR0.MXM0._OFF, 
amp;handle);
if (ACPI_FAILURE(status))
{
printk(%s: cannot get ACPI handle: %s\n, __func__, 
acpi_format_exception(status));
return -ENOSYS;
}

args.count = 0;
args.pointer = NULL;

status = acpi_evaluate_object(handle, NULL, amp;args, amp;buffer);
if (ACPI_FAILURE(status))
{
printk(%s: _OFF method call failed: %s\n, __func__, 
acpi_format_exception(status));
return -ENOSYS;
}
kfree(buffer.pointer);

printk(%s: disabled the discrete graphics card\n,__func__);
return 0;
}

static int power_event(struct notifier_block *this, unsigned long event,
   void *ptr)
{
switch (event) {
case PM_POST_HIBERNATION:
kill_nvidia();
return NOTIFY_DONE;
case PM_POST_SUSPEND:
case PM_HIBERNATION_PREPARE:
case PM_SUSPEND_PREPARE:
default:
return NOTIFY_DONE;
}
}

static struct notifier_block power_notifier = {
.notifier_call = power_event,
};

static int __init msi_nvidia(void)
{
int ret = register_pm_notifier(amp;power_notifier);
if (ret) return ret;
return kill_nvidia();
}

static void dummy(void)
{
}

module_init(msi_nvidia);
module_exit(dummy);


Makefile

ifneq ($(KERNELRELEASE),)
  obj-m := msi_nvidia.o
else
  KERNELDIR ?= /lib/modules/$(shell uname -r)/build
  PWD := $(shell pwd)

default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) $(EXTRA_FLAGS) modules

clean:
$(MAKE) -C $(KERNELDIR) M=$(PWD) $(EXTRA_FLAGS) clean

endif


-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 503139] Re: Unable to get highest resolution with Xenarc monitor

2010-01-27 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xorg-server (Ubuntu)

-- 
Unable to get highest resolution with Xenarc monitor
https://bugs.launchpad.net/bugs/503139
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513011] Re: Wrong refresh rates on low resolutions with HP NX 7000 on Lucid

2010-01-27 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xserver-xorg-video-ati (Ubuntu)

-- 
Wrong refresh rates on low resolutions with HP NX 7000 on Lucid
https://bugs.launchpad.net/bugs/513011
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 506750] Re: Can't update graphical resolution above 800*600

2010-01-27 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xorg-server (Ubuntu)

-- 
Can't update graphical resolution above 800*600
https://bugs.launchpad.net/bugs/506750
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 509264] Re: random blank screen on 945GME

2010-01-27 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xserver-xorg-video-intel (Ubuntu)

-- 
random blank screen on 945GME
https://bugs.launchpad.net/bugs/509264
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513080] [NEW] Lower right corner of touchpad acts as a right-click button

2010-01-27 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

When I try to scroll by dragging my finger down the right side of the
touchpad, it will often trigger a context menu when I reach the bottom.
It's intermittent, though, and will then glitch and click the first item
in the context menu, which can destroy data.

I have no idea why it is acting as a right-click button when it didn't
in the past several years of using Ubuntu, and I can't find anywhere to
change this in the Gnome Mouse settings.

I'm guessing it happened during the upgrade to Karmic a week ago and I
haven't noticed until today.

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Lower right corner of touchpad acts as a right-click button
https://bugs.launchpad.net/bugs/513080
You received this bug notification because you are a member of Ubuntu-X, which 
is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513080] Re: Lower right corner of touchpad acts as a right-click button

2010-01-27 Thread Philip Muškovac
** Package changed: ubuntu = xserver-xorg-input-synaptics (Ubuntu)

-- 
Lower right corner of touchpad acts as a right-click button
https://bugs.launchpad.net/bugs/513080
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 456902] Re: [i845G] Karmic stops responding a few minutes after log in

2010-01-27 Thread Alberto Cerpa
New subscriber.

Panasonic CF-W2 Toughbook

4:16am albe...@triton:~[1]uname -a
Linux triton 2.6.31-17-generic #54-Ubuntu SMP Thu Dec 10 16:20:31 UTC 2009 i686 
GNU/Linux

4:16am albe...@triton:~[2]lspci -nn | grep VGA
00:02.0 VGA compatible controller [0300]: Intel Corporation 82852/855GM 
Integrated Graphics Device [8086:3582] (rev 02)

I am using Ubuntu 9.10 Karmic.  Since installing, I have had serious
freezes, with and w/o compiz, firefox, chrome, etc. etc.

Reverted to older drivers (2.4) using this guide
(https://wiki.ubuntu.com/ReinhardTartler/X/RevertingIntelDriverTo2.4).
This rendered both the graphical (window) and text interfaces (ttyX)
unusable :-(

Had to boot from CD to manually revert back the drivers so I can boot
properly.

Added Brian's PPA, updated.

Freezes appear with:
- Compiz enabled/disabled
- KMS enabled/disabled
- When watching video and actively using the laptop, after login when siting 
idle with nothing but the screensaver running, etc.

3 freezes in the last 4 hours :-(

When checking for hw or sw rendering I got:

4:17am albe...@triton:~[4]glxinfo | grep renderer
do_wait: drmWaitVBlank returned -1, IRQs don't seem to be working correctly.
Try adjusting the vblank_mode configuration parameter.
OpenGL renderer string: Mesa DRI Intel(R) 852GM/855GM GEM 20090418 2009Q1 
x86/MMX/SSE2

xserver-xorg-video-intel 5:2.8.1+karmic (from Brian)

Hope this helps.

-- 
[i845G] Karmic stops responding a few minutes after log in
https://bugs.launchpad.net/bugs/456902
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 137766] Re: Linguistic representation for Indian Languages Regional Language - System Settings

2010-01-27 Thread Bug Watch Updater
** Changed in: kdebase
   Status: Confirmed = Fix Released

-- 
Linguistic representation for Indian Languages Regional  Language - System 
Settings
https://bugs.launchpad.net/bugs/137766
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 502334] Re: DKMS couldn't make module for custom kernel

2010-01-27 Thread Chris Hemsing
What does

dpkg -l linux-header*

say?

-- 
DKMS couldn't make module for custom kernel
https://bugs.launchpad.net/bugs/502334
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-96 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 283128] Re: Keyboard indicator shows additional layout null

2010-01-27 Thread Victor Nakoryakov
Thanks a lot for instructions, Gerhard! I believe you forgot to mention
build command before the last line. So it should be:

mkdir xserver-xorg-core-src-karmic
cd xserver-xorg-core-src-karmic
apt-src install xserver-xorg-core
wget http://launchpadlibrarian.net/33566768/xserver-xorg-1.6.4.diff
cd xorg-server-1.6.4/xkb
patch -p1 ../../xserver-xorg-1.6.4.diff
cd ../..
apt-src build xserver-xorg-core
sudo dpkg -i xserver-xorg-core_1.6.4-2ubuntu4.1_amd64.deb

-- 
Keyboard indicator shows additional layout null
https://bugs.launchpad.net/bugs/283128
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 382815] Re: command line level resolution extremely large and off center with NVidia RIVA TNT video card

2010-01-27 Thread papukaija
I'm closing this bug, since you're using Karmic in which nvidia-
graphics-drivers-71 is not available.

** Changed in: nvidia-graphics-drivers-71 (Ubuntu)
   Status: Incomplete = Invalid

-- 
command line level resolution extremely large and off center with NVidia RIVA 
TNT video card
https://bugs.launchpad.net/bugs/382815
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-71 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 453407] Re: Desktop Effects - Logout does not work properly

2010-01-27 Thread Bug Watch Updater
** Changed in: kdebase
   Status: Unknown = Fix Released

-- 
Desktop Effects - Logout does not work properly
https://bugs.launchpad.net/bugs/453407
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 357284] Re: [i945GM] Kubuntu: Screen stays black on logout (UXA bug)

2010-01-27 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel
   Status: Unknown = Fix Released

-- 
[i945GM] Kubuntu: Screen stays black on logout (UXA bug)
https://bugs.launchpad.net/bugs/357284
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 317094] Re: meta bug to collect lshal touchscreen info

2010-01-27 Thread Woko
Got it running with this: http://ubuntuforums.org/showthread.php?t=1020019.
I only had to change the match-string to: 3M 3M Touchscreen - EX II. 
Calibration still does not work, but wasn't required in my case.

-- 
meta bug to collect lshal touchscreen info
https://bugs.launchpad.net/bugs/317094
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-evtouch in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511872] Re: OpenGL doesn't work with nvidia-current 190.53

2010-01-27 Thread tghe-retford
OpenGL for 32-bit applications should now work with an update to
ia32-libs to version 2.7ubuntu18 which has just hit the main servers
today. I have also noticed along with others that 64-bit native Linux
applications also work. Is OpenGL not working still an issue when you
use nvidia-current and update ia32-libs to the latest version?

-- 
OpenGL doesn't work with nvidia-current 190.53
https://bugs.launchpad.net/bugs/511872
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 342926] Re: No PCI IOMEM space available below 4GB

2010-01-27 Thread arand
This seems to be working on my particular laptop [XPS M1530], on Karmic,
prior on this machine (on Jaunty) I was able to solve it by using the
amd64 and get the nvidia driver working there, now it seems to be
working as it should on i386.

Those for which using an amd64 kernel made no change, is this still
happening on 9.10?

-- 
No PCI IOMEM space available below 4GB
https://bugs.launchpad.net/bugs/342926
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-180 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 460496] Re: package libglu1-mesa 7.4-0ubuntu3.2 failed to install/upgrade: subprocess post-installation script returned error exit status 2

2010-01-27 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 512096 ***
https://bugs.launchpad.net/bugs/512096

** This bug has been marked a duplicate of bug 512096
   [MASTER] Exec format error : package failed to install/remove : 
installation/removal script returned error exit status 2

-- 
package libglu1-mesa 7.4-0ubuntu3.2 failed to install/upgrade: subprocess 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/460496
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 367213] Re: package wacom-tools 1:0.8.2.2-0ubuntu2 failed to install/upgrade: subprocess post-installation script returned error exit status 2

2010-01-27 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 512096 ***
https://bugs.launchpad.net/bugs/512096

** This bug has been marked a duplicate of bug 512096
   [MASTER] Exec format error : package failed to install/remove : 
installation/removal script returned error exit status 2

-- 
package wacom-tools 1:0.8.2.2-0ubuntu2 failed to install/upgrade: subprocess 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/367213
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to wacom-tools in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 325185] Re: Nvidia GeForce 400 Crashed On Uninstallation

2010-01-27 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 512096 ***
https://bugs.launchpad.net/bugs/512096

** This bug has been marked a duplicate of bug 512096
   [MASTER] Exec format error : package failed to install/remove : 
installation/removal script returned error exit status 2

-- 
Nvidia GeForce 400 Crashed On Uninstallation
https://bugs.launchpad.net/bugs/325185
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-96 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 351186] Re: [M76] [ubuntu 9.04] [ubuntu 9.10] slow unminimizing with ati card and desktop effects enabled

2010-01-27 Thread Elwoodchicago
same for me, I simply use k0ekk0ek's PPA and it worked/works. So, many
thanks to you k0ekk0ek ... that helps pretty much with this annoying
bug.

elwood

-- 
[M76] [ubuntu 9.04] [ubuntu 9.10] slow unminimizing with ati card and desktop 
effects enabled
https://bugs.launchpad.net/bugs/351186
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 502334] Re: DKMS couldn't make module for custom kernel

2010-01-27 Thread Arnold_Layne
$ dpkg -l linux-header*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Имя Версия   Описание
+++-==-==-
un  linux-headers  нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
un  linux-headers- нет   (описание недоступно)
ii  linux-headers- 2.6.31-18.55   Header files related to Linux kernel version
ii  linux-headers- 2.6.31-18.55   Linux kernel headers for version 2.6.31 on x
un  linux-headers- нет   (описание недоступно)
ii  linux-headers- 2.6.31.18.31   Generic Linux kernel headers
un  linux-headers- нет   (описание недоступно)

I don't install headers, because I have full source and build files.
I see installation break in dkms.conf line:
MAKE[0]=make module KERNDIR=/lib/modules/$kernelver IGNORE_XEN_PRESENCE=1 
IGNORE_CC_MISMATCH=1 SYSSRC=$kernel_source_dir

-- 
DKMS couldn't make module for custom kernel
https://bugs.launchpad.net/bugs/502334
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-96 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 283128] Re: Keyboard indicator shows additional layout null

2010-01-27 Thread Gerhard Radatz
Yes, you are right of course. Sorry ...

-- 
Keyboard indicator shows additional layout null
https://bugs.launchpad.net/bugs/283128
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 382815] Re: command line level resolution extremely large and off center with NVidia RIVA TNT video card

2010-01-27 Thread willz06jw
Good deal.  Actually I tested with the newest Ubuntu version, and the
bug itself is gone.  Thanks again for you work.

-- 
command line level resolution extremely large and off center with NVidia RIVA 
TNT video card
https://bugs.launchpad.net/bugs/382815
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-71 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 451518] Re: [i945G] karmic: INFO: task i915/* blocked for more than 120 seconds.

2010-01-27 Thread mtb-cliff
I too am affected by this bug. When I searched previously I couldn't find 
related bugs so I opened a new one. All of my logs are attached to bug Bug 
#509410 : 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/509410?comments=all
I'll try the downgrade of mesa as well. Presently I am running : dpkg -l | grep 
mesa
ii  libgl1-mesa-dri7.6.0-1ubuntu4   
  A free implementation of the OpenGL API -- D
ii  libgl1-mesa-glx7.6.0-1ubuntu4   
  A free implementation of the OpenGL API -- G
ii  libglu1-mesa   7.6.0-1ubuntu4   
  The OpenGL utility library (GLU)
ii  mesa-utils 7.6.0-1ubuntu4   
  Miscellaneous Mesa GL utilities

-- 
[i945G] karmic: INFO: task i915/* blocked for more than 120 seconds.
https://bugs.launchpad.net/bugs/451518
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 312756] Re: support graphics card hot switch

2010-01-27 Thread pyronordicman
I fixed the rt73 error in the deb package for powering off the Nvidia
chip in Asus UL*V* laptops.  I also added better hibernate and suspend
support as per the following link:

http://forum.notebookreview.com/showpost.php?p=5664880postcount=1244

** Attachment added: nvidia-g210m-acpi-source_0.1.0-1~ppa-karmic_all.deb
   
http://launchpadlibrarian.net/38458054/nvidia-g210m-acpi-source_0.1.0-1%7Eppa-karmic_all.deb

-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 512539] Re: unable to activate nvidia 96 driver in 10.04

2010-01-27 Thread Will
** Changed in: nvidia-graphics-drivers-96 (Ubuntu)
   Status: New = Incomplete

-- 
unable to activate nvidia 96 driver in 10.04
https://bugs.launchpad.net/bugs/512539
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-96 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 496100] Re: Ubuntu lucid: brocken dependency in xserver-xorg-driver-nouveau

2010-01-27 Thread Bryce Harrington
** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Importance: Undecided = High

-- 
Ubuntu lucid: brocken dependency in xserver-xorg-driver-nouveau
https://bugs.launchpad.net/bugs/496100
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 479948] Re: Unable to select 3rd level characters using Alt gr (Karmic)

2010-01-27 Thread Friedrich Strohmaier
@Staffy: I've setup  bug #512622 which in general matters strange xmodmap 
keymapping.
If You think this affects You, maybe could solve Your Problem then please 
strike the apropriate handle ;o))

Maybe many keybord related problems can be solved that way.

-- 
Unable to select 3rd level characters using Alt gr (Karmic)
https://bugs.launchpad.net/bugs/479948
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 465958] Re: effect of xmodmap ~/.Xmodmap

2010-01-27 Thread Friedrich Strohmaier

@Steve Newcomb: I've setup bug #512622 which in general matters strange xmodmap 
keymapping.
If You think this affects You, or maybe could solve Your Problem, then please 
strike the apropriate handle ;o))

Maybe many keybord related problems can be solved that way.

-- 
effect of xmodmap ~/.Xmodmap 
https://bugs.launchpad.net/bugs/465958
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 447892] Re: [i855GM] Freeze shortly after X startup on Intel i855

2010-01-27 Thread Alberto Cerpa
New subscriber.

I am using the same chipset (855GM), but reported my test results in:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/456902/comments/72

-- 
[i855GM] Freeze shortly after X startup on Intel i855
https://bugs.launchpad.net/bugs/447892
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 414784] Re: xmodmap doesn't recognise dead_belowdot

2010-01-27 Thread Friedrich Strohmaier
@Matthias-Christian Ott: I've setup bug #512622 which in general matters 
strange xmodmap keymapping.
If You think this affects You, or maybe could solve Your Problem then please 
strike the apropriate handle ;o))

Maybe many keybord related problems can be solved that way.

-- 
xmodmap doesn't recognise dead_belowdot
https://bugs.launchpad.net/bugs/414784
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 377402] Re: [K8M890]Square cursor with Ubuntu 9.04 livecd, during VNC connection

2010-01-27 Thread Bartosz
Is Option NoAccel true (in xorg.conf) helps?

-- 
[K8M890]Square cursor with Ubuntu 9.04 livecd, during VNC connection
https://bugs.launchpad.net/bugs/377402
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-openchrome in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 312756] Re: support graphics card hot switch

2010-01-27 Thread John Cudd
Asus UL80VT

NVidia G210M Graphics with 512MB DDR3
Intel GMA 4500MHD


** Attachment added: DSDT.dsl
   http://launchpadlibrarian.net/38463161/DSDT.dsl

-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 496264] Re: nouveau crashes with kernel 2.6.31-16

2010-01-27 Thread Bryce Harrington
** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
nouveau crashes with kernel 2.6.31-16
https://bugs.launchpad.net/bugs/496264
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 491682] Re: problem with instal borks installer

2010-01-27 Thread Bryce Harrington
Actually, it is a jockey error that this build issue is not being
handled gracefully, so refiling.

Basically the underlying problem is that the xserver ABI version for the
-nouveau driver in lucid is too old; we have to update -nouveau before
installation will work.  It would be nice if jockey could communicate
this type of situation somehow to the user in a more friendly way, as it
is not uncommon for this to be the case during the alpha period of a new
development release.


** Package changed: xserver-xorg-video-nouveau (Ubuntu) = jockey (Ubuntu)

** Changed in: jockey (Ubuntu)
   Importance: Undecided = High

** Changed in: jockey (Ubuntu)
   Status: Incomplete = Confirmed

** Summary changed:

- problem with instal borks installer 
+ problem with -nouveau install borks installer

-- 
problem with -nouveau install borks installer
https://bugs.launchpad.net/bugs/491682
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 370976] Re: keyboard doesnt work properly

2010-01-27 Thread Friedrich Strohmaier
@diegues: I've setup bug #512622 which in general matters strange xmodmap 
keymapping.
If You think this affects You, or maybe could solve Your Problem then please 
strike the apropriate handle ;o))

Maybe many keybord related problems can be solved that way.

-- 
keyboard doesnt work properly
https://bugs.launchpad.net/bugs/370976
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-evdev in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 307008] Re: [CAPSLOCK] shift-control ignored after re-mapping CAPSLOCK and Control

2010-01-27 Thread Friedrich Strohmaier
@pauljohn32: I've setup bug #512622 which in general matters strange xmodmap 
keymapping.
If You think this affects You, or maybe could solve Your Problem then please 
strike the apropriate handle ;o))

Maybe many keybord related problems can be solved that way.

-- 
[CAPSLOCK] shift-control ignored after re-mapping CAPSLOCK and Control
https://bugs.launchpad.net/bugs/307008
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 502334] Re: DKMS couldn't make module for custom kernel

2010-01-27 Thread Chris Hemsing
Is
2.6.31.6-rt19-dx73-d
derived from a ubuntu kernel?

-- 
DKMS couldn't make module for custom kernel
https://bugs.launchpad.net/bugs/502334
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-96 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 502334] Re: DKMS couldn't make module for custom kernel

2010-01-27 Thread Arnold_Layne
2.6.31.6-rt19-dx73-d is my own build kernel from source with patches.

-- 
DKMS couldn't make module for custom kernel
https://bugs.launchpad.net/bugs/502334
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-96 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513438] [NEW] Incorrect 800x600 resolution for SIS M672 graphics

2010-01-27 Thread Actiu informatica
Public bug reported:

Binary package hint: xserver-xorg-video-sis

Chipset SiS M672 + SiS 968 on a laptop
(https://wiki.ubuntu.com/LaptopTestingTeam/HundyxW765S) with a LCD
resolution of 1366x768.

With Live-CD (Ubuntu GNU/Linux 9.10 Karmic Koala) the desktop starts with a 
800x600 resolution, and the only alternative available with the 
gnome-display-properties is 640x480.
When startup the computer with an external monitor plugged and working, then 
the desktop enters in 1024x768 resolution, and then I feel that the driver 
really can work with higer resolutions than 800x600 with the SiS M672 device.

I want to use only Ubuntu drivers or any other driver provided by the
manufacturer or a clear free software project.

** Affects: xserver-xorg-video-sis (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Incorrect 800x600 resolution for SIS M672 graphics
https://bugs.launchpad.net/bugs/513438
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-sis in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513438] Re: Incorrect 800x600 resolution for SIS M672 graphics

2010-01-27 Thread Actiu informatica

** Attachment added: Xorg.0.log
   http://launchpadlibrarian.net/38464327/Xorg.0.log

-- 
Incorrect 800x600 resolution for SIS M672 graphics
https://bugs.launchpad.net/bugs/513438
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-sis in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513438] Re: Incorrect 800x600 resolution for SIS M672 graphics

2010-01-27 Thread Actiu informatica
These other bugs may be related:
https://bugs.launchpad.net/ubuntu/+bug/289537
https://bugs.launchpad.net/ubuntu/+bug/301958

-- 
Incorrect 800x600 resolution for SIS M672 graphics
https://bugs.launchpad.net/bugs/513438
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-sis in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511872] Re: OpenGL doesn't work with nvidia-current 190.53

2010-01-27 Thread Marcin
After upgrade to new ia31-libs my computer games now work again with
OpenGL, but KDE compositing effect still doesn't .

-- 
OpenGL doesn't work with nvidia-current 190.53
https://bugs.launchpad.net/bugs/511872
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 377402] Re: [K8M890]Square cursor with Ubuntu 9.04 livecd, during VNC connection

2010-01-27 Thread Bartosz
Please check the latest revision of the openchrome r831

-- 
[K8M890]Square cursor with Ubuntu 9.04 livecd, during VNC connection
https://bugs.launchpad.net/bugs/377402
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-openchrome in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 465958] Re: effect of xmodmap ~/.Xmodmap

2010-01-27 Thread Friedrich Strohmaier
** Tags added: xmodmap

-- 
effect of xmodmap ~/.Xmodmap 
https://bugs.launchpad.net/bugs/465958
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 397839] Re: Screen randomly goes off in karmic

2010-01-27 Thread Deje
As of today with a fully up-to-date karmic this bug still exists. Status
say: fix released. Can someone tell me how can I get this fix?

-- 
Screen randomly goes off in karmic
https://bugs.launchpad.net/bugs/397839
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 397839] Re: Screen randomly goes off in karmic

2010-01-27 Thread aeneas
I know :-((( ...

Workaround: Use the RGB connector for your monitor (I bet you're on
DVI)...

greetings.

-- 
Screen randomly goes off in karmic
https://bugs.launchpad.net/bugs/397839
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 502334] Re: DKMS couldn't make module for custom kernel

2010-01-27 Thread Chris Hemsing
Well that makes it a bit special ... and you will have to do a bit of debugging:
The directory
/usr/src/nvidia-your nvidia version/
should have a file
conftest.sh

Add

set -x

early in conftest.sh and below the line

   select_makefile)

change
$HOSTCC $CFLAGS -o conftest$$ conftest$$.c  /dev/null 21
to
$HOSTCC $CFLAGS -o conftest$$ conftest$$.c

Next rerun dkms.

You will have a file make.log somewhere below
/var/lib/dkms/nvidia/your nvidia version/your kernel version

Use that to find out, why conftest.sh fails.

-- 
DKMS couldn't make module for custom kernel
https://bugs.launchpad.net/bugs/502334
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-96 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 32042] Re: OpenGL subroutine man pages missing

2010-01-27 Thread Peter Rhone
If a fix has been committed, can someone please document it here? I
don't know what package to install, if any, to get the documentation.
For now I have been forced to install the package I found here:
http://emergent.unpythonic.net/01157053957

-- 
OpenGL subroutine man pages missing
https://bugs.launchpad.net/bugs/32042
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513467] [NEW] X restarts to GDM after empathy was idle and gets input

2010-01-27 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Binary package hint: empathy

This problem occurs when empathy is running and the computer is idle for
multiple hours. If you move the mouse to get rid of the blank screen and
want to type something directly after you are able to see empathy it
will restart X to the GDM login as soon as you press ENTER.

I would expect that X will not restarted and I can use empathy.

ProblemType: Bug
Architecture: amd64
Date: Wed Jan 27 21:49:48 2010
DistroRelease: Ubuntu 9.10
Package: empathy 2.28.1.1-0ubuntu1
ProcEnviron:
 PATH=(custom, user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
SourcePackage: empathy
Uname: Linux 2.6.31-17-generic x86_64
XsessionErrors:
 (gnome-settings-daemon:32030): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (polkit-gnome-authentication-agent-1:32136): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (nautilus:32133): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
 (gnome-panel:32123): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to 
allocate widget with width -15 and height 24
 (firefox:9862): GLib-WARNING **: g_set_prgname() called multiple times

** Affects: xorg-server (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug
-- 
X restarts to GDM after empathy was idle and gets input
https://bugs.edge.launchpad.net/bugs/513467
You received this bug notification because you are a member of Ubuntu-X, which 
is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513467] Re: X restarts to GDM after empathy was idle and gets input

2010-01-27 Thread Sebastien Bacher
seems xorg is crashing rather than empathy being buggy there

** Package changed: empathy (Ubuntu) = xorg-server (Ubuntu)

-- 
X restarts to GDM after empathy was idle and gets input
https://bugs.launchpad.net/bugs/513467
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513523] [NEW] 64 bit Webots simulator freezes system with Intel GM965

2010-01-27 Thread Thomas Krause
Public bug reported:

Binary package hint: xserver-xorg-video-intel

The commercial robot simulator Webots (free demo version at
http://www.cyberbotics.com/products/webots/download_linux.html) recently
switched to Ogre for their rendering engine.

Since then the 64 bit version of Webots will freeze the system (even
Alt+Print+K won't restart the X server, I need to poweroff the maschine
manually). The 32 bit version works fine under the same 64 bit system.

This is the last message from the command line (subscribed to a good old
sheet of paper):

do_wait: drmWaitVBlank returned -1, IRQs don't seem to be working
correctly. Try adjusting the vblank_mode configuration parameter.

Webots might use reflection in their rendering internally (I have
contacted the vendor about that) and this bug might be related to
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
intel/+bug/298532. But in #298532 the reporter explicitly mentions that
both 32 bit and 64 bit versions will crash.

I know that Ubuntu is not in charge of fixing bugs triggered by some 3rd
party commercial application but the system, but no application should
be able to freeze the complete system causing data loss and potential
file system integrity problems.

ProblemType: Bug
Architecture: amd64
Date: Thu Jan 28 00:09:20 2010
DistroRelease: Ubuntu 9.10
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
MachineType: Dell Inc. XPS M1330
Package: xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-17-generic 
root=UUID=3c131c8e-4b4b-4ab7-8253-f4be46c2cfdc ro quiet splash
ProcEnviron:
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
RelatedPackageVersions:
 xserver-xorg 1:7.4+3ubuntu10
 libgl1-mesa-glx 7.6.0-1ubuntu4
 libdrm2 2.4.14-1ubuntu1
 xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
 xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
SourcePackage: xserver-xorg-video-intel
Uname: Linux 2.6.31-17-generic x86_64
XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
dmi.bios.date: 12/26/2008
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A15
dmi.board.name: 0N6705
dmi.board.vendor: Dell Inc.
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA15:bd12/26/2008:svnDellInc.:pnXPSM1330:pvr:rvnDellInc.:rn0N6705:rvr:cvnDellInc.:ct8:cvr:
dmi.product.name: XPS M1330
dmi.sys.vendor: Dell Inc.
fglrx: Not loaded
system:
 distro: Ubuntu
 architecture:   x86_64kernel: 2.6.31-17-generic

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
64 bit Webots simulator freezes system with Intel GM965
https://bugs.launchpad.net/bugs/513523
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513523] Re: 64 Webot simluator freezes system with Intel GM965

2010-01-27 Thread Thomas Krause

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/38469746/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/38469747/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/38469748/Dependencies.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/38469749/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/38469750/Lsusb.txt

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/38469751/PciDisplay.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/38469752/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/38469753/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/38469754/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/38469755/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/38469756/UdevLog.txt

** Attachment added: XorgLog.gz
   http://launchpadlibrarian.net/38469757/XorgLog.gz

** Attachment added: XorgLogOld.gz
   http://launchpadlibrarian.net/38469758/XorgLogOld.gz

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/38469759/Xrandr.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/38469760/XsessionErrors.txt

** Attachment added: glxinfo.txt
   http://launchpadlibrarian.net/38469762/glxinfo.txt

** Attachment added: monitors.xml.txt
   http://launchpadlibrarian.net/38469763/monitors.xml.txt

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/38469764/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/38469765/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/38469766/xkbcomp.txt

** Summary changed:

- 64 Webot simluator freezes system with Intel GM965
+ 64 bit Webot simluator freezes system with Intel GM965

** Description changed:

  Binary package hint: xserver-xorg-video-intel
  
  The commercial robot simulator Webots (free demo version at
  http://www.cyberbotics.com/products/webots/download_linux.html) recently
  switched to Ogre for their rendering engine.
  
  Since then the 64 bit version of Webots will freeze the system (even
  Alt+Print+K won't restart the X server, I need to poweroff the maschine
  manually). The 32 bit version works fine under the same 64 bit system.
  
  This is the last message from the command line (subscribed to a good old
  sheet of paper):
  
  do_wait: drmWaitVBlank returned -1, IRQs don't seem to be working
  correctly. Try adjusting the vblank_mode configuration parameter.
  
  Webots might use reflection in their rendering internally (I have
  contacted the vendor about that) and this bug might be related to
- #298532. But in #298532 the reporter explicitly mentions that both 32
- bit and 64 bit versions will crash.
+ https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
+ intel/+bug/298532. But in #298532 the reporter explicitly mentions that
+ both 32 bit and 64 bit versions will crash.
  
  I know that Ubuntu is not in charge of fixing bugs triggered by some 3rd
  party commercial application but the system, but no application should
  be able to freeze the complete system causing data loss and potential
  file system integrity problems.
  
  ProblemType: Bug
  Architecture: amd64
  Date: Thu Jan 28 00:09:20 2010
  DistroRelease: Ubuntu 9.10
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
  MachineType: Dell Inc. XPS M1330
  Package: xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-17-generic 
root=UUID=3c131c8e-4b4b-4ab7-8253-f4be46c2cfdc ro quiet splash
  ProcEnviron:
-  LANG=de_DE.UTF-8
-  SHELL=/bin/bash
+  LANG=de_DE.UTF-8
+  SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
  RelatedPackageVersions:
-  xserver-xorg 1:7.4+3ubuntu10
-  libgl1-mesa-glx 7.6.0-1ubuntu4
-  libdrm2 2.4.14-1ubuntu1
-  xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
-  xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
+  xserver-xorg 1:7.4+3ubuntu10
+  libgl1-mesa-glx 7.6.0-1ubuntu4
+  libdrm2 2.4.14-1ubuntu1
+  xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
+  xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
  SourcePackage: xserver-xorg-video-intel
  Uname: Linux 2.6.31-17-generic x86_64
  XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
  dmi.bios.date: 12/26/2008
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A15
  dmi.board.name: 0N6705
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA15:bd12/26/2008:svnDellInc.:pnXPSM1330:pvr:rvnDellInc.:rn0N6705:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: XPS M1330
  dmi.sys.vendor: Dell Inc.
  fglrx: Not loaded
  system:
-  distro: Ubuntu
-  architecture:   x86_64kernel: 

[Ubuntu-x-swat] [Bug 513523] Re: 64 bit Webots simulator freezes system with Intel GM965

2010-01-27 Thread Thomas Krause
P.S.

I also deactivated 3D acceleration using driconf for testing. Even with
software rendering the system will freeze.

-- 
64 bit Webots simulator freezes system with Intel GM965
https://bugs.launchpad.net/bugs/513523
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 513523] Re: 64 bit Webots simulator freezes system with Intel GM965

2010-01-27 Thread Thomas Krause
** Description changed:

  Binary package hint: xserver-xorg-video-intel
  
  The commercial robot simulator Webots (free demo version at
  http://www.cyberbotics.com/products/webots/download_linux.html) recently
  switched to Ogre for their rendering engine.
  
  Since then the 64 bit version of Webots will freeze the system (even
- Alt+Print+K won't restart the X server, I need to poweroff the maschine
+ Alt+Print+K won't restart the X server, I need to poweroff the machine
  manually). The 32 bit version works fine under the same 64 bit system.
  
  This is the last message from the command line (subscribed to a good old
  sheet of paper):
  
  do_wait: drmWaitVBlank returned -1, IRQs don't seem to be working
  correctly. Try adjusting the vblank_mode configuration parameter.
  
  Webots might use reflection in their rendering internally (I have
  contacted the vendor about that) and this bug might be related to
  https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
  intel/+bug/298532. But in #298532 the reporter explicitly mentions that
  both 32 bit and 64 bit versions will crash.
  
  I know that Ubuntu is not in charge of fixing bugs triggered by some 3rd
- party commercial application but the system, but no application should
- be able to freeze the complete system causing data loss and potential
- file system integrity problems.
+ party commercial application, but no application should be able to
+ freeze the complete system causing data loss and potential file system
+ integrity problems.
  
  ProblemType: Bug
  Architecture: amd64
  Date: Thu Jan 28 00:09:20 2010
  DistroRelease: Ubuntu 9.10
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
  MachineType: Dell Inc. XPS M1330
  Package: xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-17-generic 
root=UUID=3c131c8e-4b4b-4ab7-8253-f4be46c2cfdc ro quiet splash
  ProcEnviron:
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
  RelatedPackageVersions:
   xserver-xorg 1:7.4+3ubuntu10
   libgl1-mesa-glx 7.6.0-1ubuntu4
   libdrm2 2.4.14-1ubuntu1
   xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
   xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
  SourcePackage: xserver-xorg-video-intel
  Uname: Linux 2.6.31-17-generic x86_64
  XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
  dmi.bios.date: 12/26/2008
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A15
  dmi.board.name: 0N6705
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA15:bd12/26/2008:svnDellInc.:pnXPSM1330:pvr:rvnDellInc.:rn0N6705:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: XPS M1330
  dmi.sys.vendor: Dell Inc.
  fglrx: Not loaded
  system:
   distro: Ubuntu
   architecture:   x86_64kernel: 2.6.31-17-generic

-- 
64 bit Webots simulator freezes system with Intel GM965
https://bugs.launchpad.net/bugs/513523
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 451518] Re: [i945G] karmic: INFO: task i915/* blocked for more than 120 seconds.

2010-01-27 Thread mtb-cliff
I performed the downgrade. It didn't work well at all. On my user id it
seemed ok, however, on my wife's user id the screen would not refresh in
certain areas - like applications windows, switch user, main desktop
when applications would launch. Basically it was unusable so I reverted
back to the repo versions...

-- 
[i945G] karmic: INFO: task i915/* blocked for more than 120 seconds.
https://bugs.launchpad.net/bugs/451518
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 419501] Re: apport-kde assert failure: python: ../../src/xcb_io.c:242: process_responses: Assertion `(((long) (dpy-last_request_read) - (long) (dpy-request)) = 0)' failed.

2010-01-27 Thread Jonathan Thomas
** Changed in: libxcb (Ubuntu)
   Status: Incomplete = Confirmed

-- 
apport-kde assert failure: python: ../../src/xcb_io.c:242: process_responses: 
Assertion `(((long) (dpy-last_request_read) - (long) (dpy-request)) = 0)' 
failed.
https://bugs.launchpad.net/bugs/419501
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libxcb in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] Re: Wacom Tablet is only recognized on first plug

2010-01-27 Thread ScislaC
apport information

** Tags added: apport-collected

** Description changed:

  1) I'm using Ubuntu Lucid
  2) xserver-xorg-input-wacom - 0.10.3+20100109-1ubuntu1
  3) I expected hotplugging to work properly on more than one plug.
  4) It appears that hotplugging only works on the first plug. The tablet works 
properly as expected during this session, however if I unplug and plug the 
tablet in again it will not work any longer.
  
  After the first plugging in (and unplugging) of my tablet no more
  information about it is added to my Xorg log.
  
  My copy of Lucid has all updates applied as of this posting, no non-
  standard kernel or X-related packages are installed (no ppas or other
  repos that would affect this), and the tablet is a Wacom Intuos 2.
  
- It actually takes a full reboot for the tablet to be recognized again,
- restarting the X session isn't enough (this is based on my assumption
- that the X session completely terminates as it used to on logging out).
+ It actually takes a full reboot for the tablet to be recognized again, 
restarting the X session isn't enough (this is based on my assumption that the 
X session completely terminates as it used to on logging out).
+ --- 
+ Architecture: i386
+ DistroRelease: Ubuntu 10.04
+ DkmsStatus:
+  virtualbox-ose, 3.1.2, 2.6.32-8-generic-pae, i686: built 
+  virtualbox-ose, 3.1.2, 2.6.32-9-generic-pae, i686: built 
+  virtualbox-ose, 3.1.2, 2.6.32-10-generic-pae, i686: installed 
+  virtualbox-ose, 3.1.2, 2.6.32-11-generic-pae, i686: installed
+ MachineType: Dell Inc. MM061
+ Package: xserver-xorg 1:7.5+1ubuntu2
+ PackageArchitecture: i386
+ ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-11-generic-pae 
root=UUID=c53287b2-805d-451c-938f-738d1170612e ro quiet splash
+ ProcEnviron:
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-11.15-generic-pae
+ RelatedPackageVersions:
+  xserver-xorg 1:7.5+1ubuntu2
+  libgl1-mesa-glx 7.7-0ubuntu8
+  libdrm2 2.4.17-0ubuntu2
+  xserver-xorg-video-intel 2:2.9.1-1ubuntu1
+ Tags: lucid
+ Uname: Linux 2.6.32-11-generic-pae i686
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ dmi.bios.date: 06/13/2007
+ dmi.bios.vendor: Dell Inc.
+ dmi.bios.version: A17
+ dmi.board.name: 0XD720
+ dmi.board.vendor: Dell Inc.
+ dmi.chassis.type: 8
+ dmi.chassis.vendor: Dell Inc.
+ dmi.modalias: 
dmi:bvnDellInc.:bvrA17:bd06/13/2007:svnDellInc.:pnMM061:pvr:rvnDellInc.:rn0XD720:rvr:cvnDellInc.:ct8:cvr:
+ dmi.product.name: MM061
+ dmi.sys.vendor: Dell Inc.
+ system:
+  distro: Ubuntu
+  architecture:   i686kernel: 2.6.32-11-generic-pae

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/38470686/BootDmesg.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] CurrentDmesg.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/38470687/CurrentDmesg.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] Lspci.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/38470689/Lspci.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] Lsusb.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/38470690/Lsusb.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] Dependencies.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/38470688/Dependencies.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] ProcCpuinfo.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/38470694/ProcCpuinfo.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] PciDisplay.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/38470691/PciDisplay.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] ProcInterrupts.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/38470701/ProcInterrupts.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] Xrandr.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/38470721/Xrandr.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] XorgConf.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: XorgConf.txt
   http://launchpadlibrarian.net/38470715/XorgConf.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] UdevLog.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/38470705/UdevLog.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] XorgLogOld.gz

2010-01-27 Thread ScislaC
apport information

** Attachment added: XorgLogOld.gz
   http://launchpadlibrarian.net/38470719/XorgLogOld.gz

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] UdevDb.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/38470704/UdevDb.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] XorgLog.gz

2010-01-27 Thread ScislaC
apport information

** Attachment added: XorgLog.gz
   http://launchpadlibrarian.net/38470717/XorgLog.gz

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] ProcModules.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/38470703/ProcModules.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] glxinfo.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: glxinfo.txt
   http://launchpadlibrarian.net/38470722/glxinfo.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] monitors.xml.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: monitors.xml.txt
   http://launchpadlibrarian.net/38470726/monitors.xml.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] setxkbmap.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/38470727/setxkbmap.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] xdpyinfo.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/38470728/xdpyinfo.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] xkbcomp.txt

2010-01-27 Thread ScislaC
apport information

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/38470731/xkbcomp.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] Re: Wacom Tablet is only recognized on first plug

2010-01-27 Thread Bryce Harrington
bryceh ScislaC, maybe also syslog... like boot with it plugged in, capture 
that syslog to the bug report, then unplug it, note whatever new stuff shows in 
the log, then plug it in again, and get that as well
 ScislaC, this may be a general usb hotplug issue unrelated to X, it's probably 
a kernel issue, but the syslog output would (hopefully) be informative of what 
is going on
 another thing which might be of interest is to look at the output of lsusb for 
the three configurations as well
 in theory the first and third cases should have identical lsusb output

** Changed in: xf86-input-wacom (Ubuntu)
   Importance: Undecided = High

** Changed in: xf86-input-wacom (Ubuntu)
   Status: New = Incomplete

** Changed in: xf86-input-wacom (Ubuntu)
Milestone: None = lucid-alpha-3

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 427168] Re: usb keyboard settings reset on plugin

2010-01-27 Thread Oliver Joos
@Kevin: It is difficult to decide where to report this bug. But I agree, we 
should do this.
@radostyle: glad to hear it works for you, too! Whether the problems with 
modmap files are related or not, we should treat this bug isolated, because the 
fixes might be different.

IMHO xset is a candidate to fix:
  1 xset r rate 300 36 , unplug/replug keyboard , xset q = delay,rate=660,25
  2 after replugging external keyboard becomes 660,25, but internal one stays 
at 300,36
  3 replugging while in a console (ctrl+alt+F1) doesn't change anything - 
unless I switch to X (ctrl+alt+F7)!
  4 xset r rate 300 39 , xset q = 300,40 (this is perhaps a hardware 
limitation)

But this all looks like xset stores the values in the keyboard hardware
only and sometimes chooses the wrong (external) one to read them from.
If that's right then only gconftool-2 stores these values reliably. Then
an udev-rule calling gconftool-2 would be a valid fix, if that's
possible at all. I found a solution for a similar issue here:
http://ubuntuforums.org/archive/index.php/t-1282582.html

Anyway if you agree, I will report this issue to gnome.org AND
freedesktop.org with links to each other, so that well-informed people
can help to decide where to fix it.

-- 
usb keyboard settings reset on plugin
https://bugs.launchpad.net/bugs/427168
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 85451] Re: Switch tty, shutdown, reboot cause colorful screen on GeForce Go 6200

2010-01-27 Thread gco
Still the same in 9.10 using the Nvidia 185 driver...

-- 
Switch tty, shutdown, reboot cause colorful screen on GeForce Go 6200
https://bugs.launchpad.net/bugs/85451
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-180 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 333377] Re: [RS480] HP Dv8000 laptop suspends but does not resume

2010-01-27 Thread Bryce Harrington
** Bug watch added: freedesktop.org Bugzilla #22140
   https://bugs.freedesktop.org/show_bug.cgi?id=22140

** Changed in: xserver-xorg-driver-ati
   Status: Invalid = Unknown

** Changed in: xserver-xorg-driver-ati
 Remote watch: freedesktop.org Bugzilla #19581 = freedesktop.org Bugzilla 
#22140

-- 
[RS480] HP Dv8000 laptop suspends but does not resume
https://bugs.launchpad.net/bugs/77
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 370834] [NEW] QT apps don't refresh (update the screen) properly with compiz

2010-01-27 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I have a problem with Ubuntu 9.04 when using GNOME and KDE applications...
  the content of the KDE applications (this is true for Konsole and Okular at 
least) doesn't refresh properly.
It then will refresh once I change desktops or even just use the Application 
Switcher.

Notice in the attached video that the page with okular doesn't refresh properly 
until I change desktops or use the Application Switcher.
Pay close attention to the word Whereas at the top left.

This renders the konsole practically unusable!

NOTE: I have an installation of Mandriva Spring 2009 and this problem
doesn't exist.

** Affects: nvidia-graphics-drivers-180 (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: compiz (Fedora)
 Importance: Undecided
 Status: New

-- 
QT apps don't refresh (update the screen) properly with compiz
https://bugs.launchpad.net/bugs/370834
You received this bug notification because you are a member of Ubuntu-X, which 
is subscribed to nvidia-graphics-drivers-180 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 333377] Re: [RS480] HP Dv8000 laptop suspends but does not resume

2010-01-27 Thread Bug Watch Updater
** Changed in: xserver-xorg-driver-ati
   Status: Unknown = Fix Released

-- 
[RS480] HP Dv8000 laptop suspends but does not resume
https://bugs.launchpad.net/bugs/77
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 487204] Re: radeon_lock. c:65: radeonGetLock: „drawable != ((void *)0)” Assertion

2010-01-27 Thread Bryce Harrington
Looks like this was actually a mesa bug, fixed in the 7.7 version we
have in lucid.  Thanks, closing bug.

** Package changed: xserver-xorg-video-ati (Ubuntu) = mesa (Ubuntu)

** Changed in: mesa (Ubuntu)
   Status: New = Fix Released

-- 
radeon_lock.c:65: radeonGetLock: „drawable != ((void *)0)” Assertion
https://bugs.launchpad.net/bugs/487204
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511520] Re: Ubuntu Karmic: DVI output not working with radeon 4350

2010-01-27 Thread Robert Hooker
xserver-xorg-video-ati_6.12.99+git20091125.0061c4db-0ubuntu1 was
released last month which is the exact same version as PPA package you
reported working so I am closing this as fix released. If you still have
a problem, please reopen the bug, thanks!

** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: New = Fix Released

-- 
Ubuntu Karmic: DVI output not working with radeon 4350
https://bugs.launchpad.net/bugs/511520
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 500607] Re: desktop is rendered wrong on Radeon HD 4530

2010-01-27 Thread Bryce Harrington
From the upstream bug report, it sounds like this was solved in mesa.
Not sure exactly what the fix was, but am going to assume it's included
in mesa 7.7.  Please re-test on current lucid and feel free to reopen
this bug report if the problem is still there and we can investigate
finding/backporting the fix.

** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: New = Fix Released

-- 
desktop is rendered wrong on Radeon HD 4530
https://bugs.launchpad.net/bugs/500607
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 370834] Re: QT apps don't refresh (update the screen) properly with compiz

2010-01-27 Thread Jonathan Thomas
** Package changed: ubuntu = nvidia-graphics-drivers-180 (Ubuntu)

-- 
QT apps don't refresh (update the screen) properly with compiz
https://bugs.launchpad.net/bugs/370834
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-180 in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 479948] Re: Unable to select 3rd level characters using Alt gr (Karmic)

2010-01-27 Thread Bryce Harrington
[Sorry, misfiled]

** Package changed: xserver-xorg-video-ati (Ubuntu) = xkeyboard-config
(Ubuntu)

-- 
Unable to select 3rd level characters using Alt gr (Karmic)
https://bugs.launchpad.net/bugs/479948
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 465958] Re: effect of xmodmap ~/.Xmodmap

2010-01-27 Thread Bryce Harrington
Sorry, guess this bug was misfiled originally

** Package changed: xserver-xorg-video-ati (Ubuntu) = x11-xserver-utils
(Ubuntu)

-- 
effect of xmodmap ~/.Xmodmap 
https://bugs.launchpad.net/bugs/465958
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to x11-xserver-utils in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 512192] Re: Can't configure Elan tech touchpad on Dell Inspiron 11z, Asus K7I0C and maybe also Dell Mini 10 (not V), ASUS k40in and Asus U81A.

2010-01-27 Thread Udutronik
I can confirm this bugs also affects my ASUS UL80-VT which also has an elantech 
touchpad
Xinput list shows the touchpad is erroneously recognized as ImPS/2 Logitech 
Wheel Mouse   

I can also state that this is not a distro-related bug as I have experienced 
the same problem with OpenSuse
As a matter of fact I did file a bug report here : 
https://bugzilla.novell.com/show_bug.cgi?id=558225

** Bug watch added: Novell/SUSE Bugzilla #558225
   https://bugzilla.novell.com/show_bug.cgi?id=558225

-- 
Can't configure Elan tech touchpad on Dell Inspiron 11z, Asus K7I0C and maybe 
also Dell Mini 10 (not V), ASUS k40in and Asus U81A.
https://bugs.launchpad.net/bugs/512192
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 511844] Re: Wacom Tablet is only recognized on first plug

2010-01-27 Thread ScislaC
The lsusb info is identical as you thought for the initial boot with it
plugged in and on the reconnect. Here is the output just for the sake of
providing it.

Bus 005 Device 002: ID 413c:8103 Dell Computer Corp. Wireless 350 Bluetooth
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 056a:0042 Wacom Co., Ltd Intuos 2 6x8
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Attaching syslog info from this boot.

** Attachment added: syslog (at the end of the syslog I have appended what 
changed on unplugging and replugging a couple times)
   http://launchpadlibrarian.net/38471787/syslog.txt

-- 
Wacom Tablet is only recognized on first plug
https://bugs.launchpad.net/bugs/511844
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xf86-input-wacom in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 410248] Re: [g41] X consumes ever-increasing memory

2010-01-27 Thread Paul Jones

** Attachment added: Output of pmap -d `pgrep X`
   http://launchpadlibrarian.net/38471789/x-memory.txt

-- 
[g41] X consumes ever-increasing memory
https://bugs.launchpad.net/bugs/410248
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 410248] Re: [g41] X consumes ever-increasing memory

2010-01-27 Thread Paul Jones
I experience a bug with similar symptoms. I'm using an up to date
version of Karmic.

00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset 
Integrated Graphics Controller (rev 07)
Subsystem: Lenovo Device 2112   

Flags: bus master, fast devsel, latency 0, IRQ 30   

Memory at f440 (64-bit, non-prefetchable) [size=4M] 

Memory at d000 (64-bit, prefetchable) [size=256M]   

I/O ports at 1800 [size=8]  

Capabilities: access denied   

Kernel driver in use: i915  

Kernel modules: i915

-- 
[g41] X consumes ever-increasing memory
https://bugs.launchpad.net/bugs/410248
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 512010] Re: Lucid needs to be run in safe graphics mode on a Radeon Mobility U1 card

2010-01-27 Thread Bryce Harrington
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command in a terminal after
reproducing the issue, and it it will automatically gather debugging
information needed for this bug:

  apport-collect 512010

(You may need to install the python-launchpadlib package from the
universe repository.  Additionally, when prompted to give apport-collect
permissions for Launchpad you will need to give it at least the ability
to Change Non-Private data as it will be adding information to your
bug report.)

** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: New = Incomplete

-- 
Lucid needs to be run in safe graphics mode on a Radeon Mobility U1 card
https://bugs.launchpad.net/bugs/512010
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


  1   2   >