public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Appletouch is gone!
@ 2007-05-03  7:07 Thomas Meyer
  2007-05-03 11:26 ` Jiri Kosina
  2007-05-06 23:27 ` Jiri Kosina
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Meyer @ 2007-05-03  7:07 UTC (permalink / raw)
  To: Linux Kernel Mailing List

With current git head from linus' tree
and LOCALVERSION_AUTO [=y] and USB_APPLETOUCH [=m]

find /lib/modules/ -name apple*
/lib/modules/2.6.20/kernel/drivers/usb/input/appletouch.ko
/lib/modules/2.6.21/kernel/drivers/usb/input/appletouch.ko

uname -a
Linux hotzenplotz 2.6.21-gdc87c398

Any ideas?


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Appletouch is gone!
  2007-05-03  7:07 Appletouch is gone! Thomas Meyer
@ 2007-05-03 11:26 ` Jiri Kosina
  2007-05-06 23:27 ` Jiri Kosina
  1 sibling, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2007-05-03 11:26 UTC (permalink / raw)
  To: Thomas Meyer; +Cc: Linux Kernel Mailing List

On Thu, 3 May 2007, Thomas Meyer wrote:

> With current git head from linus' tree and LOCALVERSION_AUTO [=y] and 
> USB_APPLETOUCH [=m]
> find /lib/modules/ -name apple*
> /lib/modules/2.6.20/kernel/drivers/usb/input/appletouch.ko
> /lib/modules/2.6.21/kernel/drivers/usb/input/appletouch.ko
> uname -a
> Linux hotzenplotz 2.6.21-gdc87c398

Sorry, I am not able to reproduce it here

$ grep USB_APPLETOUCH .config
CONFIG_USB_APPLETOUCH=m
$ grep LOCALVERSION_AUTO .config
CONFIG_LOCALVERSION_AUTO=y

$ ll /lib/modules/2.6.21-default-gdc87c398-dirty/kernel/drivers/usb/input/appletouch.ko
-rw-r--r-- 1 root root 33482 2007-05-03 11:23 /lib/modules/2.6.21-default-gdc87c398-dirty/kernel/drivers/usb/input/appletouch.ko

Could you please give me your full .config?

-- 
Jiri Kosina

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Appletouch is gone!
  2007-05-03  7:07 Appletouch is gone! Thomas Meyer
  2007-05-03 11:26 ` Jiri Kosina
@ 2007-05-06 23:27 ` Jiri Kosina
  1 sibling, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2007-05-06 23:27 UTC (permalink / raw)
  To: Thomas Meyer, Greg KH; +Cc: Linux Kernel Mailing List

On Thu, 3 May 2007, Thomas Meyer wrote:

> With current git head from linus' tree and LOCALVERSION_AUTO [=y] and 
> USB_APPLETOUCH [=m]
> find /lib/modules/ -name apple*
> /lib/modules/2.6.20/kernel/drivers/usb/input/appletouch.ko
> /lib/modules/2.6.21/kernel/drivers/usb/input/appletouch.ko

This doesn't seem to be a bug specific to current state of the git tree. 
You probably previously had .config which selected some other driver from 
drivers/usb/input and therefore build system correctly descended into it. 
The patch below should solve your issue.

Greg, could you please take it through your tree? Thanks.



From: Jiri Kosina <jkosina@suse.cz>

USB: add forgotten values to Makefile
    
There are several CONFIG_ values related to drivers/usb/input directory
that are missing in drivers/usb/Makefile, and therefore they are not
sufficient to cause Kbuild to recurse into input/ subdirectory when they
are set.
    
Add missing values.
    
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile
index f5de58a..18ef432 100644
--- a/drivers/usb/Makefile
+++ b/drivers/usb/Makefile
@@ -25,12 +25,18 @@ obj-$(CONFIG_USB)		+= storage/
 
 obj-$(CONFIG_USB_ACECAD)	+= input/
 obj-$(CONFIG_USB_AIPTEK)	+= input/
+obj-$(CONFIG_USB_APPLETOUCH)	+= input/
 obj-$(CONFIG_USB_ATI_REMOTE)	+= input/
+obj-$(CONFIG_USB_ATI_REMOTE2)	+= input/
+obj-$(CONFIG_USB_GTCO)		+= input/
 obj-$(CONFIG_USB_KBTAB)		+= input/
+obj-$(CONFIG_USB_KEYSPAN_REMOTE)	+= input/
 obj-$(CONFIG_USB_MTOUCH)	+= input/
 obj-$(CONFIG_USB_POWERMATE)	+= input/
+obj-$(CONFIG_USB_TOUCHSCREEN)	+= input/
 obj-$(CONFIG_USB_WACOM)		+= input/
 obj-$(CONFIG_USB_XPAD)		+= input/
+obj-$(CONFIG_USB_YEALINK)	+= input/
 
 obj-$(CONFIG_USB_CATC)		+= net/
 obj-$(CONFIG_USB_KAWETH)	+= net/

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-05-06 23:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-03  7:07 Appletouch is gone! Thomas Meyer
2007-05-03 11:26 ` Jiri Kosina
2007-05-06 23:27 ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox