summaryrefslogtreecommitdiffstats
path: root/platforms/image_ipkg.in
blob: dae4fe5b764641ad10982008043e3f481d61ea6b (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
## SECTION=image

menu "ipkg options                  "

config IMAGE_IPKG_PUSH_TO_REPOSITORY
	bool
	prompt "make images: push packets to ipkg-repository"
	help
	  If this option is checked the packet files are pushed to
	  the ipkg-repository (to be specified in .ptxdistrc).
	  
	  Please note, that the ipkg-repository is currently a
	  local directory on your machine.  

config IMAGE_IPKG_FORCED_PUSH
	depends on IMAGE_IPKG_PUSH_TO_REPOSITORY
	bool
	prompt "force ipkg-push"
	help
	  Usually the script checks for some previous ipkg-push to
	  a 'dist' release and requires you to delete a previous
	  dist directory
	  
	  If this option is checked, this is done by default. This
	  is most useful for development purposes.

menuconfig IMAGE_IPKG_SIGN_OPENSSL
	depends on IMAGE_IPKG_PUSH_TO_REPOSITORY
	bool
	select HOST_OPENSSL
	prompt "sign ipkg-repository with openssl"
	help
	  Use openssl to to sign the Packages file in the package
	  repository.


if IMAGE_IPKG_SIGN_OPENSSL

config IMAGE_IPKG_SIGN_OPENSSL_SIGNER
	string
	prompt "signer certificate file"
	help
	  signer certificate file to pass to openssl for signing.

config IMAGE_IPKG_SIGN_OPENSSL_KEY
	string
	prompt "private key file"
	help
	  private key file to pass to openssl.

endif

config IMAGE_INSTALL_FROM_IPKG_REPOSITORY
	bool
	select IMAGE_IPKG_PUSH_TO_REPOSITORY
	select IMAGE_IPKG_FORCED_PUSH
	prompt "make images: install packets from ipkg-repository"
	help
	  If this option is checked the packet files from the
	  ipkg-repository are used to create the images
	  
	  Please note, that the ipkg-repository is currently a
	  local directory on your machine.

config IMAGE_IPKG_INDEX
	bool "generate ipkg.index"
	help
	  Activating this option generates a ipkg index file
	  ("Packages") in your PKGDIR. If served by a web or ftp
	  server it allows ipkg on your target to access your ipkg and
	  install or update them.

config IMAGE_XPKG_EXTRA_ARGS
	string
	prompt "extra arguments passed to ipkg-build/opkg-build"
	help
	  If needed you can add extra arguments for
	  ipkg-build/opkg-build here (e.g. -c if you want ipkg-build
	  to use tar instead of ar.)

endmenu