[Ubuntu-x-swat] [Bug 1217585]

2014-03-16 Thread Ilia Mirkin
Created attachment 95408
initialize stuff for gddr5 ram

This patch is based on Andrew's mmiotrace. I saw a sequence of init that
I didn't see in other traces for working cards. Andrew -- would be
interesting if you could check it out and see if it helps. The algorithm
I came up with is insane -- there has to be some sort of data-driven
thing going on there, but I couldn't work it out.

For people having issues, please do a mmiotrace of the blob loading on
your card (see https://wiki.ubuntu.com/X/MMIOTracing for instructions),
and send it (xz -9'd) to mmio.du...@gmail.com.

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

Title:
  System hangs after some time with nouveau and GT240

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1217585/+subscriptions

___
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 1217585]

2014-03-16 Thread Oleg-3
Created attachment 95418
another patch for gddr5 ram

I made this patch using my mmiotrace, but it doesn't help either.

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

Title:
  System hangs after some time with nouveau and GT240

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1217585/+subscriptions

___
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 1217585]

2014-03-16 Thread Ilia Mirkin
(In reply to comment #29)
 Created attachment 95418 [details] [review]
 another patch for gddr5 ram
 
 I made this patch using my mmiotrace, but it doesn't help either.

Oh well. Indeed the values in your mmiotrace are different, but your and
Andrew's mmiotrace are the only traces I've seen that actually have the
writes to those 0x10fxyz registers. (A few other traces have writes to
the similar-but-different DDR3 registers.)

And yes, I definitely did want to use offsets[o] in my patch.

Well, perhaps this 0x10f stuff has nothing to do with the issue. My
observation was that it seemed like for all the people it was broken for
had GDDR5 ram, which is why I went in this direction.

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

Title:
  System hangs after some time with nouveau and GT240

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1217585/+subscriptions

___
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 1217585]

2014-03-16 Thread Oleg-3
Comment on attachment 95408
initialize stuff for gddr5 ram

Review of attachment 95408:
-

::: drivers/gpu/drm/nouveau/core/subdev/fb/ramnva3.c
@@ +365,5 @@
 + /* XXX this algorithm is insane, find some sanity to it. */
 + /* [1] MMIO32 R 0x100268 0x30030200 PFB.SUBPART_CONFIG = { 
 SELECT_MASK = 0x2 | UNK16 = 0x3 | ENABLE_MASK = 0x3 } */
 + nv_wr32(pfb, 0x10fcac, 0x1f01);
 + for (o = 0; o  4; o++) {
 + int off = offsets[i];

maybe int off = offsets[o]; ?

@@ +387,5 @@
 + for (i = 0x20, idx = 0; i  0x30; i++, idx++) {
 + int pat = pattern[2 + (idx % 2)];
 + if (i == 0x26)
 + pat = 0;
 + if (i == 0x1f)

looks like this condition is always false in this for-loop

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

Title:
  System hangs after some time with nouveau and GT240

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1217585/+subscriptions

___
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 1217585]

2014-03-16 Thread Andrius Štikonas
(In reply to comment #26)
 Created attachment 95408 [details] [review]
 initialize stuff for gddr5 ram
 
 This patch is based on Andrew's mmiotrace. I saw a sequence of init that I
 didn't see in other traces for working cards. Andrew -- would be interesting
 if you could check it out and see if it helps. The algorithm I came up with
 is insane -- there has to be some sort of data-driven thing going on there,
 but I couldn't work it out.
 
 For people having issues, please do a mmiotrace of the blob loading on your
 card (see https://wiki.ubuntu.com/X/MMIOTracing for instructions), and send
 it (xz -9'd) to mmio.du...@gmail.com.

I might be able to test this patch in the middle of April. Sorry, I
can't access that computer now.

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

Title:
  System hangs after some time with nouveau and GT240

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1217585/+subscriptions

___
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 1217585]

2014-03-16 Thread Oleg-3
For me, with this patch the problem is still present. I sent my
mmiotrace (NVIDIA Corporation GT215 [GeForce GT 240]).

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

Title:
  System hangs after some time with nouveau and GT240

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/1217585/+subscriptions

___
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 96676] Re: function keys don't work in gnome-terminal

2014-03-16 Thread Thomas Dickey
That's helpful.  However, Debian has 034 in testing,
which would tend to indicate that this bug could be closed in perhaps two years.

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

Title:
  function keys don't work in gnome-terminal

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-terminal/+bug/96676/+subscriptions

___
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 1274779]

2014-03-16 Thread Chris Wilson
*** Bug 76229 has been marked as a duplicate of this bug. ***

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1274779

Title:
  [ivb] hang on pageflip (IPEHR: 0x0a01 or 0x0a080001 depending on
  pipe)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1274779/+subscriptions

___
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 1270452] Re: Lenovo T440 Touchpad needs custom config

