[Bug 1249504] Re: Ubuntu installer crashes

2013-11-08 Thread Gavin Smith
** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/installation-guide/+bug/1249504/+attachment/3903560/+files/syslog

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

Title:
  Ubuntu installer crashes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/installation-guide/+bug/1249504/+subscriptions

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


[Bug 1249504] Re: Ubuntu installer crashes

2013-11-08 Thread Gavin Smith
** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/installation-guide/+bug/1249504/+attachment/3903561/+files/syslog

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

Title:
  Ubuntu installer crashes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/installation-guide/+bug/1249504/+subscriptions

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


[Bug 1229576] Re: Webcam preview have half image display and black screen in some resolutions

2013-10-31 Thread Gavin Guo
** Tags removed: verification-needed-quantal
** Tags added: verification-done-quantal

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

Title:
  Webcam preview have half image display and black screen in some
  resolutions

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1229576/+subscriptions

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


[Bug 1243917] Re: 'maas createsuperuser' errors out if no email address is entered.

2013-10-23 Thread Gavin Panella
Can we create our own wrapper around django-admin (here spelled "maas")
that only exposes the commands directly relevant to MAAS. We could have
a maas-django-admin too, for people who want to shoot at their feet.

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

Title:
  'maas createsuperuser' errors out if no email address is entered.

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

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


[Bug 1153077] Re: rabbitmq queue fills up and celery stops executing tasks when upload_dhcp_leases is done every minute (by default)

2013-10-15 Thread Gavin Panella
Erick, thanks for uploading your leases file. I've improved the code so
that it parses it in less than a couple of seconds, and there's plenty
of scope for improving that. I'll try to polish it and land it later
this week.

** Branch linked: lp:~allenap/maas/dhcp-leases-parsing

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

Title:
  rabbitmq queue fills up and celery stops executing tasks when
  upload_dhcp_leases is done every minute (by default)

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

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


[Bug 1237615] Re: python-bson-ext does not encode binary in Apache with mod_wsgi

2013-10-11 Thread Gavin Panella
To summarise, WSGIImportScript was using application-group=maas.
Changing it to application-group=%{GLOBAL} resolved the issue.

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

Title:
  python-bson-ext does not encode binary in Apache with mod_wsgi

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

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


[Bug 1237615] Re: python-bson-ext does not encode binary in Apache with mod_wsgi

2013-10-10 Thread Gavin Panella
I can reproduce this - and demonstrate a fix - on a machine with apache2
and libapache2-mod-wsgi. See the attached archive; expand and run `make
demo`.

** Attachment added: "Demonstration of bson bug and fix."
   
https://bugs.launchpad.net/ubuntu/+source/pymongo/+bug/1237615/+attachment/3872869/+files/bsonbug.tar.gz

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

Title:
  python-bson-ext does not encode binary in Apache with mod_wsgi

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

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


[Bug 1237615] [NEW] python-bson-ext does not encode binary in Apache with mod_wsgi

2013-10-09 Thread Gavin Panella
Public bug reported:

In a component of MAAS we're using python-bson to dump out structures
containing binary data. Everything works fine in development, but breaks
in production under Apache.

