summaryrefslogtreecommitdiffstats
path: root/rules/opkg.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2010-06-14 19:45:32 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2010-10-22 11:15:33 +0200
commitc5625d62b1f2a43bea5bb8e328406f7a05e43800 (patch)
tree20a01dcd1b2512566ba567325606e784698b79c8 /rules/opkg.in
parent70ab817d6e4106a85ec6dc02f2f6373ae46b7700 (diff)
downloadptxdist-c5625d62b1f2a43bea5bb8e328406f7a05e43800.tar.gz
ptxdist-c5625d62b1f2a43bea5bb8e328406f7a05e43800.tar.xz
[opkg] version bump r180 -> 0.1.8
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/opkg.in')
-rw-r--r--rules/opkg.in50
1 files changed, 47 insertions, 3 deletions
diff --git a/rules/opkg.in b/rules/opkg.in
index aa6273ade..bcff2098b 100644
--- a/rules/opkg.in
+++ b/rules/opkg.in
@@ -1,10 +1,54 @@
## SECTION=disk_and_file
-config OPKG
+menuconfig OPKG
tristate
- select LIBCURL
- prompt "opkg"
+ select LIBCURL if OPKG_CURL
+ prompt "opkg "
help
Opkg is a lightweight package management system based on Ipkg.
http://code.google.com/p/opkg/
+
+if OPKG
+
+config OPKG_PATHFINDER
+ bool
+ prompt "pathfinder support"
+ # needs pathfinder-openssl
+ depends on BROKEN
+ help
+ FIXME
+
+config OPKG_CURL
+ bool
+ prompt "libcurl support"
+ help
+ FIXME - is this optional?
+
+config OPKG_SHA256
+ bool
+ prompt "sha256 support"
+ help
+ FIXME
+
+config OPKG_OPENSSL
+ bool
+ prompt "openssl signature checking"
+ help
+ FIXME
+
+config OPKG_SSL_CURL
+ bool
+ prompt "libcurl certificate authentication"
+ help
+ FIXME
+
+config OPKG_GPG
+ bool
+ prompt "signature checking with gpg"
+ # gpg and openssl are mutually exclusive
+ depends on ! OPKG_OPENSSL
+ help
+ FIXME
+
+endif