2014-03-16 Thread Blaise Li
** Also affects: archlinux
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/1270452

Title:
  Lenovo T440 Touchpad needs custom config

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1270452/+subscriptions

___
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 1270452] Re: Lenovo T440 Touchpad needs custom config

2014-03-16 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/1270452

Title:
  Lenovo T440 Touchpad needs custom config

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1270452/+subscriptions

___
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 1263471] Re: fglrx 2:13.251-0ubuntu1: fglrx kernel module failed to build

2014-03-16 Thread Ainesh
*** This bug is a duplicate of bug 1263224 ***
https://bugs.launchpad.net/bugs/1263224

this note might help solve this issue :
i have had this issue in my hp pav. g6 with 7xxx series grpahics 
-this old issue kept both card with power on(pwrd) with intel card in use
-before upgrading to ubuntu 13.10 i had ununtu 13.4
-in ubuntu 13.4 i was able to install catalyst control center using this link:
https://help.ubuntu.com/community/BinaryDriverHowto/AMD
using section 3
-I recently upgraded from my kubuntu
-while upgrading i was asked several time whether to keep or replace files and 
i chose to replace ! 
-the problem apeared after upgrading 
with only being able to use terminal 
was able to remove x.org server for graphics and forece remove catalyst

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/1263471

Title:
  fglrx 2:13.251-0ubuntu1: fglrx kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1263471/+subscriptions

___
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 1193238] Re: Xorg freeze

2014-03-16 Thread Christopher M. Penalver
Hồng Quân, could you please test Trusty via http://cdimage.ubuntu.com
/daily-live/current/ and advise if this is reproducible?

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

** Changed in: xorg (Ubuntu)
   Status: Expired = Incomplete

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

Title:
  Xorg freeze

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

___
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 875009] Re: keyboard and mouse not working

2014-03-16 Thread Christopher M. Penalver
Christian, this report is still missing the Trusty test as already
previously noted in https://bugs.launchpad.net/ubuntu/+source/xserver-
xorg-input-evdev/+bug/875009/comments/2 .

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

Title:
  keyboard and mouse not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/875009/+subscriptions

___
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 1091058] Re: 1002:95c4 [Satellite Pro P300-16V] GPU locks up and the screen turns white

2014-03-16 Thread Christopher M. Penalver
** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: Expired = New

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

Title:
  1002:95c4 [Satellite Pro P300-16V] GPU locks up and the screen turns
  white

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1091058/+subscriptions

___
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 1293204] [NEW] problem with loading up a steam game called 'rust'

2014-03-16 Thread Joe
Public bug reported:

the game flickers black for less than a second after i click 'play' on
the playrust configuration window. i've tried all different resolutions
and graphics qualities.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: xorg 1:7.7+1ubuntu6
ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
Uname: Linux 3.11.0-18-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.12.5-0ubuntu2.2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Sun Mar 16 14:16:31 2014
DistUpgraded: Fresh install
DistroCodename: saucy
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. Device [1043:1467]
InstallationDate: Installed on 2014-03-12 (4 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
MachineType: ASUSTeK COMPUTER INC. U47A
MarkForUpload: True
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/20/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: U47A.407
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: U47A
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrU47A.407:bd08/20/2012:svnASUSTeKCOMPUTERINC.:pnU47A:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnU47A:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: U47A
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.46-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu2.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
xserver.bootTime: Sun Mar 16 13:26:07 2014
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id 519 
 vendor COR
xserver.version: 2:1.14.5-1ubuntu2~saucy1

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


** Tags: amd64 apport-bug compiz-0.9 saucy ubuntu

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

Title:
  problem with loading up a steam game called 'rust'

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

___
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 886773] Re: 10de:0407 [Toshiba Qosmio G40-114] Resolution is changed at startup

2014-03-16 Thread Laurent Lyaudet
** Changed in: xorg-server (Ubuntu)
   Status: Incomplete = In Progress

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/886773

Title:
  10de:0407 [Toshiba Qosmio G40-114] Resolution is changed at startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/886773/+subscriptions

___
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 1239186] Re: [Lenovo ThinkPad X220] External screens shut off randomly

2014-03-16 Thread Ricardo Salveti
Was able to reproduce this issue with latest trusty kernel
(3.13.0-17-generic), so marking it as confirmed.

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Incomplete = In Progress

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Importance: Low = High

** Changed in: xserver-xorg-video-intel (Ubuntu)
 Assignee: (unassigned) = Ricardo Salveti (rsalveti)

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1239186

Title:
  [Lenovo ThinkPad X220] External screens shut off randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1239186/+subscriptions

___
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 1013881]

2014-03-16 Thread Sergey V. Udaltsov
Could someone create poll on some french(belgian) web site, linux-
oriented. Which behavior would be preferable?

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/1013881

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

___
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 1013881]

2014-03-16 Thread Colomban Wendling
(In reply to comment #50)
 Could someone create poll on some french(belgian) web site, linux-oriented.
 Which behavior would be preferable?

Is this even necessary?  I mean, the change wasn't made in the first
place because an user wasn't happy with the state, but because some apps
couldn't handle it.  And nowadays, at least some of those apps
(Rhythmbox, Totem, …) have been fixed or altered in a way they do not
suffer from it anymore, actually mostly nullifying the original point.

Also, what a poll would do?  This looks like a pretty subtle problem to me, and 
an uneducated user couldn't really tell.  As far as they are concerned, I would 
think they just want everything working.
Even me, if you ask I would say (as in my previous reply) just fix the 
XLookupString while keeping the original mapping, since IIUC it would fix 
everybody's issue.  But I have no real clue whether it's a pertinent answer or 
not.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/1013881

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

___
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 1013881]

2014-03-16 Thread Dominique Meeùs
More arguments in favor of reverting to an normal behaviour of Ctrl-R:
-- Most computers in most operating systems, languages (including French until 
recently), desktops... have two identical Ctrl keys. It is queer to have French 
keyboards doing otherwise since a few years.
-- Like having two Shift keys, two Ctrl keys are better for easy fast typing.

By the way, breaking the French keyboard breaks the Belgian keyboard
too.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/1013881

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

___
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 1013881]

2014-03-16 Thread Swâmi Petaramesh
(In reply to comment #50)
 Could someone create poll on some french(belgian) web site, linux-oriented.
 Which behavior would be preferable?

A poll would be pointless as its representativeness would be very hard to 
determine.
Most users don't care as long as it works and may not even know there is a 
poll somewhere.

The matter is : French keyboard have, and have always had since the PC
keyboards exist (that makes 30 years), 2 similar [CTRL] keys that have
the same printed label and are expected to exhibit the same behaviour.

AND THEY ALWAYS HAVE BEEN SO IN ANY LINUX OR other OS keymaps, and
especially default keymaps - if anybody wants to customize HER keyboard,
then it's HER choice, but by no means a default.

OTOH French keyboard have a left [Alt] key and a right [AltGr] keys
having different labels and expected to have different roles.

This is extremely clear. Both [CTRL] keys should act as [CTRL] keys.
Left one, rigth one, period.

Some softwares - such as Virtualbox - will want to use the left or right
CTRL key for some specific role, and then it's printed in their
documentation and the corresponding key is supposed to exist and be
correctly mapped. It is nonsense to find oneself with a keymap in which
some highly classical and standard key just doesn't happen to exist
anymore just because of a once-upon-a-time existing issue (since solved)
with a shortcut on a music player that nobody cares about !?!?!? You
don't want to break a professional keyboard just because of arguable
choices in a toy !

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/1013881

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

___
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 1013881]

2014-03-16 Thread Sergey V. Udaltsov
That was just an idea. As usual, when there are controversies... Trying
to be democratic:)

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/1013881

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