In Python 2.x (we're using 2.7) it's necessary to wrap str/bytes objects
in bson.binary.Binary; the encoder then does an isinstance check and
encodes these objects as binary data - or "\x05" e_name binary, from the
spec. However, under Apache our binary data is being encoded as string
data - or "\x02" e_name string, from the spec. When decoding this
becomes a unicode object, which chokes the next part of the MAAS's
processing.

I think this is due to the C extension module. Apache and/or mod_wsgi
does some weird things with Python contexts (I don't know much about
this, just enough to know it can be a problem), and I suspect the
PyObject_IsInstance(value, state->Binary) condition in
bson/_cbsonmodule.c is failing because state->Binary is referencing a
different Binary type than MAAS's code is.

The following are the mod_wsgi directives we're using in Apache:

{{{
WSGIDaemonProcess maas user=maas group=maas processes=2 threads=1 
display-name=%{GROUP}

# Without this, defining a tag as a malformed xpath expression will hang
# the region controller.
# See 
https://techknowhow.library.emory.edu/blogs/branker/2010/07/30/django-lxml-wsgi-and-python-sub-interpreter-magic
WSGIApplicationGroup %{GLOBAL}

WSGIScriptAlias /MAAS  /usr/share/maas/wsgi.py
# Preload application when process starts. This will allow publishing
# the MAAS server existence over Avahi.
WSGIImportScript /usr/share/maas/wsgi.py process-group=maas 
application-group=maas
WSGIPassAuthorization On


WSGIProcessGroup maas

}}}

$ apt-cache policy apache2 libapache2-mod-wsgi python-bson python-bson-ext 
apache2:
  Installed: 2.4.6-2ubuntu2
  Candidate: 2.4.6-2ubuntu2
  Version table:
 *** 2.4.6-2ubuntu2 0
500 http://gb.archive.ubuntu.com/ubuntu/ saucy/main amd64 Packages
100 /var/lib/dpkg/status
libapache2-mod-wsgi:
  Installed: 3.4-4
  Candidate: 3.4-4
  Version table:
 *** 3.4-4 0
500 http://gb.archive.ubuntu.com/ubuntu/ saucy/main amd64 Packages
100 /var/lib/dpkg/status
python-bson:
  Installed: 2.6-1
  Candidate: 2.6-1
  Version table:
 *** 2.6-1 0
500 http://gb.archive.ubuntu.com/ubuntu/ saucy/main amd64 Packages
100 /var/lib/dpkg/status
python-bson-ext:
  Installed: 2.6-1
  Candidate: 2.6-1
  Version table:
 *** 2.6-1 0
500 http://gb.archive.ubuntu.com/ubuntu/ saucy/main amd64 Packages
100 /var/lib/dpkg/status

** Affects: maas
 Importance: Critical
 Status: Triaged

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

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

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

** Also affects: maas
   Importance: Undecided
   Status: New

** Changed in: maas
   Status: New => Triaged

** Changed in: maas
   Importance: Undecided => Critical

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

Title:
  python-bson-ext does not encode binary in Apache with mod_wsgi

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

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


[Bug 1233831] Re: maas doesn't return zookeeper instances for newly provision environment

2013-10-01 Thread Gavin Panella
This looks like Juju is not writing the provider-state file correctly.
You're using PyJuju. Have you tried using juju-core instead? That might
help us isolate the problem to either Juju or MAAS.

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

Title:
  maas doesn't return zookeeper instances for newly provision
  environment

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

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


[Bug 424833] Re: python-webkit doesn't honor http_proxy anymore

2013-09-25 Thread Gavin Bisesi
Does this package have a maintainer? This still isn't included in the
precise package version.

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

Title:
  python-webkit doesn't honor http_proxy anymore

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

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


[Bug 1229576] Re: Webcam preview have half image display and black screen in some resolutions

2013-09-24 Thread Gavin Guo
** No longer affects: linux-lts-quantal (Ubuntu)

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

Title:
  Webcam preview have half image display and black screen in some
  resolutions

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

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


[Bug 1229576] Re: Webcam preview have half image display and black screen in some resolutions

2013-09-24 Thread Gavin Guo
** Also affects: linux-lts-quantal (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Webcam preview have half image display and black screen in some
  resolutions

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

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


[Bug 1229576] [NEW] Webcam preview have half image display and black screen in some resolutions

2013-09-24 Thread Gavin Guo
Public bug reported:

Dell System Inspiron 14 7000 Series 7437

CPU: Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz (4x)
GPU: 00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT 
Integrated Graphics Controller (rev 09)
BiosVersion: X21

HA4-E3-C1 Primax (0bda:5601 , 50-77501WNC8)
HA7-E3-C2 Liteon (0bda:5750, _13P2SF109)

Both of the modules use realtek chipset.

In the 1280x720 resolution only have half image displayed camera preview
and still image; in 960x540 resolution camera preview displayed with
full black but camera LED is enabled.

Furthermore, camera test "multiple-resolution-images" also failed.
When testing by manually take still images in different resolution, camera will 
hangs when switch to another resolution.

Steps:
1. install manifest X08 and boot into OS
2. Run camera test "multiple-resolution-images" which takes multiple pictures 
based on the resolution supported by the camera and validates their sizze and 
that they are of a valid format.

Expected results: Test got passed with multiple images successfully
taked in each resolution.

Actual results: Can't take still image in each resolution.

** Affects: linux (Ubuntu)
 Importance: High
 Assignee: Gavin Guo (mimi0213kimo)
 Status: Confirmed


** Tags: blocks-hwcert-enablement

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

Title:
  Webcam preview have half image display and black screen in some
  resolutions

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

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


[Bug 1207757] Re: Scroll momentum is not being damped when a pane reaches its limits

2013-09-23 Thread Gavin Panella
I can reproduce in Chromium 29.0.1547.65 Ubuntu 13.10
(29.0.1547.65-0ubuntu2) and in Google Chrome 29.0.1547.76.

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

Title:
  Scroll momentum is not being damped when a pane reaches its limits

To manage notifications about this bug go to:
https://bugs.launchpad.net/chromium-browser/+bug/1207757/+subscriptions

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


[Bug 1207757] Re: Scroll momentum is not being damped when a pane reaches its limits

2013-09-17 Thread Gavin Panella
Fwiw, this happens to me several times a day, even though I'm trying to
change my habits to workaround it. It also took me several weeks to
figure out the cause of the problem, so I wonder if this bug's "affects"
count is unchanged because people (a) don't know what's causing the
problem they're seeing, and (b) don't know how to phrase it to the bug
tracker anyway.

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

Title:
  Scroll momentum is not being damped when a pane reaches its limits

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

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


[Bug 1154443] Re: HP Pavilion p6 - System freezes during suspend/resume

2013-08-20 Thread Gavin Guo
I've tested fglrx & fglrx-updates about 3 times and each 50 reps of
suspending and resuming by fwts 2 times and manually 1 time. Both driver
cannot pass these tests. I think the suspend & resume function support
is buggy and need AMD's help.

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

Title:
  HP Pavilion p6 - System freezes during suspend/resume

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

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


[Bug 1153937] Re: 1022:7806 [HP Pavilion p6-2120 Desktop PC] Card reader does not read SDHC cards

2013-08-12 Thread Gavin Guo
I've attached the dmidecode log for comparison if this platform is the
same as the one Jeff Lane tested before.

** Attachment added: "dmidecode.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153937/+attachment/3768940/+files/dmidecode.log

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

Title:
  1022:7806 [HP Pavilion p6-2120 Desktop PC] Card reader does not read
  SDHC cards

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

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


[Bug 1154443] Re: HP Pavilion p6 - System freezes during suspend/resume

2013-08-11 Thread Gavin Guo
After testing the suspend-and-resume 30 times with saucy daily build
kernel which used Radeon driver by default, it succeed. And I need to
find out what's the difference between the 2 kernel.

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

Title:
  HP Pavilion p6 - System freezes during suspend/resume

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

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


[Bug 1132640] Re: Asus K43BR will not boot installer kernel

2013-08-07 Thread Gavin Guo
After rechecking with Yung and we can't assure the exact time when the
platform will be back.

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

Title:
  Asus K43BR will not boot installer kernel

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

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


[Bug 1154443] Re: HP Pavilion p6 - System freezes during suspend/resume

2013-08-07 Thread Gavin Guo
I found that in the failure case, the bios was booting into the general
booting process. While the success case, the kernel was booting into the
resuming process. The failure one mentioned before can't be rebooted
using the magic key and don't have any dmesg. However, the other one
which booted into the kernel and have random artifacts can't be rebooted
with magic key may be the graphics problem, which need more time to
figure out.

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

Title:
  HP Pavilion p6 - System freezes during suspend/resume

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

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


[Bug 1208497] Re: netboot flag defaults to 'true' on upgrade, even for allocated nodes

2013-08-05 Thread Gavin Panella
** Also affects: maas
   Importance: Undecided
   Status: New

** Changed in: maas
   Status: New => Triaged

** Changed in: maas
   Importance: Undecided => Critical

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

Title:
  netboot flag defaults to 'true' on upgrade, even for allocated nodes

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

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


[Bug 1207757] [NEW] Scroll momentum is not being damped when a pane reaches its limits

2013-08-02 Thread Gavin Panella
Public bug reported:

This manifests most in Chrome for me. I fling-scroll a page to the top,
it reaches the top, then I press Ctrl and the page will zoom in
suddenly. I think the fling momentum is not being damped when the page
reaches the top. I would expect the momentum to be damped in the same
way as the page is when it reaches the top.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: unity 7.1.0+13.10.20130729-0ubuntu1
ProcVersionSignature: Ubuntu 3.10.0-6.17-generic 3.10.3
Uname: Linux 3.10.0-6-generic x86_64
ApportVersion: 2.11-0ubuntu1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Fri Aug  2 14:30:35 2013
InstallationDate: Installed on 2013-07-24 (8 days ago)
InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
MarkForUpload: True
SourcePackage: unity
UpgradeStatus: Upgraded to saucy on 2013-07-24 (8 days ago)

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


** Tags: amd64 apport-bug saucy third-party-packages

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

Title:
  Scroll momentum is not being damped when a pane reaches its limits

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

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


[Bug 1153937] Re: HP Pavilion p6 - Card reader does not read SDHC cards

2013-08-02 Thread Gavin Guo
I've tested 4 kinds of SD card. The first is U1 16GB SDHC from Toshiba
which fail to read. Secondly, class 10 SDHC 4GB from mushkin which is
the most high speed one with 25MB/s. Thirdly, class 4 SDHC from SanDisk
which has been measured 15MB/s. The last is U1 SDHC 8GB from SanDisk
which has been measured about 15MB/s. I think that the case SDHC can't
read bug may be a special case which shows in the test like the first U1
16GB SDHC from Toshiba can't be read. And I also used the same kernel
version 3.5.0-25.

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

Title:
  HP Pavilion p6 - Card reader does not read SDHC cards

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

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


[Bug 1132640] Re: Asus K43BR will not boot installer kernel

2013-07-30 Thread Gavin Guo
I have checked with certification team, as Some of the ASUS platforms
have been call back and also spend some time to find in the lab. There
is no K43BR in Taipei office.

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

Title:
  Asus K43BR will not boot installer kernel

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

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


[Bug 1034197] Re: Out of memory error when running min_free_kbytes testcase on precise-updates on armadaxp

2013-07-30 Thread Gavin Guo
** Changed in: linux-armadaxp (Ubuntu)
 Assignee: Gavin Guo (mimi0213kimo) => (unassigned)

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

Title:
  Out of memory error when running min_free_kbytes testcase on precise-
  updates on armadaxp

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

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


[Bug 1197616] Re: Bluetooth sometimes does not work after resuming from suspend

2013-07-30 Thread Gavin Guo
@Ming,

I've used 3.5.0-22-generic and added your patch with the command "fwts
s3 --s3-multiple=10 --s3-max-delay=5 --s3-min-delay=5" tried 3 times. It
seems the bug is fixed with your patch.

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

Title:
  Bluetooth sometimes does not work after resuming from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1197616/+subscriptions

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


[Bug 1197616] Re: Bluetooth sometimes does not work after resuming from suspend

2013-07-29 Thread Gavin Guo
I've tried to test again and it seems there are some problem with read error.
u@u-Inspiron-3137:~$ dmesg | grep error
[6.571775] usb 2-7: device descriptor read/8, error -110
[   11.690873] usb 2-7: device descriptor read/8, error -110
[   12.512528] EXT4-fs (sda3): re-mounted. Opts: errors=remount-ro
[   16.922015] usb 2-7: device descriptor read/8, error -110
[   22.041155] usb 2-7: device descriptor read/8, error -110
[   27.272312] usb 2-7: device descriptor read/8, error -110
[   32.391447] usb 2-7: device descriptor read/8, error -110
[   37.622581] usb 2-7: device descriptor read/8, error -110
[   42.741775] usb 2-7: device descriptor read/8, error -110

Bluetooth message shows no fw loading error.
u@u-Inspiron-3137:~$ dmesg | grep Blue
[   13.192066] Bluetooth: Core ver 2.16
[   13.192094] Bluetooth: HCI device and connection manager initialized
[   13.192096] Bluetooth: HCI socket layer initialized
[   13.192098] Bluetooth: L2CAP socket layer initialized
[   13.192108] Bluetooth: SCO socket layer initialized
[   13.229912] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 
[   13.229916] Bluetooth: BNEP filters: protocol multicast
[   13.241922] Bluetooth: RFCOMM TTY layer initialized
[   13.241928] Bluetooth: RFCOMM socket layer initialized
[   13.241930] Bluetooth: RFCOMM ver 1.11

lsusb can't see the broadcom bluetooth device.
u@u-Inspiron-3137:~$ lsusb 
Bus 001 Device 002: ID 8087:8000 Intel Corp. 
Bus 002 Device 002: ID 0c45:6a00 Microdia 
Bus 002 Device 007: ID 04f3:016c Elan Microelectronics Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub

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

Title:
  Bluetooth sometimes does not work after resuming from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1197616/+subscriptions

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


[Bug 1197616] Re: Bluetooth sometimes does not work after resuming from suspend

2013-07-29 Thread Gavin Guo
I've installed the kernel mentioned before. It's weird that the
bluetooth device is disappear in lsusb. Even when I reboot, then enter
the old kernel 3.5.0-22, the problem still existed. I'll try to shutdown
and calm down the machine then try it again. Because the battery is hard
to remove.

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

Title:
  Bluetooth sometimes does not work after resuming from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1197616/+subscriptions

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


[Bug 1199342] Re: Needs 10de:11c4 added to supported NVIDIA drivers

2013-07-22 Thread Gavin Guo
Installing the nvidia-common, I got the following error messages.

u@u-Alienware-X51-R2:~$ sudo apt-get install nvidia-prime 
[sudo] password for u: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed:
  nvidia-prime
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/4,538 B of archives.
After this operation, 51.2 kB of additional disk space will be used.
Selecting previously unselected package nvidia-prime.
(Reading database ... 159219 files and directories currently installed.)
Unpacking nvidia-prime (from .../nvidia-prime_0.2_all.deb) ...
cat: /etc/lightdm/lightdm.conf: No such file or directory
Setting up nvidia-prime (0.2) ...
cp: cannot stat ‘/usr/share/nvidia-prime/lightdm.conf’: No such file or 
directory
dpkg: error processing nvidia-prime (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 nvidia-prime
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

Title:
  Needs 10de:11c4 added to supported NVIDIA drivers

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

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

[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-07-21 Thread Gavin Guo
the configuration was already enabled in the

commit f3ce39309d9416473ba79035267a42d4dac0a11d
Author: Tim Gardner 
Date:   Tue May 14 13:45:10 2013 -0600

UBUNTU: rebase to v3.10-rc1

Signed-off-by: Tim Gardner 

-CONFIG_HOTPLUG_PCI_ACPI=m
+CONFIG_HOTPLUG_PCI_ACPI=y

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1182296] Re: [Dell Precision T7600] System fails to resume from suspend

2013-07-19 Thread Gavin Guo
I think the suspend()/resume() callback function implementing in the
driver is buggy. We need nVidia's help to debug these two functions.

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

Title:
  [Dell Precision T7600] System fails to resume from suspend

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

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


[Bug 1199342] Re: Needs 10de:11c4 added to supported NVIDIA drivers

2013-07-16 Thread Gavin Guo
The platform provided by the certification team doesn't have the GFX645
card, and Yung help to search the database, finding that Taipei office
have one platform using GFX645, which is not in the certification block
and may in the QA team. I will reach the platform in the following day.

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

Title:
  Needs 10de:11c4 added to supported NVIDIA drivers

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

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


[Bug 1199342] Re: Needs 10de:11c4 added to supported NVIDIA drivers

2013-07-15 Thread Gavin Guo
I have booked the platform which is used by certification test currently
and will be handed over to me after completing certification test.

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

Title:
  Needs 10de:11c4 added to supported NVIDIA drivers

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-07-10 Thread Gavin Guo
@Anthony, the next step will send a patch, which enable the
CONFIG_HOTPLUG_PCI_ACPI=y,  to the Ubuntu mainline when I have
bandwidth.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1182296] Re: [Dell Precision T7600] System fails to resume from suspend

2013-07-01 Thread Gavin Guo
Woking with Yung & Po-Hsu for finding out the platform which used the
same nvs-300 nVidia graphics, we didn't find a platform with the same
grphaics which passed the verification. It should be a bug with
malfunctioned driver issue.

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

Title:
  [Dell Precision T7600] System fails to resume from suspend

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-07-01 Thread Gavin Guo
I've tested with latest v3.10 released today. It works, the difference
is that it needs to enable the CONFIG_HOTPLUG_PCI_ACPI=y.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-06-12 Thread Gavin Guo
Yung found that some platforms use the pciehp driver instead of acpiphp
one. And I tried to find what's the difference. The answer is the
platform using pciehp uses irq 41, the PME pciehp, and the one using
acpiphp uses irq 9, the acpi default irq. So, what reason make the
difference? The platform uses acpi irq #9 as shared irq because of irq's
scarcity.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-06-12 Thread Gavin Guo
After discussing with Jmleddy, the bug will be waiting until 3.10.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1172336] Re: MAAS server reference to AvahiBoot wiki page that does not exist

2013-06-07 Thread Gavin Panella
** Changed in: maas
 Assignee: (unassigned) => Gavin Panella (allenap)

** Changed in: maas
   Status: Triaged => In Progress

** Branch linked: lp:~allenap/maas/remove-avahiboot-wiki-references

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

Title:
  MAAS server reference to AvahiBoot wiki page that does not exist

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

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


[Bug 963736] Re: thunderbird and firefox freeze at random : must be killed and restarted

2013-05-31 Thread Gavin Sharpe
gtk2-engines-oxygen:amd641.3.3-2ubuntu0.1
All working as it should be here, no problems with this version.

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

Title:
  thunderbird and firefox freeze at random : must be killed and
  restarted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk2-engines-oxygen/+bug/963736/+subscriptions

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


[Bug 1153077] Re: rabbitmq queue fills up and celery stops executing tasks when upload_dhcp_leases is done every minute (by default)

2013-05-29 Thread Gavin Panella
That maas.log from jhujhiti is packed with OAuthUnauthorized exceptions.

Right at the end of celery.log there's:

[2013-05-29 10:33:56,514: INFO/MainProcess] Got task from broker:
provisioningserver.tasks.refresh_secrets[842cc6d7-7e55-4098-a31e-
221b87b0b545]

and a little time later:

[2013-05-29 10:41:28,385: INFO/PoolWorker-3] Not sending DHCP leases to
server: not all required knowledge received from server yet.  Missing:
api_credentials, nodegroup_uuid

which suggests that refresh_secrets has not fully worked.

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

Title:
  rabbitmq queue fills up and celery stops executing tasks when
  upload_dhcp_leases is done every minute (by default)

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

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


[Bug 1184219] Re: Piston Django 1.5 incompatibility with simplejson 2.2

2013-05-28 Thread Gavin Panella
** Also affects: maas
   Importance: Undecided
   Status: New

** Changed in: maas
   Importance: Undecided => High

** Changed in: maas
   Status: New => Triaged

** Also affects: django-piston
   Importance: Undecided
   Status: New

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

Title:
  Piston Django 1.5 incompatibility with simplejson 2.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/django-piston/+bug/1184219/+subscriptions

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


[Bug 1185012] Re: Piston subclass of HttpResponse fails with Django 1.5

2013-05-28 Thread Gavin Panella
** Also affects: django-piston
   Importance: Undecided
   Status: New

** Also affects: python-django-piston (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Piston subclass of HttpResponse fails with Django 1.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/django-piston/+bug/1185012/+subscriptions

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


[Bug 963736] Re: thunderbird and firefox freeze at random : must be killed and restarted

2013-05-25 Thread Gavin Sharpe
I've been using the patched package from comment #26 for the past 48+
hours and haven't had any crashes or lockups.  It seems to have fixed it
here.

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

Title:
  thunderbird and firefox freeze at random : must be killed and
  restarted

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-05-20 Thread Gavin Guo
@James,

In 3.10, we just need to build in the acpiphp driver. There are many
newly added commits related to the acpiphp modules from raring kerne to
the v3.10-rc2 as following, and I'm wondering if kernel team would
receive those many commits if backporting those from mainline kernel:

gavin@gavin-virtual-machine:~/os/ubuntu-quantal$ git log 
Ubuntu-3.8.0-19.29..v3.10-rc2 --pretty=oneline  
drivers/pci/hotplug/acpiphp_[cg]* 
3d54a3160fb6ba877324a5d301dec8038fd9 PCI: acpiphp: Protect acpiphp data 
structures from concurrent updates
ad41dd9dd0c8ca1876f30b62c5c79625ffe83174 PCI: acpiphp: Use normal list to 
simplify implementation
3b63aaa70e1ccc4b66d60acc78da09700706a703 PCI: acpiphp: Do not use ACPI PCI 
subdriver mechanism
6037a803b05eef9943fb64982e19964007fb7478 PCI: acpiphp: Convert acpiphp to be 
builtin only, not modular
ce15d873d05ebf3bf38579c4e0252140e28f1781 PCI: acpiphp: Replace local macros 
with standard ACPI macros
3a0e40beefc20852191ed65d53e1b82d95ac11b8 PCI: acpiphp: Remove all functions 
even if function 0 doesn't exist
d65eba6a7a769bb939303969267cbf1c916358f5 PCI: acpiphp: Use 
list_for_each_entry_safe() in acpiphp_sanitize_bus()
556f12f602ac0a18a82ca83e9f8e8547688fc633 Merge tag 'pci-v3.9-changes' of 
git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
3757b94802fb65d8f696597a74053cf21738da0b ACPI / hotplug: Fix concurrency issues 
and memory leaks
be6d2867b4f68a575c78fa368abd3ad49980c514 PCI: acpiphp: Remove dead code for PCI 
host bridge hotplug
2ca344e8c798127ae01e656838b9b06ed41d1461 PCI: acpiphp: Create companion ACPI 
devices before creating PCI devices
bfee26dba0f373ebe4e6f0b293d078b02f9f7f69 ACPI / scan: Make it clear that 
acpi_bus_trim() cannot fail
d59f53bc9bd80ee62072dea590fc623c67cb84a8 PCI: acpiphp: Keep driver loaded even 
if no slots found
668192b678201d2fff27c6cc76bb003c1ec4a52a PCI: acpiphp: Move host bridge hotplug 
to pci_root.c
92d8aff3a317fcd6f78ed9ac13dbbaeae8cb11ed PCI/ACPI: acpiphp: Rename 
alloc_acpiphp_hp_work() to alloc_acpi_hp_work()
1f96a965e30d097a25818196e33d2dce923973a7 PCI: acpiphp: Add is_hotplug_bridge 
detection
b8bd759acd05281abf88cddef30c57313c109697 ACPI / scan: Drop acpi_bus_add() and 
use acpi_bus_scan() instead
ae281795ec92d35dd1631401829124acab965b1f ACPI / scan: Drop the second argument 
of acpi_bus_trim()
0cd6ac52b333f66ee64e50ed216ec99231092dcd ACPI: Make acpi_bus_scan() and 
acpi_bus_add() take only one argument
636458de36f1fb4cdd318387d2f45604e451b17a ACPI: Remove the arguments of 
acpi_bus_add() that are not used
02f57c67a8677ae55dcdd256a2a7abaf41e4cc1f ACPI: Remove 
acpi_start_single_object() and acpi_bus_start()

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1175771] [NEW] Universal Access > Bounce Keys disrupts YubiKey use

2013-05-02 Thread Gavin Panella
Public bug reported:

I think YubiKeys pretend to be a keyboard in order to work. With Bounce
Keys on, parts of the keys can be eliminated. This is especially
problematic for the long key they emit by default which can often
contain repeated characters.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: gnome-control-center 1:3.6.3-0ubuntu24
ProcVersionSignature: Ubuntu 3.8.0-19.30-generic 3.8.8
Uname: Linux 3.8.0-19-generic x86_64
ApportVersion: 2.9.2-0ubuntu8
Architecture: amd64
Date: Thu May  2 21:13:40 2013
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-precise-amd64-20120703-2
EcryptfsInUse: Yes
ExecutablePath: /usr/bin/gnome-control-center
InstallationDate: Installed on 2013-04-11 (21 days ago)
InstallationMedia: Ubuntu 12.04 "Precise" - Build amd64 LIVE Binary 
20120703-15:08
MarkForUpload: True
ProcEnviron:
 LANGUAGE=en_GB:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-control-center
UpgradeStatus: Upgraded to raring on 2013-04-15 (17 days ago)
usr_lib_gnome-control-center:
 activity-log-manager-control-center 0.9.4-0ubuntu6.1
 deja-dup26.0-0ubuntu1
 gnome-control-center-signon 0.1.6bzr13.04.05-0ubuntu1
 gnome-control-center-unity  1.2daily13.04.09-0ubuntu1
 indicator-datetime  12.10.3daily13.03.26-0ubuntu1

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug raring

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

Title:
  Universal Access > Bounce Keys disrupts YubiKey use

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1175771/+subscriptions

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-29 Thread Gavin Guo
Submitting a patch using the built-in modules but rejected by kernel
team because of building in the acpiphp modules before v3.10-rc1, which
includes the Jiang's patch, will cause the ordering issue, the issue
that other sub-driver related to acpiphp should link before the acpiphp.

There are many lines in drivers/pci/hotplug/Makefile has useful
information:

# native drivers should be linked before acpiphp in order to allow the
# native driver to attempt to bind first. We can then fall back to
# generic support.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-25 Thread Gavin Guo
To save debugging log for future reference. The commit id at the current
helgaas/next is d4f09c5d7fbabd1389a5f03f5c9329d790f544e3. Yinghai Lu
provided 2 patches and the v1 fail but the v2 works perfectly. The patch
is attached.

** Patch added: "acpiphp_check_host_bridge_v2.patch"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1091125/+attachment/3652949/+files/acpiphp_check_host_bridge_v2.patch

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-25 Thread Gavin Guo
Upstream solved the bug and I plan to submit a patch to enable the
configuration as to build in the acpiphp module in the Quantal and
Raring for the reason that the modules will only can be built-in in the
Linux 3.10 merge window. However, backporting from helgaas/next will
cover a lot of commits thus it might not be a good solution.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-25 Thread Gavin Guo
upstream maintainers aggressively help to solve the bug. I'm helping to
test the patches updated by them.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-23 Thread Gavin Guo
The acpiphp can't work after testing the pci maintainer's, Bjorn
Helgaas, next tree. Now, I'll submitting the dmesg and some error
description, before testing the Linux-next again.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1171902] [NEW] psmouse serio1 lost sync at byte 1 ... driver resynced

