summaryrefslogtreecommitdiffstats
path: root/rules/ipkg.in
blob: 806914b5001409f1af5ec20462756a7f8fb4310b (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
55
56
57
58
59
60
61
## SECTION=disk_and_file
menuconfig IPKG
	tristate
	prompt "ipkg                          "
# ipkg calls wget with long options!
	select BB_CONFIG_FEATURE_WGET_LONG_OPTIONS if BB_CONFIG_WGET
	help
	  IPKG is a small packet mechanism for embedded systems to
	  maintain the applications on the system.
	  It allows installing, updating or removing applications
	  at runtime

if IPKG

config IPKG_EXTRACT_TEST
	bool
	prompt "ipkg_extract_test"
	help
	  Unfortunately, nobody knows what this program is being used for.
	  FIXME: This item needs to be documented

config IPKG_HASH_TEST
	bool
	prompt "ipkg_hash_test"
	help
	  Unfortunately, nobody knows what this program is being used for.
	  FIXME: This item needs to be documented

config IPKG_LOG_WRAPPER
	bool
	prompt "use ipkg log wrapper"
	help
	  If selected, ipkg will be installed with a wrapper script
	  which provides basic logging facilities

config IPKG_GENERIC_IPKG_CONF
	bool
	prompt "install /etc/ipkg.conf"
	default y
	depends on ROOTFS
	help
	  Installs a generic /etc/ipkg.conf file.

	config IPKG_GENERIC_IPKG_CONF_URL
		depends on IPKG_GENERIC_IPKG_CONF
		string
		prompt "IPKG Update Site URL"
		default "src http://some/path"
		help
		  This path is put into the /etc/ipkg.conf file and specifies
		  where to find an IPKG packet feed.

		  Note: Keep the "src" in front of the URL, its required if the
		  URL should be used.

		  If you don't want to use this feature, keep the whole entry empty.

		  Important: To make ipkg work at runtime, you must install this
		  configuration file. Without it you can't install new packages.

endif