___
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 1013881]

2014-03-16 Thread Swâmi Petaramesh
I spent a couple days extremely disappointed to have a broken right
[CTRL] key on a french keyboard on recent Arch installs, thus being
unable to use VirtualBox properly, and googling around (and let me tell
you that my googling showed me a *lot* of french people are really upset
with this as well) I finally found out that this breakage comes from
this commit :

http://cgit.freedesktop.org/xkeyboard-
config/commit/symbols/fr?id=518c769df2e9ce70cb721769a08b81504f243b2a

( http://goo.gl/SWU8Is )

Let me tell you that this breakage of right [CTRL], assigning it to
ANOTHER function than right [CTRL] is completely inappropriate and
upsetting.

I therefore hereby specifically request this absurd modification to be
reverted.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/1013881

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

___
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 1239186] Re: [Lenovo ThinkPad X220] External screens shut off randomly

2014-03-16 Thread Ricardo Salveti
Applied the patch described at the upstream bug
https://bugs.freedesktop.org/show_bug.cgi?id=70254, which seems to fix
the issue described by this bug.

You can find the git tree at http://kernel.ubuntu.com/git?p=rsalveti
/ubuntu-trusty.git;a=shortlog;h=refs/heads/intel-lenovo-x220 and the
kernel packages at http://people.canonical.com/~rsalveti/intel/

Would be nice if anyone could install such kernel and give enough
feedback to see if indeed fixes the issue, so I can push them to the
kernel team.

** Bug watch added: freedesktop.org Bugzilla #70254
   https://bugs.freedesktop.org/show_bug.cgi?id=70254

** Also affects: xserver-xorg-video-intel via
   https://bugs.freedesktop.org/show_bug.cgi?id=70254
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1239186

Title:
  [Lenovo ThinkPad X220] External screens shut off randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1239186/+subscriptions

___
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 1013881]

2014-03-16 Thread Emmanuel Castro
Swâmi Petaramesh, vous avez bien raison !

Hopefuly, Ubuntu 13.10 kept the standard behavior for french keyboards
(both Français and Français (variante) a.k.a French alternative).

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/1013881

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

___
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 1279412] Re: Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()

2014-03-16 Thread Carlos Marcelo Seidem
In vlc, setting the video output (in preferences) to x11 (XCB) works
fine.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/1279412

Title:
  Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1279412/+subscriptions

___
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 1239186] Re: [Lenovo ThinkPad X220] External screens shut off randomly

2014-03-16 Thread Bug Watch Updater
Launchpad has imported 50 comments from the remote bug at
https://bugs.freedesktop.org/show_bug.cgi?id=70254.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2013-10-07T20:55:49+00:00 Robert Navarro wrote:

Created attachment 87256
kernel error output

I'm not sure if this is the right place, but based on the error log it
seemed right.

Anyways, I tried plugging in my two Dell monitors via display port to my
Lenovo x220 machine and it generated these errors in the system log.

I'm not sure if it's related, but the primary reason I opened this bug
was because the monitors will blank after a few minutes of activity. The
timeout period seems random and I can't really correlate it with any one
activity.

I'm running the latest version of the intel graphics drivers, 2013Q3.

## lspci output
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core 
Processor Family Integrated Graphics Controller (rev 09)

## uname -a output
Linux rnavarro-thinkpad 3.8.0-31-generic #46-Ubuntu SMP Tue Sep 10 20:03:44 UTC 
2013 x86_64 x86_64 x86_64 GNU/Linux

## lsb_release -a output
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 13.04
Release:13.04
Codename:   raring

## aptitude show libdrm-intel1 output
Package: libdrm-intel1   
State: installed
Automatically installed: no
Multi-Arch: same
Version: 2.4.45-0ubuntu1
Priority: optional
Section: libs
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
Architecture: amd64
Uncompressed Size: 189 k
Depends: libc6 (= 2.17), libdrm2 (= 2.4.38), libpciaccess0
PreDepends: multiarch-support
Breaks: libdrm-intel1 (!= 2.4.45-0ubuntu1)
Replaces: libdrm-intel1 ( 2.4.45-0ubuntu1)
Description: Userspace interface to intel-specific kernel DRM services -- 
runtime
 This library implements the userspace interface to the intel-specific kernel 
