Config.in 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. config X86_GRUB_IMAGES
  2. bool "Build GRUB images (Linux x86 or x86_64 host only)"
  3. depends TARGET_x86 && !TARGET_x86_olpc
  4. depends TARGET_ROOTFS_EXT2FS || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS || TARGET_ROOTFS_ISO
  5. select PACKAGE_grub
  6. default y
  7. config X86_GRUB_IMAGES_PAD
  8. bool "Pad GRUB images to filesystem size (for JFFS2)"
  9. depends X86_GRUB_IMAGES
  10. config X86_GRUB_CONSOLE
  11. bool
  12. depends X86_GRUB_IMAGES
  13. prompt "Use Console Terminal (in addition to Serial)"
  14. default n if TARGET_x86_generic_Soekris48xx || TARGET_x86_generic_Soekris45xx
  15. default y if ! (TARGET_x86_generic_Soekris48xx || TARGET_x86_generic_Soekris45xx)
  16. config X86_GRUB_SERIAL
  17. string
  18. prompt "Serial port device"
  19. depends X86_GRUB_IMAGES
  20. default "hvc0" if TARGET_x86_xen_domu
  21. default "ttyS0" if ! TARGET_x86_xen_domu
  22. config X86_GRUB_BAUDRATE
  23. int "Serial port baud rate"
  24. depends X86_GRUB_IMAGES
  25. default 19200 if TARGET_x86_generic_Soekris48xx || TARGET_x86_generic_Soekris45xx
  26. default 38400 if ! (TARGET_x86_generic_Soekris48xx || TARGET_x86_generic_Soekris45xx)
  27. config X86_GRUB_KERNELPART
  28. int "Kernel partition size (in MB)"
  29. depends X86_GRUB_IMAGES
  30. default 4
  31. config X86_GRUB_ROOTPART
  32. string
  33. prompt "Root partition on target device" if X86_GRUB_IMAGES
  34. default "/dev/xvda2" if TARGET_x86_xen_domu
  35. default "/dev/sda2" if ! TARGET_x86_xen_domu
  36. help
  37. The root partition on the final device. If you don't know,
  38. you probably want the default (/dev/sda2).
  39. config X86_GRUB_BOOTOPTS
  40. string
  41. prompt "Extra kernel boot options" if X86_GRUB_IMAGES
  42. default "xencons=hvc" if TARGET_x86_xen_domu
  43. default "" if ! TARGET_x86_xen_domu
  44. help
  45. If you don't know, just leave it blank.
  46. config X86_VDI_IMAGES
  47. bool "Build VirtualBox image files (VDI). Requires VBoxManage"
  48. depends TARGET_x86_generic
  49. depends TARGET_ROOTFS_EXT2FS
  50. depends X86_GRUB_IMAGES
  51. select PACKAGE_kmod-pcnet32
  52. config X86_VMDK_IMAGES
  53. bool "Build VMware image files (VMDK). Requires qemu-img"
  54. depends TARGET_x86_generic
  55. depends TARGET_ROOTFS_EXT2FS
  56. depends X86_GRUB_IMAGES
  57. select PACKAGE_kmod-e1000
  58. config OLPC_BOOTSCRIPT_IMAGES
  59. bool "Build images with bootscript"
  60. depends TARGET_x86_olpc
  61. depends TARGET_ROOTFS_EXT2FS || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS || TARGET_ROOTFS_ISO
  62. default y
  63. config OLPC_BOOTSCRIPT_IMAGES_PAD
  64. bool "Pad bootscript images to filesystem size (for JFFS2)"
  65. depends OLPC_BOOTSCRIPT_IMAGES
  66. config OLPC_BOOTSCRIPT_KERNELPART
  67. int "Kernel partition size (in MB)"
  68. depends OLPC_BOOTSCRIPT_IMAGES
  69. default 4
  70. config OLPC_BOOTSCRIPT_ROOTPART
  71. string
  72. prompt "Root partition on target device" if OLPC_BOOTSCRIPT_IMAGES
  73. default "/dev/sda2"
  74. help
  75. The root partition on the final device. If you don't know,
  76. you probably want the default (/dev/sda2).