[Bug 1721909] Re: Goodix GF3208 (fingerprint reader) not being recognised by lsusb(usbutils)

2019-10-20 Thread Antonio Ospite
As a usbutils bug this can be closed IMHO, the changes mentioned in #44
landed upstream and usb.ids has also been updated for better strings:
https://usb-ids.gowdy.us/read/UD/27c6

These new string will be used at some point when hwdb syncs with
usb.ids.

As for an actual driver, experiments are still ongoing at the link from
#41

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

Title:
  Goodix GF3208 (fingerprint reader) not being recognised  by
  lsusb(usbutils)

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

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

[Bug 1721909] Re: Goodix GF3208 (fingerprint reader) not being recognised by kernel/system

2019-04-15 Thread Antonio Ospite
Some more info and some experimental tools can be found in lifprint
issue tracker:
https://gitlab.freedesktop.org/libfprint/libfprint/issues?scope=all=%E2%9C%93=opened=27c6

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

Title:
  Goodix GF3208 (fingerprint reader) not being recognised  by
  kernel/system

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

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

[Bug 1242678]

2016-01-16 Thread Antonio Ospite
Created attachment 120955
This files result eventually in a pixman crash

Hi,

this rotation issue seems to be also causing a crash in pixman in some
cases:

  https://bugs.freedesktop.org/show_bug.cgi?id=87588

I am attaching a file which makes the crash reproducible here.

BTW another test-case for the invalid rotation is the output of
kxbprint, reproducible like this:

  xkbprint :0.0 keyboard.ps
  evince keyboard.ps

The latter sometimes crashes and sometimes don't, at least on my system.

Ciao ciao,
   Antonio

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

Title:
  evince cannot render some EPS files

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

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


[Bug 511401] Re: netstat doesn't display ipv6 addresses correctly (they are truncated)

2015-10-29 Thread Antonio Ospite
I think this bug can be closed, recent netstat versions have the -W (or
--wide) option to show the full adresses.

To restore tabulation alignment, a wrapper can be used:

netstat -tunap --wide | \
  sed -e '1d' -e '2s/ \(Address\)/_\1/g' -e '2s/\(Program\) /\1_/' -e 
's/\([^0-9]*:\) /\1/' -e '/^udp/s/:\*/:\* -/' | \
  column -t


Also, "ss" could be used instead of netstat, ss does not truncate the addresses.

** Changed in: net-tools (Ubuntu)
   Status: Confirmed => Fix Released

** Changed in: net-tools (Debian)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-tools in Ubuntu.
https://bugs.launchpad.net/bugs/511401

Title:
  netstat doesn't display ipv6 addresses correctly (they are truncated)

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 511401] Re: netstat doesn't display ipv6 addresses correctly (they are truncated)

2015-10-29 Thread Antonio Ospite
I think this bug can be closed, recent netstat versions have the -W (or
--wide) option to show the full adresses.

To restore tabulation alignment, a wrapper can be used:

netstat -tunap --wide | \
  sed -e '1d' -e '2s/ \(Address\)/_\1/g' -e '2s/\(Program\) /\1_/' -e 
's/\([^0-9]*:\) /\1/' -e '/^udp/s/:\*/:\* -/' | \
  column -t


Also, "ss" could be used instead of netstat, ss does not truncate the addresses.

** Changed in: net-tools (Ubuntu)
   Status: Confirmed => Fix Released

** Changed in: net-tools (Debian)
   Status: New => Fix Released

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

Title:
  netstat doesn't display ipv6 addresses correctly (they are truncated)

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

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


[Bug 366478] Re: 058f:6377 Alcor Micro Corp. Multimedia Card Reader don't work in Ubuntu 9.04/9.10

2013-10-15 Thread Antonio Ospite
Hi, I think I solved the problem here, maybe this can help the others
who are experiencing it.

The hardware:
058f:6362 Alcor Micro Corp. Flash Card Reader/Writer

it used to work in the past but after a software upgrade it stopped
working.

The problem:
the hardware was recognized (I could see the card reader in dmesg) but mass 
storage devices where not scanned automatically on insertion, and hence 
partitions where not found and mounted automatically.

