summaryrefslogtreecommitdiffstats
path: root/rules/opkg.in
blob: bcff2098b9a9de520fe6d74552c32612842f9416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
## SECTION=disk_and_file

menuconfig OPKG
	tristate
	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