2013-04-23 Thread Gavin Panella
Public bug reported:

I'm using a Dell XPS 13 Developer Edition with Raring.

When using an external monitor I've changed the power settings to do
nothing when I close the lid of my machine. This works fine. However,
the following lines get sent rapidly (>150 messages per second) via
rsyslogd to kern.log:

[24957.460485] psmouse serio1: Trackpad at isa0060/serio1/input0 lost sync at 
byte 1
[24957.462317] psmouse serio1: Trackpad at isa0060/serio1/input0 - driver 
resynced.

This sends the load of the machine up to ~1.3 and causes Unity to get
choppy.

Opening the lid of the machine stops the logging.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: linux-image-3.8.0-19-generic 3.8.0-19.29
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
CRDA:
 country GB:
(2402 - 2482 @ 40), (N/A, 20)
(5170 - 5250 @ 40), (N/A, 20)
(5250 - 5330 @ 40), (N/A, 20), DFS
(5490 - 5710 @ 40), (N/A, 27), DFS
Date: Tue Apr 23 16:10:53 2013
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-precise-amd64-20120703-2
EcryptfsInUse: Yes
HibernationDevice: RESUME=UUID=a06b2b6d-efeb-40c2-a3b7-dbdd17e784aa
InstallationDate: Installed on 2013-04-11 (12 days ago)
InstallationMedia: Ubuntu 12.04 "Precise" - Build amd64 LIVE Binary 
20120703-15:08
MachineType: Dell Inc. Dell System XPS L322X
MarkForUpload: True
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-19-generic 
root=UUID=ecc4585d-a95d-4cff-a833-c78871b84ed0 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.8.0-19-generic N/A
 linux-backports-modules-3.8.0-19-generic  N/A
 linux-firmware1.106
SourcePackage: linux
UpgradeStatus: Upgraded to raring on 2013-04-15 (8 days ago)
dmi.bios.date: 01/22/2013
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A07
dmi.board.name: 0PJHXN
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd01/22/2013:svnDellInc.:pnDellSystemXPSL322X:pvr:rvnDellInc.:rn0PJHXN:rvrA00:cvnDellInc.:ct8:cvr0.1:
dmi.product.name: Dell System XPS L322X
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug raring

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

Title:
  psmouse serio1 lost sync at byte 1 ... driver resynced

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-18 Thread Gavin Guo
I found recent patches from linux-pci maintainer had made the acpiphp
only statically build-in to avoid sub-driver dependency issue, and will
test the driver in the latest kernel. If passing the test, the patches
will be backported from linux-next tree of linux-pci maintainer.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-17 Thread Gavin Guo
After discussing with Ike, we came up with 2 methods, either to write a
driver, which like acpiphp_ibm.c, to depend on acpiphp.ko or to simulate
the acpiphp then to write a driver under drivers/platform/x86/. Now, I'm
consulting the upstream for the suggestion.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-16 Thread Gavin Guo
The bug is possible to solve by building in the acpiphp modules, it
needs to discuss with senior Kernel team members.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1096247] Re: [Lenovo E135]: System fails to resume from suspend

2013-04-10 Thread Gavin Guo
** Changed in: linux (Ubuntu Precise)
   Status: Confirmed => Incomplete

** Changed in: linux (Ubuntu Quantal)
   Status: Confirmed => Incomplete

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

Title:
  [Lenovo E135]: System fails to resume from suspend

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

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


[Bug 1166113] Re: Need support of Broadcom bluetooth device [413c:8143]

2013-04-10 Thread Gavin Guo
** Changed in: linux (Ubuntu Quantal)
   Status: Confirmed => In Progress

** Changed in: linux (Ubuntu)
   Status: Confirmed => In Progress

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

Title:
  Need support of Broadcom bluetooth device [413c:8143]

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1166113/+subscriptions

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-04-10 Thread Gavin Guo
Upstream maintainer rejected to accept the solution, adding acpiphp in
the /etc/modules. He suggested that the fix should be in the kernel
side. I'll try to find out the point in the kernel.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1166113] Re: Need support of Broadcom bluetooth device [413c:8143]

2013-04-10 Thread Gavin Guo
patch was sent yesterday and is waiting to be merged.

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

Title:
  Need support of Broadcom bluetooth device [413c:8143]

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1166113/+subscriptions

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


[Bug 1163374] Re: Keyboard does not function normally after touchpad toggle hotkey press