The workaround:
Inserting a memory card showed nothing, but if I removed the usb_storage module 
and loaded it again leaving the memory card inserted, the device was scanned 
and the partition mounted.

The analysis:
So the hardware worked and the kernel driver worked too to some extent, just 
scanning at insertion time was broken.

A possible solution:
Enable polling like described in http://forums.funtoo.org/viewtopic.php?id=2243

$ echo 1000  /sys/module/block/parameters/events_dfl_poll_msecs

After the command line above the memory card device were scanned and partition 
mounted automatically.
Note that the change will affect all block devices, not just the card reader, 
maybe not what you want.

Maybe there are better solutions, like adding some quirk to the kernel
driver to enable polling for this device only, or use udev rules to
enable polling only for this hardware when it is detected, leaving the
global setting at it's default value.

Regression analysis:
Maybe in the past polling was enabled, I don't know if in the kernel or by some 
userspace component, and in newer versions it was disabled making the device 
look nonfunctional.

Ciao,
   Antonio http://ao2.it

P.S. To those complaining about old bugs not being fixed, if possible
try providing the actual problematic hardware to developers, that
generally gives them motivation to fix the problems.

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

Title:
  058f:6377 Alcor Micro Corp. Multimedia Card Reader don't work in
  Ubuntu 9.04/9.10

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

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


[Bug 1173723] Re: [PATCH] [media] gspca-ov534: don't call sd_start() from sd_init()

2013-08-20 Thread Antonio Ospite
On Tue, 20 Aug 2013 14:21:22 +0200
Hans de Goede hdego...@redhat.com wrote:

 Hi,
 
 Thanks for the patch I've added this to my gspca tree, and this
 will be included in my next pull-request to Mauro for 3.12
 

Thanks HdG.

It's fine with me to have the patch in 3.12 and then have it picked up
for inclusion in stable releases, I was just wondering why you didn't
consider it as a fix for 3.11, the patch fixes an actual crash
experienced by a user.

Regards,
   Antonio

-- 
Antonio Ospite
http://ao2.it

A: Because it messes up the order in which people normally read text.
   See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?

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

Title:
  06f8:3002 BUG: unable to handle kernel NULL pointer dereference at
  0050; RIP: 0010:[a046ada1] [a046ada1]
  v4l2_ctrl_g_ctrl+0x11/0x60 [videodev]

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

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


[Bug 1173723] [PATCH RFC] [media] gspca-ov534: don't call sd_start() from sd_init()

2013-08-04 Thread Antonio Ospite
---

Hi Yaroslav,

the patch below should fix the Oops caused by sd_start() called too early, but
I am not sure about why sd_start() was called from sd_init() for Hercules
webcams in the first place, maybe the snippet marked with:

  /* (from ms-win trace) */

in sd_start() must be moved to sd_init() too.

Let me know if the change below alone is enough and the webcam keeps working,
a test with suspend and resume would good to have too.

Thanks,
   Antonio

 drivers/media/usb/gspca/ov534.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/media/usb/gspca/ov534.c b/drivers/media/usb/gspca/ov534.c
index 2e28c81..03a33c4 100644
--- a/drivers/media/usb/gspca/ov534.c
+++ b/drivers/media/usb/gspca/ov534.c
@@ -1305,8 +1305,7 @@ static int sd_init(struct gspca_dev *gspca_dev)
ov534_set_led(gspca_dev, 1);
sccb_w_array(gspca_dev, sensor_init[sd-sensor].val,
sensor_init[sd-sensor].len);
-   if (sd-sensor == SENSOR_OV767x)
-   sd_start(gspca_dev);
+
sd_stopN(gspca_dev);
 /* set_frame_rate(gspca_dev);  */
 
-- 
1.8.4.rc1

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

Title:
  06f8:3002 BUG: unable to handle kernel NULL pointer dereference at
  0050; RIP: 0010:[a046ada1] [a046ada1]
  v4l2_ctrl_g_ctrl+0x11/0x60 [videodev]

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

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