Re: [Bug 1172172] Re: Some multitouch gestures not working on 13.04

2015-06-16 Thread Kyrillos
I agree...since when has Linux become so close minded like windows limiting
user's productivity?

Shame on Canonical!
On Jun 16, 2015 5:01 PM, Siddhanathan Shanmugam 
1172...@bugs.launchpad.net wrote:

 I find it awkward that Unity reserves 3 and 4 finger gestures when a
 touchscreen is not present. Re-compiling unity to get touchegg to work
 is an unnecessary hassle. This should be patched upstream.

 --
 You received this bug notification because you are subscribed to a
 duplicate bug report (1166242).
 https://bugs.launchpad.net/bugs/1172172

 Title:
   Some multitouch gestures not working on 13.04

 Status in Unity:
   Won't Fix
 Status in unity package in Ubuntu:
   Won't Fix

 Bug description:
   3 finger pinch to maximize/restore windows and 3 finger press and
   drag to move window used to work on my Asus X201E on 12.10, but not
   after upgrading to 13.04. All other gestures mentioned in
   https://wiki.ubuntu.com/Multitouch#Supported_Gestures, including four
   finger ones work.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.04
   Package: unity 7.0.0daily13.04.18~13.04-0ubuntu1
   ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
   Uname: Linux 3.8.0-19-generic x86_64
   ApportVersion: 2.9.2-0ubuntu8
   Architecture: amd64
   CompizPlugins: No value set for
 `/apps/compiz-1/general/screen0/options/active_plugins'
   Date: Wed Apr 24 13:31:49 2013
   InstallationDate: Installed on 2013-04-21 (2 days ago)
   InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64
 (20121017.5)
   MarkForUpload: True
   ProcEnviron:
LANGUAGE=en_IN:en
PATH=(custom, no user)
XDG_RUNTIME_DIR=set
LANG=en_IN
SHELL=/bin/bash
   SourcePackage: unity
   UpgradeStatus: Upgraded to raring on 2013-04-21 (2 days ago)

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


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

Title:
  Some multitouch gestures not working on 13.04

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

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


Re: [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-11-23 Thread Kyrillos
Has anyone been able to successfully compile with the patch? Towards the
end when I compile i get an error that I can't seem to work around.

*dpkg-shlibdeps: error: no dependency information found for
/usr/lib/libGL.so.1 (used by
debian/xserver-xorg-core/usr/lib/xorg/modules/extensions/libglx.so)*

Would someone be able to guide me around this?

On Wed, Nov 19, 2014 at 2:29 AM, Erno Kuusela e...@iki.fi wrote:

 End users: Please use another forum (eg. ubuntuforums) for user
 discussion talking about workarounds, manually applying the patch, me
 toos, or other peripheral discussions.

 This bug tracker is about developing Ubuntu, and now you are with all
 this chatter spamming countless developers whose efforts should be
 focused on getting this fixed inside Ubuntu and in xorg. Not to mention
 all us end users monitoring this bug and waiting the packages to be
 fixed, at least 167 of us going by the affects count.

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

 Title:
   [nvidia-prime]Freeze while using touchpad

 Status in X.Org X server:
   Confirmed
 Status in “nvidia-graphics-drivers-319” package in Ubuntu:
   Invalid
 Status in “nvidia-graphics-drivers-331” package in Ubuntu:
   Invalid
 Status in “nvidia-graphics-drivers-343” package in Ubuntu:
   Invalid
 Status in “nvidia-prime” package in Ubuntu:
   Invalid

 Bug description:
   I'm using an Optimus laptop (Asus N43SL)
   nvidia-prime is installed, so my nvidia dedicated graphics card (GT
 540m) is in use.

   Once in a while, my screen will freeze, only when I use my touchpad.
   This does not happen with my USB mouse.
   This does not happen either when I uninstall nvidia-prime and use my
 intel integrated graphics (HD3000).

   I can temporarily solve the issue by doing a VT switch.


   In the attached Xorg.0.log, you can see synaptics: ETPS/2 Elantech
 Touchpad: touchpad found each time I did a VT switch and regained control.

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


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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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

Re: [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-11-13 Thread Kyrillos
Nice work Mikhil!  Can't wait to try the patch! Thank you for your efforts.
Everyone has been waiting for a resolution for quite some time.
On Nov 13, 2014 3:01 AM, Nikhil Mahale nmah...@nvidia.com wrote:

 Hi guys,

 This is a xserver issue where timers-list gets corrupted because of race
 condition.
 nVidia X-driver uses timer to update scanout surface after regular
 interval, this timer gets removed from timers list because of this
 timers-list corruption and desktop gets freezed. This is only happening
 with touch pad because touch pad driver is also heavily using timers, which
 is easily triggering this race condition.

 xserver goes through following race condition -

 WaitForSomething()
 |
   // timers - synaptics-1 - nvidia-2 - null
while (timers  (int) (timers-expires - now) = 0)
// prototype - DoTimer(OsTimerPtr timer, CARD32 now,
 OsTimerPtr *prev)
DoTimer(timers, now, timers)
|
|
 OsBlockSignals();   SIGIO OS Signal comes
 just before blocking it,

 synaptics-1 handler gets called.
   //
 synaptics-1 gets served and scheduled again;
   // timers -
 nvidia-2 - synaptics-1 - null
   
  *prev = timer-next;
   timer-next = NULL;   // timers - null
   // timers list gets corrupted here and
 nvidia-2 gets removed from list.

 Attaching patch to fix this issue, its working for me.


 ** Patch added: 0001-os-Fix-timer-race-conditions.patch

 https://bugs.launchpad.net/ubuntu/+source/nvidia-prime/+bug/1220426/+attachment/4259702/+files/0001-os-Fix-timer-race-conditions.patch

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

 Title:
   [nvidia-prime]Freeze while using touchpad

 Status in “nvidia-graphics-drivers-319” package in Ubuntu:
   Triaged
 Status in “nvidia-graphics-drivers-331” package in Ubuntu:
   Triaged
 Status in “nvidia-graphics-drivers-343” package in Ubuntu:
   Triaged
 Status in “nvidia-prime” package in Ubuntu:
   Triaged

 Bug description:
   I'm using an Optimus laptop (Asus N43SL)
   nvidia-prime is installed, so my nvidia dedicated graphics card (GT
 540m) is in use.

   Once in a while, my screen will freeze, only when I use my touchpad.
   This does not happen with my USB mouse.
   This does not happen either when I uninstall nvidia-prime and use my
 intel integrated graphics (HD3000).

   I can temporarily solve the issue by doing a VT switch.


   In the attached Xorg.0.log, you can see synaptics: ETPS/2 Elantech
 Touchpad: touchpad found each time I did a VT switch and regained control.

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+subscriptions


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

Title:
  [nvidia-prime]Freeze while using touchpad

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+subscriptions

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

Re: [Bug 1172172] Re: Some multitouch gestures not working on 13.04

2014-01-05 Thread Kyrillos
It's unbelievable that 4 iterations later and this still isn't an option
yet despite the numerous amounts of requestsIf a feature is to be
disabled that used to exist and was used for productivity purposes it makes
sense to always keep it an option to not hinder the productivity of the
users who were utilizing it before!


On Sat, Jan 4, 2014 at 7:26 AM, trendzetter 1172...@bugs.launchpad.netwrote:

 BOOO! Ubuntu is losing the spirit.. Down with unity

 --
 You received this bug notification because you are subscribed to a
 duplicate bug report (1166242).
 https://bugs.launchpad.net/bugs/1172172

 Title:
   Some multitouch gestures not working on 13.04

 Status in Unity:
   Won't Fix
 Status in “unity” package in Ubuntu:
   Won't Fix

 Bug description:
   3 finger pinch to maximize/restore windows and 3 finger press and
   drag to move window used to work on my Asus X201E on 12.10, but not
   after upgrading to 13.04. All other gestures mentioned in
   https://wiki.ubuntu.com/Multitouch#Supported_Gestures, including four
   finger ones work.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.04
   Package: unity 7.0.0daily13.04.18~13.04-0ubuntu1
   ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
   Uname: Linux 3.8.0-19-generic x86_64
   ApportVersion: 2.9.2-0ubuntu8
   Architecture: amd64
   CompizPlugins: No value set for
 `/apps/compiz-1/general/screen0/options/active_plugins'
   Date: Wed Apr 24 13:31:49 2013
   InstallationDate: Installed on 2013-04-21 (2 days ago)
   InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64
 (20121017.5)
   MarkForUpload: True
   ProcEnviron:
LANGUAGE=en_IN:en
PATH=(custom, no user)
XDG_RUNTIME_DIR=set
LANG=en_IN
SHELL=/bin/bash
   SourcePackage: unity
   UpgradeStatus: Upgraded to raring on 2013-04-21 (2 days ago)

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


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

Title:
  Some multitouch gestures not working on 13.04

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

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

[Bug 1166242] Re: 3-fingers does not activate window move/resize

2013-04-20 Thread Kyrillos
Multi Touch touchpad - ASUS UX32VD-DB71

These functions should work according to:

https://wiki.ubuntu.com/Multitouch

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

Title:
  3-fingers does not activate window move/resize

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

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


[Bug 1166242] Re: 3-fingers does not activate window move/resize

2013-04-20 Thread Kyrillos
** Changed in: unity (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  3-fingers does not activate window move/resize

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

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


Re: [Bug 1166242] Re: 3-fingers does not activate window move/resize

2013-04-20 Thread Kyrillos
What does that actually mean the wanted behavior has this been changed
from being enabled by default. This is sort of hindering my productivity
On Apr 20, 2013 1:45 PM, Andrea Azzarone 1166...@bugs.launchpad.net
wrote:

 That's the wanted behavior.. wiki pages needs to be updated
 Il giorno 20/apr/2013 19:05, Kyrillos 1166...@bugs.launchpad.net ha
 scritto:

  Multi Touch touchpad - ASUS UX32VD-DB71
 
  These functions should work according to:
 
  https://wiki.ubuntu.com/Multitouch
 
  --
  You received this bug notification because you are subscribed to unity
  in Ubuntu.
  https://bugs.launchpad.net/bugs/1166242
 
  Title:
3-fingers does not activate window move/resize
 
  Status in “unity” package in Ubuntu:
Incomplete
 
  Bug description:
3-finger move/resize stopped working with a raring update I got on
Saturday April 6. 4-fingers works with the dash and launcher. 3-finder
double-tab-and-hold does show the switcher. But 3-finger-tap does not
trigger the grab handles. Tapping dragging does move the window.
 
ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: unity 7.0.0daily13.04.05.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-16.26-generic 3.8.5
Uname: Linux 3.8.0-16-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.9.2-0ubuntu5
Architecture: amd64
CompizPlugins: No value set for
  `/apps/compiz-1/general/screen0/options/active_plugins'
Date: Mon Apr  8 10:37:30 2013
InstallationDate: Installed on 2011-10-15 (540 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64
  (20111012)
MarkForUpload: True
SourcePackage: unity
UpgradeStatus: Upgraded to raring on 2013-03-16 (23 days ago)
 
  To manage notifications about this bug go to:
 
 https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1166242/+subscriptions
 

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

 Title:
   3-fingers does not activate window move/resize

 Status in “unity” package in Ubuntu:
   Confirmed

 Bug description:
   3-finger move/resize stopped working with a raring update I got on
   Saturday April 6. 4-fingers works with the dash and launcher. 3-finder
   double-tab-and-hold does show the switcher. But 3-finger-tap does not
   trigger the grab handles. Tapping dragging does move the window.

   ProblemType: Bug
   DistroRelease: Ubuntu 13.04
   Package: unity 7.0.0daily13.04.05.2-0ubuntu1
   ProcVersionSignature: Ubuntu 3.8.0-16.26-generic 3.8.5
   Uname: Linux 3.8.0-16-generic x86_64
   NonfreeKernelModules: wl
   ApportVersion: 2.9.2-0ubuntu5
   Architecture: amd64
   CompizPlugins: No value set for
 `/apps/compiz-1/general/screen0/options/active_plugins'
   Date: Mon Apr  8 10:37:30 2013
   InstallationDate: Installed on 2011-10-15 (540 days ago)
   InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64
 (20111012)
   MarkForUpload: True
   SourcePackage: unity
   UpgradeStatus: Upgraded to raring on 2013-03-16 (23 days ago)

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


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

Title:
  3-fingers does not activate window move/resize

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

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

Re: [Bug 804595] Re: Sony Vaio VPCS132FX/B Ambient Light sensor does not work

2011-10-24 Thread Kyrillos
Does this control just keyboard backlight only or will it enable the ambient
light sensor to change display backlight as well since this is the full use
of the sensor? I haven't tried your solution yet but I would still flag this
as a bug if it doesn't control display backlight. I will report back later
today

On Sun, Oct 23, 2011 at 5:36 AM, Damian Beltrami
804...@bugs.launchpad.netwrote:

 Seems like this is a kernel issue, with users of other Distros
 experiencing the same problem.

 A fix is:

  Added file sony-laptop.conf with single line:
options sony-laptop kbd_backlight=1
  to /etc/modprobe.d/ and it seems to work fine now.

 As per http://www.fedoraforum.org/forum/showthread.php?t=268249

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

 Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

 Status in “linux” package in Ubuntu:
  Confirmed

 Bug description:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work to dim
  backlit keyboard and display. Backlight for Keyboard stays on
  constantly with every key stroke and times out after a bit. Also Power
  Manager does not dim display when On Battery when the option is
  checked. This dramatically kills battery and makes the whole Intel
  IPM(Intelligent Power Management) patch useless There is a patch
  for the F Series posted on http://code.google.com/p/vaio-f11-linux/.
  This patch only works with a plain linux kernel meaning I would lose
  all the Ubuntu related patches to the plain linux kernel. I'm sure It
   wouldn't be hard to apply this to a new kernel release. There has been
  support added for Macbooks with the same type of ambient light sensor
  hardware, is it possible that this can be streamlined to the Sony Vaio
  line?

   ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: gnome-control-center 1:2.32.1-0ubuntu15
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri Jul  1 19:12:12 2011
  ExecutablePath: /usr/bin/gnome-keyboard-properties
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64
 (20110427.1)
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, user)
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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



