Page 8 of 16 FirstFirst ... 678910 ... LastLast
Results 71 to 80 of 160

Thread: Will Ubuntu work on the Surface Pro 2 like it did on the original?

  1. #71
    Join Date
    Mar 2014
    Beans
    5

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    Once again, if someone wouldn't mind mirroring these to a filesharing service, it'd be greatly appreciated.
    As I have been using this download a couple of times now, I figured it would only be fair if I provided with alternative download links:


    linux-image-3.11.10_20140215-surfacepro2_amd64.deb:

    http://ubuntuone.com/074dmRVoVqJlxPrDz6c7iW

    linux-headers-3.11.10_20140215-surfacepro2_amd64.deb:

    http://ubuntuone.com/2DioyChO246QzDw70brlWH

    And just to keep things together, I will a link to the mrvl driver:

    mrvl-usb8797_uapsta:

    http://ubuntuone.com/2HfEvFO3aT1f2Auun6AWnM

    Thanks to everybody who have made this possible !
    Last edited by drmclaser; March 14th, 2014 at 04:45 PM.

  2. #72
    Join Date
    Jan 2007
    Beans
    96
    Distro
    Ubuntu

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    Quote Originally Posted by drmclaser View Post
    As I have been using this download a couple of times now, I figured it would only be fair if I provided with alternative download links:
    http://ubuntuone.com/...
    Thank you so much @drmclaser! I forgot ubuntu one provided 5GB free storage.

    I have revised the patches a little based on some new and/or pending kernel commits, these patches are at the end of this post. Based on these, here are some new kernel packages, downloadable from ubuntu one:
    linux-image-3.11.10.4_20140314_amd64.deb: http://ubuntuone.com/6yG9RLMEBmpUGVvL25qvBm
    linux-headers-3.11.10.4_20140314_amd64.deb: http://ubuntuone.com/1BGEYJsffNAGDhI7CA3PCK

    Thanks again to drmclaser, whose valuable contribution has enabled everyone faster download speeds.

    Quote Originally Posted by goepfling View Post
    Note that the best combination (pointsource's kernel and latest usb8797_uapsta.bin) still shows some problems:
    - wifi randomly crashes (sometimes after more than 24 hours of intense traffic, sometimes after less than 2 minutes after booting)
    - bluetooth does not pair with a mouse and only pairs in "PAN" mode with my phone (apparently bluetooth stack has problems with HID and serialport profiles)
    Bluetooth may be a little more stable this time around after disabling autosuspend on btusb. The issue with the wifi crash has still not been resolved upstream.

    Quote Originally Posted by sblake View Post
    WiFi is still an issue.I simply can't get it to stay connected to a network for more than 5 minutes. And when it drops off (which it always does), it requires a reboot to get it to connect again (otherwise it simply hangs while trying to reconnect again and again).Is this a known bug that is being worked on by someone? Or is it USB network dongles all the way?
    It's being worked on, see https://bugzilla.kernel.org/show_bug.cgi?id=69661. For now, a USB wireless adapter is the best option if your network crashes too often to be usable.

    Patches:
    Code:
    --- ./drivers/net/wireless/mwifiex/usb.c.orig	2014-02-19 05:13:05.000000000 +0800
    +++ ./drivers/net/wireless/mwifiex/usb.c	2014-03-13 08:14:41.877822883 +0800
    @@ -511,13 +511,6 @@
     						   MWIFIEX_BSS_ROLE_ANY),
     				  MWIFIEX_ASYNC_CMD);
     
    -#ifdef CONFIG_PM
    -	/* Resume handler may be called due to remote wakeup,
    -	 * force to exit suspend anyway
    -	 */
    -	usb_disable_autosuspend(card->udev);
    -#endif /* CONFIG_PM */
    -
     	return 0;
     }
     
    @@ -576,7 +569,6 @@
     	.id_table = mwifiex_usb_table,
     	.suspend = mwifiex_usb_suspend,
     	.resume = mwifiex_usb_resume,
    -	.supports_autosuspend = 1,
     };
     
     static int mwifiex_usb_tx_init(struct mwifiex_adapter *adapter)
    --- drivers/bluetooth/btusb.c.orig	2014-02-19 05:13:05.000000000 +0800
    +++ drivers/bluetooth/btusb.c	2014-03-14 21:40:14.904609775 +0800
    @@ -50,6 +50,7 @@
     #define BTUSB_WRONG_SCO_MTU	0x40
     #define BTUSB_ATH3012		0x80
     #define BTUSB_INTEL		0x100
    +#define BTUSB_MWIFIEX		0x200
     #define BTUSB_BCM_PATCHRAM	0x800
     
     static struct usb_device_id btusb_table[] = {
    @@ -230,6 +231,9 @@
     	/* Intel Bluetooth device */
     	{ USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
     
    +	/* Marvell 8797 - mwifiex-usb composite wifi+bt device */
    +	{ USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MWIFIEX },
    +
     	{ }	/* Terminating entry */
     };
     
    @@ -1511,6 +1515,11 @@
     	if (id->driver_info & BTUSB_BCM_PATCHRAM)
     		hdev->setup = btusb_setup_patchram;
     
    +	if (id->driver_info & BTUSB_MWIFIEX) {
    +		printk(KERN_INFO KBUILD_MODNAME ": mwifiex bt detected, disabling usb autosuspend\n");
    +		usb_disable_autosuspend(data->udev);
    +	}
    +
     	/* Interface numbers are hardcoded in the specification */
     	data->isoc = usb_ifnum_to_if(data->udev, 1);
     
    --- ./drivers/hid/usbhid/hid-quirks.c.orig	2014-02-19 05:13:05.000000000 +0800
    +++ ./drivers/hid/usbhid/hid-quirks.c	2014-03-13 08:46:37.785748753 +0800
    @@ -73,6 +73,9 @@
     	{ USB_VENDOR_ID_FORMOSA, USB_DEVICE_ID_FORMOSA_IR_RECEIVER, HID_QUIRK_NO_INIT_REPORTS },
     	{ USB_VENDOR_ID_FREESCALE, USB_DEVICE_ID_FREESCALE_MX28, HID_QUIRK_NOGET },
     	{ USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS, HID_QUIRK_NOGET },
    +	{ USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_SURFACE_PRO_2, HID_QUIRK_NO_INIT_REPORTS },
    +	{ USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TYPE_COVER_2, HID_QUIRK_NO_INIT_REPORTS },
    +	{ USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TOUCH_COVER_2, HID_QUIRK_NO_INIT_REPORTS },
     	{ USB_VENDOR_ID_MSI, USB_DEVICE_ID_MSI_GX680R_LED_PANEL, HID_QUIRK_NO_INIT_REPORTS },
     	{ USB_VENDOR_ID_NOVATEK, USB_DEVICE_ID_NOVATEK_MOUSE, HID_QUIRK_NO_INIT_REPORTS },
     	{ USB_VENDOR_ID_PIXART, USB_DEVICE_ID_PIXART_OPTICAL_TOUCH_SCREEN, HID_QUIRK_NO_INIT_REPORTS },
    --- ./drivers/hid/hid-core.c.orig	2014-03-13 08:16:08.013819550 +0800
    +++ ./drivers/hid/hid-core.c	2014-03-13 08:18:37.721813758 +0800
    @@ -733,6 +733,14 @@
     			(item_udata(&item) & 0xff) == HID_COLLECTION_PHYSICAL)
     			hid->group = HID_GROUP_SENSOR_HUB;
     	}
    +	/*
    +	 * Handle vendor specific handlings
    +	 */
    +	if ((hid->vendor == USB_VENDOR_ID_MICROSOFT) &&
    +	    (hid->product == USB_DEVICE_ID_MS_TYPE_COVER_2 ||
    +	     hid->product == USB_DEVICE_ID_MS_TOUCH_COVER_2)
    +	    && (hid->group == HID_GROUP_MULTITOUCH))
    +		hid->group = HID_GROUP_GENERIC;
     
     	return 0;
     }
    --- ./drivers/hid/hid-ids.h.orig	2014-02-19 05:13:05.000000000 +0800
    +++ ./drivers/hid/hid-ids.h	2014-03-13 08:16:08.025819550 +0800
    @@ -611,6 +611,9 @@
     #define USB_DEVICE_ID_MS_PRESENTER_8K_USB	0x0713
     #define USB_DEVICE_ID_MS_DIGITAL_MEDIA_3K	0x0730
     #define USB_DEVICE_ID_MS_COMFORT_MOUSE_4500	0x076c
    +#define USB_DEVICE_ID_MS_SURFACE_PRO_2	0x0799
    +#define USB_DEVICE_ID_MS_TOUCH_COVER_2	0x07a7
    +#define USB_DEVICE_ID_MS_TYPE_COVER_2	0x07a9
     
     #define USB_VENDOR_ID_MOJO		0x8282
     #define USB_DEVICE_ID_RETRO_ADAPTER	0x3201
    --- drivers/hid/hid-sensor-hub.c.orig	2014-03-14 00:45:20.759523066 +0800
    +++ drivers/hid/hid-sensor-hub.c	2014-03-14 00:45:50.307521923 +0800
    @@ -607,6 +607,15 @@
     }
     
     static const struct hid_device_id sensor_hub_devices[] = {
    +	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_SENSOR_HUB, USB_VENDOR_ID_MICROSOFT,
    +			USB_DEVICE_ID_MS_TOUCH_COVER_2),
    +			.driver_data = HID_SENSOR_HUB_ENUM_QUIRK},
    +	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_SENSOR_HUB, USB_VENDOR_ID_MICROSOFT,
    +			USB_DEVICE_ID_MS_TYPE_COVER_2),
    +			.driver_data = HID_SENSOR_HUB_ENUM_QUIRK},
    +	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_SENSOR_HUB, USB_VENDOR_ID_MICROSOFT,
    +			USB_DEVICE_ID_MS_SURFACE_PRO_2),
    +			.driver_data = HID_SENSOR_HUB_ENUM_QUIRK},
     	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_SENSOR_HUB, HID_ANY_ID,
     		     HID_ANY_ID) },
     	{ }
    Last edited by PointSource; March 14th, 2014 at 02:47 PM. Reason: patch was incomplete + semantic refactoring

  3. #73
    Join Date
    Mar 2014
    Beans
    5

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    Excellent!

    What will happen if I installed Ubuntu 14.04? will I be able to apply the same fixes ?
    I have tried booting 14.04 and everything seems to be the same as 13.10, hardware support wise.

    #Update
    I have now installed Ubuntu 14.04, and after applying the marvell fix, I now have working wifi. it seems pretty stable, although I have only used it for ~4 hours.
    Type cover 2 doesn't work.
    Last edited by drmclaser; March 14th, 2014 at 09:27 PM.

  4. #74
    Join Date
    Mar 2014
    Beans
    1

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    This is awesome, thanks PointSource et al for the amazing work. I'm excited to try this out on my Surface.

    Can I ask though whether these brilliant kernel changes are being incorporated into the 14.04 release? That would really be fantastic if the Marvel driver, keyboard driver, touch screen stuff worked on installation.

  5. #75
    Join Date
    Feb 2014
    Beans
    22

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    A warning: there's a kernel regression on 3.13.5 and higher versions that can corrupt SD card contents if using the card reader in USB 3.0 speeds. The SFPro's internal card reader is connected by USB3!

    I got bit by this bug and lost a few songs from my SD card

    Fortunately just reverting that commit seems enough to fix the problem. Remember this if you're trying new kernel versions!
    Last edited by javispedro2; March 15th, 2014 at 03:34 PM.

  6. #76
    Join Date
    Jan 2014
    Beans
    2

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    hi folks. I'll preface with: i'm relatively new to linux as i've usually been tied to cad software running on windows.

    I've followed much of the previous thread and used the patches above. everything is/was working great. however, now the touchpad on the Type 2 Keyboard does not work in ubuntu.

    Here's what happened. Everything was workign flawlessly using the above patches, except the keyboard was not working in GRUB2 after using boot-repair as suggested by the "ask" tutorial. I then held down the vol-up button during restart and booted into windows. Then grub was getting missed and booting straight into windows. I fixed that by forcing a restart into "ubuntu boot" from the windows boot loader. Now GRUB2 loads and the keyboard works and i can choose between windows/ubuntu at start. Starting up ubuntu everything seems to work (including wifi) fine except for the touchpad. I tried re-running the most updated patches however it does not seem to make a difference.

    I assume this is a relatively straightforward fix? perhaps there's a line earlier in this thread that describes what i'm missing and just not understanding? thanks
    edit: i should add, i appreciate the work everyone is doing here turning a useful device even more useful.
    Last edited by matt49; March 24th, 2014 at 06:47 PM.

  7. #77
    Join Date
    Jan 2007
    Beans
    96
    Distro
    Ubuntu

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    Quote Originally Posted by matt49 View Post
    I've followed much of the previous thread and used the patches above. everything is/was working great. however, now the touchpad on the Type 2 Keyboard does not work in ubuntu.
    Hi matt49,
    post the kernel log messages for when you unplug and replug the type cover 2. ie, in a terminal, run this:
    Code:
    $ sudo tail -n0 -f /var/log/kern.log
    unplug, replug, CTRL-C to kill program.

  8. #78
    Join Date
    Jan 2014
    Beans
    2

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    Quote Originally Posted by PointSource View Post
    Hi matt49,
    post the kernel log messages for when you unplug and replug the type cover 2. ie, in a terminal, run this:
    Code:
    $ sudo tail -n0 -f /var/log/kern.log
    unplug, replug, CTRL-C to kill program.
    Okay, I am a little surprised with the following. I had the system off for a while, turned it on again and the keyboard stopped working during Grub2 boot loader, but the touchpad returned to working in ubuntu. It seems that I get to have one working but not the other (I tihnk the surface really just wants me to only use ubuntu!).

    Below is the kernel log during removal and replacement of the type 2 cover:
    Code:
    $ sudo tail -n0 -f /var/log/kern.log
    Mar 25 18:06:51 carbonix kernel: [ 2773.809138] usb 2-2: data: -ENOSR is returned
    Mar 25 18:08:30 carbonix kernel: [ 2872.212997] usb 2-3: USB disconnect, device number 10
    Mar 25 18:08:30 carbonix kernel: [ 2872.221562] ACPI Error: [\SB__.IADP] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    Mar 25 18:08:30 carbonix kernel: [ 2872.221571] ACPI Error: Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_._Q42] (Node ffff880119ab23e8), AE_NOT_FOUND (20130517/psparse-536)
    Mar 25 18:08:30 carbonix kernel: [ 2872.588942] usb 2-3: new full-speed USB device number 11 using xhci_hcd
    Mar 25 18:08:30 carbonix kernel: [ 2872.606923] usb 2-3: New USB device found, idVendor=045e, idProduct=0799
    Mar 25 18:08:30 carbonix kernel: [ 2872.606933] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    Mar 25 18:08:30 carbonix kernel: [ 2872.606938] usb 2-3: Product: SAM
    Mar 25 18:08:30 carbonix kernel: [ 2872.606942] usb 2-3: Manufacturer: MICROSOFT
    Mar 25 18:08:30 carbonix kernel: [ 2872.606945] usb 2-3: SerialNumber: 0.1.0000
    Mar 25 18:08:30 carbonix kernel: [ 2872.621695] input: MICROSOFT SAM as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.1/input/input18
    Mar 25 18:08:30 carbonix kernel: [ 2872.622011] hid-generic 0003:045E:0799.000E: input,hidraw0: USB HID v1.11 Keyboard [MICROSOFT SAM] on usb-0000:00:14.0-3/input1
    Mar 25 18:08:35 carbonix kernel: [ 2877.048737] usb 2-3: USB disconnect, device number 11
    Mar 25 18:08:35 carbonix kernel: [ 2877.061496] ACPI Error: [\SB__.IADP] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    Mar 25 18:08:35 carbonix kernel: [ 2877.061520] ACPI Error: Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_._Q41] (Node ffff880119ab23c0), AE_NOT_FOUND (20130517/psparse-536)
    Mar 25 18:08:35 carbonix kernel: [ 2877.422294] usb 2-3: new full-speed USB device number 12 using xhci_hcd
    Mar 25 18:08:35 carbonix kernel: [ 2877.440172] usb 2-3: New USB device found, idVendor=045e, idProduct=07a9
    Mar 25 18:08:35 carbonix kernel: [ 2877.440181] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    Mar 25 18:08:35 carbonix kernel: [ 2877.440186] usb 2-3: Product: SAM
    Mar 25 18:08:35 carbonix kernel: [ 2877.440190] usb 2-3: Manufacturer: MICROSOFT
    Mar 25 18:08:35 carbonix kernel: [ 2877.440195] usb 2-3: SerialNumber: 0.1.0000
    Mar 25 18:08:35 carbonix kernel: [ 2877.450282] input: MICROSOFT SAM as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.1/input/input19
    Mar 25 18:08:35 carbonix kernel: [ 2877.450709] hid-generic 0003:045E:07A9.0010: input,hidraw0: USB HID v1.11 Keyboard [MICROSOFT SAM] on usb-0000:00:14.0-3/input1
    Mar 25 18:08:35 carbonix kernel: [ 2877.453147] input: MICROSOFT SAM as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.2/input/input20
    Mar 25 18:08:35 carbonix kernel: [ 2877.453534] hid-generic 0003:045E:07A9.0011: input,hiddev0,hidraw3: USB HID v1.11 Keyboard [MICROSOFT SAM] on usb-0000:00:14.0-3/input2

  9. #79
    Join Date
    Jul 2012
    Beans
    2

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    Hi!

    I'm an original Surface Pro user with a Type Cover 2. I downloaded the packages+installed the latest packages on this thread, but I still can't get the Type Cover 2 to work at all. As others have mentioned, the keyboard works will in the GRUB menu.

    Here's my output from /var/log/kern.log after reconnecting the cover.

    Mar 27 22:46:08 archer kernel: [ 237.306316] ACPI Error: [\SB__.IADP] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    Mar 27 22:46:08 archer kernel: [ 237.306337] ACPI Error: Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_._Q42] (Node ffff8801192a9dc0), AE_NOT_FOUND (20130517/psparse-536)
    Mar 27 22:46:08 archer kernel: [ 237.325101] usb 2-1.5: USB disconnect, device number 3
    Mar 27 22:46:08 archer kernel: [ 237.650257] usb 2-1.5: new full-speed USB device number 6 using ehci-pci
    Mar 27 22:46:08 archer kernel: [ 237.744753] usb 2-1.5: New USB device found, idVendor=045e, idProduct=0799
    Mar 27 22:46:08 archer kernel: [ 237.744767] usb 2-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    Mar 27 22:46:08 archer kernel: [ 237.744774] usb 2-1.5: Product: SAM
    Mar 27 22:46:08 archer kernel: [ 237.744781] usb 2-1.5: Manufacturer: MICROSOFT
    Mar 27 22:46:08 archer kernel: [ 237.744787] usb 2-1.5: SerialNumber: 0.1.0000
    Mar 27 22:46:08 archer kernel: [ 237.760644] input: MICROSOFT SAM as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.1/input/input11
    Mar 27 22:46:08 archer kernel: [ 237.761025] hid-generic 0003:045E:0799.0007: input,hidraw4: USB HID v1.11 Keyboard [MICROSOFT SAM] on usb-0000:00:1d.0-1.5/input1
    Mar 27 22:46:10 archer kernel: [ 239.500330] ACPI Error: [\SB__.IADP] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    Mar 27 22:46:10 archer kernel: [ 239.500352] ACPI Error: Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_._Q41] (Node ffff8801192a9d98), AE_NOT_FOUND (20130517/psparse-536)
    Mar 27 22:46:10 archer kernel: [ 239.630245] usb 2-1.5: USB disconnect, device number 6
    Mar 27 22:46:10 archer kernel: [ 239.918170] usb 2-1.5: new full-speed USB device number 7 using ehci-pci
    Mar 27 22:46:10 archer kernel: [ 240.013422] usb 2-1.5: New USB device found, idVendor=045e, idProduct=07a9
    Mar 27 22:46:10 archer kernel: [ 240.013438] usb 2-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    Mar 27 22:46:10 archer kernel: [ 240.013444] usb 2-1.5: Product: SAM
    Mar 27 22:46:10 archer kernel: [ 240.013449] usb 2-1.5: Manufacturer: MICROSOFT
    Mar 27 22:46:10 archer kernel: [ 240.013453] usb 2-1.5: SerialNumber: 0.1.0000
    Mar 27 22:46:20 archer kernel: [ 250.021997] microsoft 0003:045E:07A9.0008: usb_submit_urb(ctrl) failed: -1
    Mar 27 22:46:20 archer kernel: [ 250.022036] microsoft 0003:045E:07A9.0008: timeout initializing reports
    Mar 27 22:46:20 archer kernel: [ 250.022404] microsoft 0003:045E:07A9.0008: hiddev0,hidraw4: USB HID v1.11 Device [MICROSOFT SAM] on usb-0000:00:1d.0-1.5/input0
    Mar 27 22:46:20 archer kernel: [ 250.028869] input: MICROSOFT SAM as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.1/input/input12
    Mar 27 22:46:20 archer kernel: [ 250.029262] microsoft 0003:045E:07A9.0009: input,hidraw5: USB HID v1.11 Keyboard [MICROSOFT SAM] on usb-0000:00:1d.0-1.5/input1
    Mar 27 22:46:20 archer kernel: [ 250.038311] input: MICROSOFT SAM as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.2/input/input13
    Mar 27 22:46:20 archer kernel: [ 250.038478] microsoft 0003:045E:07A9.000A: input,hiddev0,hidraw6: USB HID v1.11 Keyboard [MICROSOFT SAM] on usb-0000:00:1d.0-1.5/input2


    Any thoughts?

  10. #80
    Join Date
    Feb 2014
    Beans
    22

    Re: Will Ubuntu work on the Surface Pro 2 like it did on the original?

    Quote Originally Posted by culion1987 View Post
    Mar 27 22:46:20 archer kernel: [ 250.021997] microsoft 0003:045E:07A9.0008: usb_submit_urb(ctrl) failed: -1
    Mar 27 22:46:20 archer kernel: [ 250.022036] microsoft 0003:045E:07A9.0008: timeout initializing reports
    PointSource's kernel is missing the "skip initializing reports" quirk, so you get that error message. This patch should fix that: https://www.mail-archive.com/linux-i.../msg08881.html
    EDIT: Actually, look at his last message before this one and you will see a more recent binary that includes that patch.
    Last edited by javispedro2; March 29th, 2014 at 01:41 AM.

Page 8 of 16 FirstFirst ... 678910 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •