]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
HID: hid-example: fix some build issues
authorRandy Dunlap <randy.dunlap@oracle.com>
Thu, 21 Apr 2011 09:10:42 +0000 (11:10 +0200)
committerJiri Kosina <jkosina@suse.cz>
Thu, 21 Apr 2011 09:10:42 +0000 (11:10 +0200)
samples/hid-example.o needs some Kconfig and Makefile additions in order
to build.  It should use <linux/*.h> headers from the build tree, so use
HEADERS_CHECK to require that those header files be present.

Change the kconfig symbol from tristate to bool since userspace cannot be
built as loadable modules.

However, I don't understand why the userspace header files are not present
as reported in Andrew's build log, since it builds OK on x86_64 without
any of these changes.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Alan Ott <alan@signal11.us>
Cc: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
samples/Kconfig
samples/hidraw/Makefile

index 52f4264b30065b1b5d1c51b48559dd4d10466384..977980317a7d764c51b794ba6034efc83c31d0dd 100644 (file)
@@ -62,8 +62,8 @@ config SAMPLE_KDB
          command to the kdb shell.
 
 config SAMPLE_HIDRAW
-       tristate "Build simple hidraw example"
-       depends on HIDRAW
+       bool "Build simple hidraw example"
+       depends on HIDRAW && HEADERS_CHECK
        help
          Build an example of how to use hidraw from userspace.
 
index 7811cb0289aa74c81049601b3cff52a96f172198..382eeae77bd6437f30b2478a349a259e0434b444 100644 (file)
@@ -6,3 +6,5 @@ hostprogs-y := hid-example
 
 # Tell kbuild to always build the programs
 always := $(hostprogs-y)
+
+HOSTCFLAGS_hid-example.o += -I$(objtree)/usr/include