-- 
Kyrillos Mossad
BS Electrical Engineering
New Jersey Institute of Technology

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

Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

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

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

Re: [Bug 804595] Re: Sony Vaio VPCS132FX/B Ambient Light sensor does not work

2011-10-24 Thread Kyrillos
This wasn't working on the kernel's before 3.0 either I had to use the patch
on code.google.com I forget what kernel version was the last working version
On Oct 24, 2011 5:06 PM, Damian Beltrami 804...@bugs.launchpad.net
wrote:

 This is still a bug.

 The fix I posted appears to set backlighting on when keys are pressed
 (and switches it off after the set delay time).  The ambient light
 sensor does not appear to work (ie. in a fully lit room, the keyboard
 still lights up).

 I am certain this is a kernel regression.  It worked fine prior to the
 3.0 kernel release.

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

 Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

 Status in “linux” package in Ubuntu:
  Confirmed

 Bug description:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work to dim
  backlit keyboard and display. Backlight for Keyboard stays on
  constantly with every key stroke and times out after a bit. Also Power
  Manager does not dim display when On Battery when the option is
  checked. This dramatically kills battery and makes the whole Intel
  IPM(Intelligent Power Management) patch useless There is a patch
  for the F Series posted on http://code.google.com/p/vaio-f11-linux/.
  This patch only works with a plain linux kernel meaning I would lose
  all the Ubuntu related patches to the plain linux kernel. I'm sure It
  wouldn't be hard to apply this to a new kernel release. There has been
  support added for Macbooks with the same type of ambient light sensor
  hardware, is it possible that this can be streamlined to the Sony Vaio
  line?

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: gnome-control-center 1:2.32.1-0ubuntu15
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri Jul  1 19:12:12 2011
  ExecutablePath: /usr/bin/gnome-keyboard-properties
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64
 (20110427.1)
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, user)
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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

Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

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

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

Re: [Bug 804595] Re: Sony Vaio VPCS132FX/B Ambient Light sensor does not work

2011-10-24 Thread Kyrillos
http://code.google.com/p/vaio-f11-linux/

I applied the patch in the older kernels before 3.0 I haven't tested the
patch they have for 3.0 I will do this tomorrow
On Oct 24, 2011 6:25 PM, Joseph Salisbury joseph.salisb...@canonical.com
wrote:

 Kyrillos,

 Could you attach the patch that you used on code.google.com?

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

 Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

 Status in “linux” package in Ubuntu:
  Confirmed

 Bug description:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work to dim
  backlit keyboard and display. Backlight for Keyboard stays on
  constantly with every key stroke and times out after a bit. Also Power
  Manager does not dim display when On Battery when the option is
  checked. This dramatically kills battery and makes the whole Intel
  IPM(Intelligent Power Management) patch useless There is a patch
  for the F Series posted on http://code.google.com/p/vaio-f11-linux/.
  This patch only works with a plain linux kernel meaning I would lose
  all the Ubuntu related patches to the plain linux kernel. I'm sure It
  wouldn't be hard to apply this to a new kernel release. There has been
  support added for Macbooks with the same type of ambient light sensor
  hardware, is it possible that this can be streamlined to the Sony Vaio
  line?

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: gnome-control-center 1:2.32.1-0ubuntu15
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri Jul  1 19:12:12 2011
  ExecutablePath: /usr/bin/gnome-keyboard-properties
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64
 (20110427.1)
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, user)
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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

Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

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

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