2013-04-02 Thread Gavin Guo
** Changed in: udev (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  Keyboard does not function normally after touchpad toggle hotkey press

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

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


[Bug 1163374] [NEW] Keyboard does not function normally after touchpad toggle hotkey press

2013-04-02 Thread Gavin Guo
Public bug reported:

Summary:
After installing the alps driver, I found that touchpad hotkey worked as 
expected. However, after disabling and re-enabling touchpad using toggle 
hotkey, I found keyboard acted abnormally. 

Steps to reproduce:
1) Install ALPS touchpad driver
2) Use touchpad toggle hotkey to disable touchpad then enable it

Expected result:
After touchpad toggle, keyboard should still function normally.

Actual result:
Keyboard does not function normally, while I tried to type on and opened gnome 
terminal window, nothing can be typed.

** Affects: udev (Ubuntu)
 Importance: High
 Assignee: Gavin Guo (mimi0213kimo)
 Status: Confirmed

** Changed in: udev (Ubuntu)
   Status: New => Confirmed

** Changed in: udev (Ubuntu)
   Importance: Undecided => High

** Changed in: udev (Ubuntu)
 Assignee: (unassigned) => Gavin Guo (mimi0213kimo)

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

Title:
  Keyboard does not function normally after touchpad toggle hotkey press

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

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


[Bug 355112]

2013-03-28 Thread Gavin Sharp
*** Bug 855248 has been marked as a duplicate of this bug. ***

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

Title:
  Ask.com keeps being re-added to Firefox search bar after updates

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

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


[Bug 1153618] Re: Support Realtek RTS5227 card reader

2013-03-26 Thread Gavin Guo
Having worked with Adam for verification with 3.5.0-27

** Tags removed: verification-needed-quantal
** Tags added: verification-done

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

Title:
  Support Realtek RTS5227 card reader

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1153618/+subscriptions

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


[Bug 526453]

2013-03-14 Thread Gavin Sharp
We're going to add some preferences UI for selecting a default engine in
bug 738818.

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

Title:
  Firefox does not allow users to change the default search engine,
  unless the search bar is present

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

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


[Bug 1153618] Re: Support Realtek RTS5227 card reader

2013-03-13 Thread Gavin Guo
** Attachment added: "dmesg_v3.5.0-27v3.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153618/+attachment/3571669/+files/dmesg_v3.5.0-27v3.log

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

Title:
  Support Realtek RTS5227 card reader

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1153618/+subscriptions

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


[Bug 1153618] Re: Support Realtek RTS5227 card reader

2013-03-13 Thread Gavin Guo
** Attachment added: "dmesg_v3.5.0-27v2.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153618/+attachment/3571622/+files/dmesg_v3.5.0-27v2.log

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

Title:
  Support Realtek RTS5227 card reader

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1153618/+subscriptions

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


[Bug 1153618] Re: Support Realtek RTS5227 card reader

2013-03-13 Thread Gavin Guo
** Attachment added: "dmesg_v3.8.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153618/+attachment/3571492/+files/dmesg_v3_8.log

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

Title:
  Support Realtek RTS5227 card reader

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1153618/+subscriptions

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


[Bug 1153618] Re: Support Realtek RTS5227 card reader

2013-03-13 Thread Gavin Guo
** Attachment added: "dmesg_v3.5.0-27.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153618/+attachment/3571491/+files/dmesg_v3_5_0_27.log

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

Title:
  Support Realtek RTS5227 card reader

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1153618/+subscriptions

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-02-20 Thread Gavin Guo
I created a bug and sent a patch to the debian bug checking system to fix the 
bug.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700993

** Bug watch added: Debian Bug tracker #700993
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700993

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1034197] Re: Out of memory error when running min_free_kbytes testcase on precise-updates on armadaxp

2013-02-18 Thread Gavin Guo
Having tested on n1 and the kernel oops not happened. Don't know if the
problem is the hardware issue and will try to test on n2 if it's
available.

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

Title:
  Out of memory error when running min_free_kbytes testcase on precise-
  updates on armadaxp

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

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


[Bug 1034197] Re: Out of memory error when running min_free_kbytes testcase on precise-updates on armadaxp

2013-02-17 Thread Gavin Guo
** Changed in: linux-armadaxp (Ubuntu)
 Assignee: (unassigned) => Gavin Guo (mimi0213kimo)

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

Title:
  Out of memory error when running min_free_kbytes testcase on precise-
  updates on armadaxp

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

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


[Bug 481541]

2013-02-14 Thread Gavin Sharp
This is not a suitable default behavior, and I don't think it's commonly
desired enough to add as an option (on some platforms it may not even be
doable).

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

