The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / boot / syslinux / Config.in
diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/boot/syslinux/Config.in b/cirros-testvm/src-cirros/buildroot-2015.05/boot/syslinux/Config.in
new file mode 100644 (file)
index 0000000..f4b9870
--- /dev/null
@@ -0,0 +1,59 @@
+config BR2_TARGET_SYSLINUX
+       bool "syslinux"
+       depends on BR2_i386 || BR2_x86_64
+       select BR2_HOSTARCH_NEEDS_IA32_COMPILER
+       help
+         The syslinux bootloader for x86 systems.
+         This includes: syslinux, pxelinux, extlinux.
+
+         http://syslinux.org
+
+if BR2_TARGET_SYSLINUX
+
+config BR2_TARGET_SYSLINUX_LEGACY_BIOS
+       bool
+
+choice
+       bool "Image to install"
+
+config BR2_TARGET_SYSLINUX_ISOLINUX
+       bool "isolinux"
+       select BR2_TARGET_SYSLINUX_LEGACY_BIOS
+       help
+         Install the legacy-BIOS 'isolinux' image, to boot off
+         optical media (CDROM, DVD.)
+
+config BR2_TARGET_SYSLINUX_PXELINUX
+       bool "pxelinux"
+       select BR2_TARGET_SYSLINUX_LEGACY_BIOS
+       help
+         Install the legacy-BIOS 'pxelinux' image, to boot off
+         the network using PXE.
+
+config BR2_TARGET_SYSLINUX_MBR
+       bool "mbr"
+       select BR2_TARGET_SYSLINUX_LEGACY_BIOS
+       help
+         Install the legacy-BIOS 'mbr' image, to boot off a
+         local MBR-partition (e.g. prepared with 'extlinux'
+         or 'syslinux').
+
+config BR2_TARGET_SYSLINUX_EFI
+       bool "efi"
+       select BR2_PACKAGE_GNU_EFI
+       help
+         Install the 'efi' image, to boot from an EFI environment.
+
+endchoice
+
+if BR2_TARGET_SYSLINUX_LEGACY_BIOS
+
+config BR2_TARGET_SYSLINUX_C32
+       string "modules to install"
+       help
+         Enter a space-separated list of .c32 modules to install.
+         Leave empty to install no module.
+
+endif # BR2_TARGET_SYSLINUX_LEGACY_BIOS
+
+endif # BR2_TARGET_SYSLINUX