[Bug 804595] Re: Sony Vaio VPCS132FX/B Ambient Light sensor does not work

2011-07-02 Thread Kyrillos
** Description changed:

  Sony Vaio VPCS132FX/B Ambient Light sensor does not work to dim backlit
  keyboard and display. Backlight for Keyboard stays on constantly with
  every key stroke and times out after a bit. Also Power Manager does not
  dim display when On Battery when the option is checked. This
  dramatically kills battery and makes the whole Intel IPM(Intelligent
  Power Management) patch useless There is a patch for the F Series
  posted on http://code.google.com/p/vaio-f11-linux/. This patch only
  works with a plain linux kernel meaning I would lose all the Ubuntu
  related patches to the plain linux kernel. I'm sure It wouldn't be hard
- to apply this to a new kernel release
+ to apply this to a new kernel release. There has been support added for
+ Macbooks with the same type of ambient light sensor hardware, is it
+ possible that this can be streamlined to the Sony Vaio line?
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: gnome-control-center 1:2.32.1-0ubuntu15
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri Jul  1 19:12:12 2011
  ExecutablePath: /usr/bin/gnome-keyboard-properties
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  ProcEnviron:
-  SHELL=/bin/bash
-  PATH=(custom, user)
-  LANGUAGE=en_US:en
-  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+  PATH=(custom, user)
+  LANGUAGE=en_US:en
+  LANG=en_US.UTF-8
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)

** Changed in: ubuntu
   Status: New = Confirmed

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

Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

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

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

[Bug 804595] [NEW] Sony Vaio VPCS132FX/B Ambient Light sensor does not work

2011-07-01 Thread Kyrillos
Public bug reported:

Sony Vaio VPCS132FX/B Ambient Light sensor does not work to dim backlit
keyboard and display. Backlight for Keyboard stays on constantly with
every key stroke and times out after a bit. Also Power Manager does not
dim display when On Battery when the option is checked. This
dramatically kills battery and makes the whole Intel IPM(Intelligent
Power Management) patch useless There is a patch for the F Series
posted on http://code.google.com/p/vaio-f11-linux/. This patch only
works with a plain linux kernel meaning I would lose all the Ubuntu
related patches to the plain linux kernel. I'm sure It wouldn't be hard
to apply this to a new kernel release

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: gnome-control-center 1:2.32.1-0ubuntu15
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
Architecture: amd64
Date: Fri Jul  1 19:12:12 2011
ExecutablePath: /usr/bin/gnome-keyboard-properties
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, user)
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug natty running-unity

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

Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

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

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


[Bug 804595] Re: Sony Vaio VPCS132FX/B Ambient Light sensor does not work

2011-07-01 Thread Kyrillos
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/804595

Title:
  Sony Vaio VPCS132FX/B Ambient Light sensor does not work

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

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