Title:
  Firefox steals the focus from other apps when clicking on a link

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-01-28 Thread Gavin Guo
@Yung

I think adding to the configuration file is ok, now waiting for the
upstream's reply to see how to get approved.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-01-28 Thread Gavin Guo
status:
Asking the upstream ubuntu-devel-disc...@lists.ubuntu.com about how to add the 
configuration file to the module-init-tools to get approved.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1103195] Re: MAAS WebUI crashes when installing maas-region-controller only

2013-01-24 Thread Gavin Panella
To ensure that we accept as "master" only the cluster controller on
the local machine, can the region compare the UUID it's given against
the UUID it can see on the filesystem?

Even if the region is in an HA configuration, the cluster controller
will connect to localhost and therefore the region app server reached
will be the one on the same machine, and thus able to see the same
UUID.

Then we can probably get rid of the special cases for maas_url and
whatnot.

If this isn't suitable, then I suggest going with rvba's second
proposal:

> - we fix the two problems I mention above ( a): only accept the
>   first controller to connect if it's connecting from localhost, b)
>   update nodegroup.maas_url for the first controller if the
>   controller does not connect from localhost).

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

Title:
  MAAS WebUI crashes when installing maas-region-controller only

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-01-22 Thread Gavin Guo
@Yung

As we checked the lsmod output before, acpiphp was not loaded. Maybe we
can try to load the acpiphp module to see if it will work.

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1091125] Re: [Dell M4700] Unable to hotplug ExpressCard 34

2013-01-20 Thread Gavin Guo
@Yung

Could you please help to print the dmesg when you remove the PCI express
card after the successfully cold boot? Thanks

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

Title:
  [Dell M4700] Unable to hotplug ExpressCard 34

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

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


[Bug 1096247] Re: [Lenovo E135]: System fails to resume from suspend

2013-01-20 Thread Gavin Guo
@Jeff:

You can refer to the following: http://www.howtogeek.com/119127/use-the-
magic-sysrq-key-on-linux-to-fix-frozen-x-servers-cleanly-reboot-and-run-
other-low-level-commands/

Usually it can be done by Alt + SysRq + key(b, z, m, ...). If SysRq
isn't exist, you can use PrntScrn instead. The purpose is to make sure
if the kernel is still alive or the hang is in the kernel when there is
any message after pressing the Magic Key.

Another suggestion, could you also please log the messages from
var/log/kern.log after reboot from the fail resume. There should be some
messages from the last resume.

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

Title:
  [Lenovo E135]: System fails to resume from suspend

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

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


[Bug 1096247] Re: [Lenovo E135]: System fails to resume from suspend

2013-01-17 Thread Gavin Guo
Hi Jeff,

Could you please help to test if the Magic key is work? If it's not, it
should hang in BIOS.

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

Title:
  [Lenovo E135]: System fails to resume from suspend

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

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


[Bug 192092]

2013-01-06 Thread Gavin Sharp
OK, let's do this then!

Thanks again for the patch, Marius.

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

Title:
  ctrl+shift+pg.up/dn does not move tabs

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

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


[Bug 192092]

2013-01-04 Thread Gavin Sharp
(In reply to ithinc from comment #9)
> Noticed that these key combinations have been used in Caret Browsing mode.

Do you have a pointer to the code?

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

Title:
  ctrl+shift+pg.up/dn does not move tabs

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

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


[Bug 192092]

2013-01-04 Thread Gavin Sharp
Comment on attachment 689087
patch version 2

Code-wise, this looks good. I think the only suggestions I would make is
that we should probably limit this behavior to Linux somehow (probably
by using an #ifdef XP_GNOME like the one in browser-sets.inc).

I don't know the answers to ithinc's concerns, though (about the desired
behavior for ctrl+shift+home/end, and possible conflict with other
shortcuts) - we should sort that out before landing this.

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

Title:
  ctrl+shift+pg.up/dn does not move tabs

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2012-12-19 Thread Gavin Graham
I thought I'd try stripping the config back to the original without the
'-d' in the 'exec lightdm -d' line and after six reboots, not one
failure. I'll leave the config in its original state now and if/when the
symptoms reappear, I'll grab all the logs and post them up here.

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2012-12-19 Thread Gavin Graham
@Clint

I'm happy to participate in collecting the data on a quiet day over the
Christmas break when I don't really need to use my computer for any real
activity. Are you talking about a debug-level log of X or something
similar?

Tell me what you would like to see and I'll strip the '-d' from the
'exec lightdm -d' line of /etc/init/lightdm and set other X switches or
what ever may be required for that level of information.  Do you just
want the standard logs?

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2012-12-18 Thread Gavin Graham
@Pieter

I agree, it is not a fix (well, a permanent and proper one anyway) but
it does suggest that it's a race condition and that it is in the Binary
itself and not the /etc/init/lightdm script as some of the other
potential "fixes" have tried to remedy.

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2012-12-16 Thread Gavin Graham
@Daniel (internalkernel)

Just confirming so it isn't lost in the midst, you changed

'exec lightdm'
to
'exec lightdm -d'

and now you are getting Lightdm performing correctly each time?

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 1028806] Re: 046d:c52b Cannot use logitech mouse M324 (Unifying Receiver)

2012-12-16 Thread Gavin Graham
Ok, I've now installed the Kernel from http://kernel.ubuntu.com/~kernel-
ppa/mainline/v3.7-raring/ and I am still getting the exact same error
messages. The device will always work if I hotplug once booted.

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

Title:
  046d:c52b Cannot use logitech mouse M324 (Unifying Receiver)

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

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


[Bug 1028806] Re: 046d:c52b Cannot use logitech mouse M324 (Unifying Receiver)

2012-12-16 Thread Gavin Graham
I'm installaing 3.7.0-7.15 (https://launchpad.net/~xorg-
edgers/+archive/ppa/+build/4065823) in an effort to solve another
problem so I will let you know how this Kernel goes. It's the Kernel
that is part of xorg-edgers.

Well there's no difference by using the xorg-edgers Kernel:
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.407752] usb 3-4: new full-speed USB 
device number 3 using xhci_hcd
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.426452] usb 3-4: New USB device found, 
idVendor=046d, idProduct=c52b
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.426460] usb 3-4: New USB device 
strings: Mfr=1, Product=2, SerialNumber=0
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.426463] usb 3-4: Product: USB Receiver
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.426466] usb 3-4: Manufacturer: Logitech
Dec 17 04:32:54 gavin-N53SV mtp-probe: checking bus 3, device 3: 
"/sys/devices/pci:00/:00:14.0/usb3/3-4"
Dec 17 04:32:54 gavin-N53SV mtp-probe: bus: 3, device: 3 was not an MTP device
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.431715] logitech-djreceiver 
0003:046D:C52B.0006: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB 
Receiver] on usb-:00:14.0-4/input2
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.431975] logitech-djreceiver 
0003:046D:C52B.0006: logi_dj_probe:logi_dj_recv_query_paired_devices error:-32
Dec 17 04:32:54 gavin-N53SV kernel: [ 39.432184] logitech-djreceiver: probe of 
0003:046D:C52B.0006 failed with error -32

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

