diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-04-06 18:31:14 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-04-06 18:31:14 +0000 |
commit | fbe47cd3338e6782b83fa7c735d580567c26b7bf (patch) | |
tree | afa391055262d120c68d5f284f6a25f03b02de6b /target/iso9660/Config.in | |
parent | 1718a2060213538df2249db96c036566bbe1d7cf (diff) | |
download | buildroot-novena-fbe47cd3338e6782b83fa7c735d580567c26b7bf.tar.gz buildroot-novena-fbe47cd3338e6782b83fa7c735d580567c26b7bf.zip |
patch from janlana adding an x86 bootable iso9660 CD-ROM target
Diffstat (limited to 'target/iso9660/Config.in')
-rw-r--r-- | target/iso9660/Config.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/iso9660/Config.in b/target/iso9660/Config.in new file mode 100644 index 000000000..56e25cb0f --- /dev/null +++ b/target/iso9660/Config.in @@ -0,0 +1,18 @@ +config BR2_TARGET_ROOTFS_ISO9660 + bool "iso image" + default n + depends on BR2_i386 + select BR2_TARGET_ROOTFS_EXT2 + select BR2_PACKAGE_GRUB + help + Build a bootable iso9660 image + +config BR2_TARGET_ROOTFS_ISO9660_OUTPUT + string "Output File" + depends on BR2_TARGET_ROOTFS_ISO9660 + default "$(IMAGE).iso" + +config BR2_TARGET_ROOTFS_ISO9660_BOOT_MENU + string "Boot menu.lst file" + depends on BR2_TARGET_ROOTFS_ISO9660 + default "target/iso9660/menu.lst" |