Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Dec 2005 23:16:34 -0500
From:      Bryan Liesner <bryan@kishka.net>
To:        freebsd-usb@freebsd.org
Subject:   [patch] iPod Mini 
Message-ID:  <43B4B4A2.7050702@kishka.net>

next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------030409010505000703010300
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

The iPod mini is detected when plugged in, but a daX device is not 
created. It seems that it was overlooked in usbdevs and usb_quirks.c.

The attached patch for usbdevs and usb_quirks will fix that.







--------------030409010505000703010300
Content-Type: text/plain;
 name="ipod_mini.pat"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="ipod_mini.pat"

--- sys/dev/usb/usbdevs.orig	Mon Dec 26 19:32:43 2005
+++ sys/dev/usb/usbdevs	Thu Dec 29 22:30:22 2005
@@ -644,6 +644,7 @@
 product APPLE OPTMOUSE		0x0302	Optical mouse
 product APPLE SPEAKERS		0x1101	Speakers
 product APPLE IPOD3G		0x1203	iPod 3G
+product APPLE IPODMINI		0x1205	iPod Mini
 product APPLE IPODVIDEO		0x1209	iPod Video
 product APPLE IPODNANO		0x120a	iPod Nano
 
--- sys/dev/usb/usb_quirks.c.orig	Thu Dec 22 01:29:03 2005
+++ sys/dev/usb/usb_quirks.c	Thu Dec 29 22:51:44 2005
@@ -82,6 +82,7 @@
  { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPOD3G,	    ANY,   { UQ_NO_OPEN_CLEARSTALL }},
  { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPODNANO,    ANY,   { UQ_NO_OPEN_CLEARSTALL }},
  { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPODVIDEO,   ANY,   { UQ_NO_OPEN_CLEARSTALL }},
+ { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_IPODMINI,    ANY,   { UQ_NO_OPEN_CLEARSTALL }},
  /* XXX These should have a revision number, but I don't know what they are. */
  { USB_VENDOR_HP, USB_PRODUCT_HP_895C,		    ANY,   { UQ_BROKEN_BIDIR }},
  { USB_VENDOR_HP, USB_PRODUCT_HP_880C,		    ANY,   { UQ_BROKEN_BIDIR }},

--------------030409010505000703010300--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?43B4B4A2.7050702>