summaryrefslogtreecommitdiffstats
path: root/platforms/image_ipkg.in
blob: ef36984427399c5b55c2a19cfaeb3dce2a75d2c1 (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
## 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.

config IMAGE_IPKG_INDEX
	bool "generate ipkg.index"
	default y
	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_IPKG_EXTRA_ARGS
	string
	default ""
	prompt "extra arguments passed to ipkg-build"
	help
	  If needed you can add extra arguments for ipkg-build here
	  (e.g. -c if you want ipkg-build to use tar instead of ar.)

endmenu