DRM services.  DRM stands for Direct Rendering
 Manager, which is the kernelspace portion of the Direct Rendering 
Infrastructure (DRI). The DRI is currently used on Linux to
 provide hardware-accelerated OpenGL drivers.

## aptitude show libdrm2 output
Package: libdrm2 
State: installed
Automatically installed: no
Multi-Arch: same
Version: 2.4.45-0ubuntu1
Priority: optional
Section: libs
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
Architecture: amd64
Uncompressed Size: 103 k
Depends: libc6 (= 2.17)
PreDepends: multiarch-support
Breaks: libdrm2 (!= 2.4.45-0ubuntu1)
Replaces: libdrm2 ( 2.4.45-0ubuntu1)
Description: Userspace interface to kernel DRM services -- runtime
 This library implements the userspace interface to the kernel DRM services.  
DRM stands for Direct Rendering Manager, which is
 the kernelspace portion of the Direct Rendering Infrastructure (DRI). The 
DRI is currently used on Linux to provide
 hardware-accelerated OpenGL drivers. 
 
 This package provides the runtime environment for libdrm.

Reply at: https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
intel/+bug/1239186/comments/0


On 2013-10-07T20:56:23+00:00 Robert Navarro wrote:

Created attachment 87257
glxinfo output

Reply at: https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
intel/+bug/1239186/comments/1


On 2013-10-07T20:57:10+00:00 Robert Navarro wrote:

Forgot to mention, let me know if there is any other information that
you need or if you'd like me to change any settings to up the debug
level anywhere (along with location)

Reply at: https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
intel/+bug/1239186/comments/2


On 2013-10-08T07:13:57+00:00 Jani-nikula wrote:

You've come to the right place - if you're prepared to build your own
kernels. Please try the drm-intel-nightly branch of [1]. First, your
issues are related to hotplugging and display port link
training/maintenance, both of which have been updated and fixed
considerably in the latest kernels. It could be something we've taken
care of already. Second, I can't find a kernel version where your log
would match the source code; I can only presume it's a distro kernel
with some changes on top. So I don't know what exactly you're running
and what version I should be looking at.

Please report back; if the problem persist, attach the dmesg from early
boot to the problem, with drm.debug=0xe module parameter.

[1] git://people.freedesktop.org/~danvet/drm-intel

Reply at: https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
intel/+bug/1239186/comments/3


[Ubuntu-x-swat] [Bug 1246683] Re: Middle button does not work for scrolling

2014-03-16 Thread Jörg Baach
How do I find out what the ids of the new bug reports are? I am follwing
this bug to decide if I can buy a new thinkpad

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

Title:
  Middle button does not work for scrolling

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/1246683/+subscriptions

___
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 1279412] Re: Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()

2014-03-16 Thread Katsiaris Simos
You also need to be able to start vlc
On Mar 17, 2014 1:20 AM, Carlos Marcelo Seidem 1279...@bugs.launchpad.net
wrote:

 In vlc, setting the video output (in preferences) to x11 (XCB) works
 fine.

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1279412

 Title:
   Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()

 Status in fglrx-installer package in Ubuntu:
   Confirmed

 Bug description:
   XOrg crashed when i try to start playing AVI video file in VLC player
   or Parole player

   ProblemType: Crash
   DistroRelease: Ubuntu 14.04
   Package: xserver-xorg-core 2:1.15.0-1ubuntu3
   ProcVersionSignature: Ubuntu 3.13.0-8.27-generic 3.13.2
   Uname: Linux 3.13.0-8-generic x86_64
   NonfreeKernelModules: fglrx
   ApportVersion: 2.13.2-0ubuntu2
   Architecture: amd64
   CrashCounter: 1
   Date: Wed Feb 12 20:14:55 2014
   ExecutablePath: /usr/bin/Xorg
   InstallationDate: Installed on 2014-02-09 (2 days ago)
   InstallationMedia: Xubuntu 14.04 LTS Trusty Tahr - Alpha amd64
 (20140209)
   ProcCmdline: /usr/bin/X -core :0 -seat seat0 -auth
 /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
   ProcEnviron:

   Signal: 6
   SourcePackage: xorg-server
   StacktraceTop:
xdl_xs115_atiddxPixmapIsTypeOf () from
 /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/drivers/fglrx_drv.so
atiddxPixmapIsTypeOf () from
 /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/drivers/fglrx_drv.so
X740XvPutImage () from
 /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/amdxmm.so
?? ()
?? ()
   Title: Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()
   UpgradeStatus: No upgrade log present (probably fresh install)
   UserGroups:

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1279412/+subscriptions


-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/1279412

Title:
  Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1279412/+subscriptions

___
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 1292675] Re: unity-system-compositor crashed with SIGABRT [gbm: failed to open any driver] [std::exception::what: Failed to create GBM device]

2014-03-16 Thread Daniel van Vugt
hikiko is reporting the same error, but with nouveau -- bug 1291851

** Changed in: mir
   Importance: High = Critical

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

** Changed in: unity-system-compositor (Ubuntu)
   Importance: Medium = Critical

** Changed in: mesa (Ubuntu)
   Importance: Undecided = Critical

** Changed in: mesa (Ubuntu)
   Status: New = Confirmed

** Changed in: unity-system-compositor (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  unity-system-compositor crashed with SIGABRT [gbm: failed to open any
  driver] [std::exception::what: Failed to create GBM device]

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1292675/+subscriptions

___
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 1293314] [NEW] Severe performance regression with xserver 1.15

2014-03-16 Thread luke
Public bug reported:

With Xserver 1.15, OpenGL performance in all games is reduced by almost
half, at least with both Radeon/r600g driver Not sure which actual
package has the issue.  As long a hyper-z is explicitly enabled, mesa
version 10.2 (from oibaf PPA) does not change this regression. With
hyper-z disabled (the new default) another 10-20% reduction in
performance resulted after an approximately 40% loss from the new x
server.

Critter still ran faster than the screen refresh rate, so it was not a
matter of vblank sync being enabled due to any effect of the dri3
transition on an unchanged ~/.drirc .  I am still wondering, however, if
the DRI3 transition is the source of this severe performance loss.


Package tested:

xserver-xorg-core_2%3a1.15.0-1ubuntu6_amd64.deb

Is the version of xserver-xorg-core tested against the last 1.14 version
I have back to back with same mesa and kernel versions. Framerates in
both Critter and Scorched3d were cut roughly in half, 0ad is CPU bound
and mimimally affected. I don't have any other GPU intensive games nor
the bandwidth to download them so cannot benchmark them.

CPUs tested have been AMD FX-8120 and Phenom II x4
GPU's have been Radeon HD6750 and HD5770
proprietary drivers have NOT been tested

Here are the configuration files used with the AMD based desktops:

I use this xorg,conf file:

Identifier Layout0
Screen  0  Screen0
InputDeviceKeyboard0 CoreKeyboard
InputDeviceMouse0 CorePointer
EndSection
Section Files
EndSection

Section InputDevice

# generated from default
Identifier Mouse0
Driver mouse 
Option Protocol auto
Option AccelerationScheme  none
Option Device /dev/psaux
Option Emulate3Buttons no
Option ZAxisMapping 4 5
EndSection

Section InputDevice

# generated from default
Identifier Keyboard0
Driver kbd
EndSection

Section Monitor
Identifier Monitor0
VendorName Unknown
ModelName  Unknown
HorizSync   28.0 - 33.0
VertRefresh 43.0 - 72.0
EndSection

Section Device
Identifier Device0
Driver radeon
Option SwapbuffersWait off   #not the default
Option ColorTiling  on
Option ColorTiling2don   #not the default
EndSection

Section Screen
Identifier Screen0
Device Device0
MonitorMonitor0
DefaultDepth24
SubSection Display
Depth   24
Modes 1920x1080
EndSubSection

EndSection


And this ~/.drirc:

driconf
device screen=0 driver=dri2
application name=Default
option name=fthrottle_mode value=2 /
option name=pp_celshade value=0 /
option name=pp_jimenezmlaa value=3 /
option name=pp_jimenezmlaa_color value=0 /
option name=vblank_mode value=0 /
option name=pp_nored value=0 /
option name=pp_nogreen value=0 /
option name=allow_large_textures value=1 /
option name=pp_noblue value=0 /
/application
application name=cinnamon executable=cinnamon
option name=vblank_mode value=1 /
application name=mplayer executable=mplayer
option name=vblank_mode value=1 /
application name=gnome-mplayer executable=gnome-mplayer
option name=vblank_mode value=1 /
application name=mpv executable=mpv
option name=vblank_mode value=1 /
application name=totem executable=totem
option name=vblank_mode value=1 /
application name=criticalmass executable=critter
option name=vblank_mode value=0 /
/application
application name=glxgears executable=glxgears
option name=vblank_mode value=0 /
/application
application name=scorched3d executable=scorched3d
option name=vblank_mode value=0 /
/application
/device
device screen=0 driver=r600
application name=Default
option name=fthrottle_mode value=2 /
option name=pp_celshade value=0 /
option name=pp_jimenezmlaa value=0 /
option name=pp_jimenezmlaa_color value=0 /
option name=vblank_mode value=1 /
option name=force_glsl_extensions_warn value=false /
option name=pp_nored value=0 /
option name=pp_nogreen value=0 /
option name=allow_large_textures value=1 /
option name=pp_noblue value=0 /
/application
/device
/driconf


And this ~/.profile is used to enable hyper-Z and ensure the sb backend is used 
in Mesa:

export R600_DEBUG=sb
export R600_HYPERZ=1

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

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1293314

Title:
  

[Ubuntu-x-swat] [Bug 1269260] Re: 8086:0166 [Lenovo ThinkPad X230] x hangs after standby

2014-03-16 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

** Changed in: xorg (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  8086:0166 [Lenovo ThinkPad X230] x hangs after standby

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

___
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 1005185] Re: Keystrokes get repeated one time too often

2014-03-16 Thread Launchpad Bug Tracker
[Expired for xorg-server (Ubuntu) because there has been no activity for
60 days.]

** Changed in: xorg-server (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1005185

Title:
  Keystrokes get repeated one time too often

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1005185/+subscriptions

___
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 1092615] Re: X server crashes repeatedly with touchpad movements

2014-03-16 Thread Launchpad Bug Tracker
[Expired for xserver-xorg-input-synaptics (Ubuntu) because there has
been no activity for 60 days.]

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/1092615

Title:
  X server crashes repeatedly with touchpad movements

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1092615/+subscriptions

___
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 1237379] Re: 10de:1245 [Asus M5A99X EVO] standby doesn't work with nouveau

2014-03-16 Thread Launchpad Bug Tracker
[Expired for xserver-xorg-video-nouveau (Ubuntu) because there has been
no activity for 60 days.]

** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  10de:1245 [Asus M5A99X EVO] standby doesn't work with nouveau

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1237379/+subscriptions

___
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 1172221] Re: 8086:0166 JavaFX not working since 12.10

2014-03-16 Thread Launchpad Bug Tracker
[Expired for xorg-server (Ubuntu) because there has been no activity for
60 days.]

** Changed in: xorg-server (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1172221

Title:
  8086:0166 JavaFX not working since 12.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1172221/+subscriptions

___
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 1279412] Re: Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()

2014-03-16 Thread Jordon Bedwell
Can't tell if trolling because nothing is stopping you from opening VLC
and disabling overlay video for the time being.  Stop trying to open it
with a video and you wouldn't have it crashing your X while trying to
fix the problem.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in Ubuntu.
https://bugs.launchpad.net/bugs/1279412

Title:
  Xorg crashed with SIGABRT in xdl_xs115_atiddxPixmapIsTypeOf()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1279412/+subscriptions

___
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 1293204] Re: problem with loading up a steam game called 'rust'

2014-03-16 Thread Daniel Letzeisen
This is probably an issue you should address with Steam or Rust's site.
This site is for bug reports of Ubuntu-supported packages, and there is
nothing in your Xorg log or UnitySupportTest to indicate a general
xorg/graphics problem.

Before I go ahead and mark i t invalid, I suggest taking a look at
output when you start the game in a terminal.

** Changed in: xorg (Ubuntu)
   Status: New = Incomplete

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

Title:
  problem with loading up a steam game called 'rust'

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

___
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