Title:
  046d:c52b Cannot use logitech mouse M324 (Unifying Receiver)

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

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


[Bug 1039143] Re: 046d:c52b USB3 port Logitech mouse using unifying receiver not detected

2012-12-16 Thread Gavin Graham
@Joseph,

Ok, I've now installed the Kernel from http://kernel.ubuntu.com/~kernel-
ppa/mainline/v3.7-raring/ and I am still getting the exact same error
messages. The device will always work if I hotplug once booted.

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

Title:
  046d:c52b USB3 port Logitech mouse using unifying receiver not
  detected

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

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


[Bug 1039143] Re: 046d:c52b USB3 port Logitech mouse using unifying receiver not detected

2012-12-16 Thread Gavin Graham
@Joseph,

Well there's no difference by using the xorg-edgers Kernel:
Dec 17 04:32:54 gavin-N53SV kernel: [   39.407752] usb 3-4: new full-speed USB 
device number 3 using xhci_hcd
Dec 17 04:32:54 gavin-N53SV kernel: [   39.426452] usb 3-4: New USB device 
found, idVendor=046d, idProduct=c52b
Dec 17 04:32:54 gavin-N53SV kernel: [   39.426460] usb 3-4: New USB device 
strings: Mfr=1, Product=2, SerialNumber=0
Dec 17 04:32:54 gavin-N53SV kernel: [   39.426463] usb 3-4: Product: USB 
Receiver
Dec 17 04:32:54 gavin-N53SV kernel: [   39.426466] usb 3-4: Manufacturer: 
Logitech
Dec 17 04:32:54 gavin-N53SV mtp-probe: checking bus 3, device 3: 
"/sys/devices/pci:00/:00:14.0/usb3/3-4"
Dec 17 04:32:54 gavin-N53SV mtp-probe: bus: 3, device: 3 was not an MTP device
Dec 17 04:32:54 gavin-N53SV kernel: [   39.431715] logitech-djreceiver 
0003:046D:C52B.0006: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB 
Receiver] on usb-:00:14.0-4/input2
Dec 17 04:32:54 gavin-N53SV kernel: [   39.431975] logitech-djreceiver 
0003:046D:C52B.0006: logi_dj_probe:logi_dj_recv_query_paired_devices error:-32
Dec 17 04:32:54 gavin-N53SV kernel: [   39.432184] logitech-djreceiver: probe 
of 0003:046D:C52B.0006 failed with error -32

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

Title:
  046d:c52b USB3 port Logitech mouse using unifying receiver not
  detected

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

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


[Bug 1039143] Re: 046d:c52b USB3 port Logitech mouse using unifying receiver not detected

2012-12-16 Thread Gavin Graham
Errata: Wrong Kernel link. It should be https://launchpad.net/~xorg-
edgers/+archive/ppa/+build/4065823. It's the Kernel that is part of
xorg-edgers.

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

Title:
  046d:c52b USB3 port Logitech mouse using unifying receiver not
  detected

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

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


[Bug 1039143] Re: 046d:c52b USB3 port Logitech mouse using unifying receiver not detected

2012-12-16 Thread Gavin Graham
@Joseph S,

I'm installaing 3.7.0-7.15
(https://launchpad.net/~francisbrwn9/+archive/kernels/+build/4065747) in
an effort to solve another problem so I will let you know how this
Kernel goes.

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

Title:
  046d:c52b USB3 port Logitech mouse using unifying receiver not
  detected

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

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


[Bug 192092]

2012-12-16 Thread Gavin Sharp
It looks like bug 822068 is also touching this code.

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

Title:
  ctrl+shift+pg.up/dn does not move tabs

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

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


[Bug 1039143] Re: 046d:c52b USB3 port Logitech mouse using unifying receiver not detected

2012-12-13 Thread Gavin Graham
This bug has a lot of information in it and it is still marked as
incomplete. I am happy to help contribute information to progress this
report. Just let me know what information is required.

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

Title:
  046d:c52b USB3 port Logitech mouse using unifying receiver not
  detected

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

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


[Bug 1028806] Re: 046d:c52b Cannot use logitech mouse M324 (Unifying Receiver)

2012-12-13 Thread Gavin Graham
I have the exact same hardware as the OP and the same symptoms. Is there
any information I can submit to progress this bug report?

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

Title:
  046d:c52b Cannot use logitech mouse M324 (Unifying Receiver)

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2012-12-08 Thread Gavin Graham
In the /etc/init/lightdm.conf I've changed

exec lightdm

to

exec lightdm -d

as a way to catch some extra debugging information in the lightdm log file and 
lo, now it never fails.
Hmmm, I wonder if writing debug information as slowed things down just enough 
to avoid a race condition inside the lightdm binary.

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 192092]

2012-12-06 Thread Gavin Sharp
*** Bug 702960 has been marked as a duplicate of this bug. ***

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

Title:
  ctrl+shift+pg.up/dn does not move tabs

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2012-12-02 Thread Gavin Graham
Actually, manually running "sudo lightdm" does no always work for me
either. I'm starting to wnder if this is fixable by modifying the init
scripts or whether the problem is deeper in LightDM.

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2012-12-02 Thread Gavin Graham
We need to get this bug assigned and marked with priority. This problem
when in the hands of a non-technical Ubuntu user will not go to and TTY
to run 'sudo lightdm'. A non-technical user would just say that its
broken and install another OS. This bug is going to cause customer
attrition if it isnt addressed.

How can we push this along? More info?

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 1082965] Re: ISCSITARGET crashing repeatedly

2012-11-30 Thread Gavin Haslett
Well, because no-one in the community seems to care; it seems the fix
for this problem is to switch to SCST;
http://www.zimbio.com/Ubuntu+Linux/articles/5vq_mlaTjIT/How+To+Install+SCST+on+Ubuntu

Seriously, this level of non-support is really a problem for people
actively trying to make Ubuntu a player in the enterprise. If you wish
to see it relegated to a non-entity or maybe a "play desktop" box then
this is the right way to go about it. Refusing to even acknowledge what
is a show-stopper bug is a big problem.

Under identical loads, SCST works wonderfully.

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

Title:
  ISCSITARGET crashing repeatedly

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

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


<    1   2   3   4   5   6   7   8   9   10   >