summaryrefslogtreecommitdiffstats
path: root/rules/libusb.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2009-05-11 16:33:09 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2009-05-11 16:33:09 +0000
commit39b200b963f296ee11f9673a95c7c05a12971df1 (patch)
tree2466f60c1c0db0179ff5d78a586f8b19352c56e0 /rules/libusb.in
parent6c2a48f5818edca4da360c6db0cb7dcd904b66ec (diff)
downloadptxdist-39b200b963f296ee11f9673a95c7c05a12971df1.tar.gz
ptxdist-39b200b963f296ee11f9673a95c7c05a12971df1.tar.xz
* libusb: renamed back to libusb
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10440 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libusb.in')
-rw-r--r--rules/libusb.in35
1 files changed, 35 insertions, 0 deletions
diff --git a/rules/libusb.in b/rules/libusb.in
new file mode 100644
index 000000000..e76536f91
--- /dev/null
+++ b/rules/libusb.in
@@ -0,0 +1,35 @@
+## SECTION=system_libraries
+menuconfig LIBUSB
+ tristate
+ prompt "libusb-1.x "
+ help
+ Library to enable user space application programs to
+ communicate with USB devices.
+ Note: libusb-1.x is not binary compatible with its precedessor
+ libusb-0.x!
+
+if LIBUSB
+
+config LIBUSB_DISABLE_LOG
+ bool
+ prompt "Disable all log"
+ default y
+ help
+ Disable all logging
+
+config LIBUSB_DEBUG_LOG
+ bool
+ prompt "Enable debug log"
+ depends on !LIBUSB_DISABLE_LOG
+ help
+ Enable full debug logging
+
+config LIBUSB_BUILD_STATIC
+ bool
+ prompt "Build static only"
+ help
+ Build a static only version of this library. This makes sense if only
+ one program will use this library on the target and it makes even
+ more sense if a CPU with low register count (like x86) is in use.
+
+endif