418c3a2f90
The fs/iso9660 logic assumes that the Grub bootloader is used. Therefore, it should make sure that Grub is configured with the support for the ISO9660 filesystem. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
19 lines
508 B
Plaintext
19 lines
508 B
Plaintext
config BR2_TARGET_ROOTFS_ISO9660
|
|
bool "iso image"
|
|
depends on (BR2_i386 || BR2_x86_64)
|
|
depends on BR2_LINUX_KERNEL
|
|
select BR2_TARGET_ROOTFS_CPIO
|
|
select BR2_TARGET_GRUB
|
|
select BR2_TARGET_GRUB_FS_ISO9660
|
|
help
|
|
Build a bootable iso9660 image
|
|
|
|
config BR2_TARGET_ROOTFS_ISO9660_BOOT_MENU
|
|
string "Boot menu.lst file"
|
|
depends on BR2_TARGET_ROOTFS_ISO9660
|
|
default "fs/iso9660/menu.lst"
|
|
|
|
comment "iso image needs a Linux kernel to be built"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on !BR2_LINUX_KERNEL
|