summaryrefslogtreecommitdiffstats
path: root/platforms/image_iso.in
blob: 3611e8819d4b59fff71b2ee9bfcb3bef81b25cfa (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
	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