summaryrefslogtreecommitdiffstats
path: root/platforms/image_iso.in
blob: e8fe260ee9a38a48803e9ec405cef8ae10a4b871 (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
## SECTION=image

menuconfig IMAGE_ISO
	bool
	select SYSLINUX
	select HOST_CDRKIT
	select IMAGE_CPIO_GZ
	depends on ARCH_X86
	prompt "Generate images/bootcd.iso    "
	help
	  build a bootable cd image

if IMAGE_ISO

config IMAGE_ISO_ADDON_DIR
	string
	prompt "addon dir"
	default "${PTXDIST_TOPDIR}/config/image_iso"
	help
	  Specify a directory which contents will be copied to the
	  ISO image.

	  The default is:
	  "${PTXDIST_TOPDIR}/config/image_iso"

	  If you want to specify a path in your workspace, use:
	  "${PTXDIST_WORKSPACE}/<path>"

endif