Config.in 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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_EXT4FS || TARGET_ROOTFS_ISO || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS
  5. select PACKAGE_grub
  6. default y
  7. config X86_GRUB_CONSOLE
  8. bool "Use Console Terminal (in addition to Serial)"
  9. depends X86_GRUB_IMAGES
  10. default n if (TARGET_x86_generic_Soekris45xx || TARGET_x86_generic_Soekris48xx || TARGET_x86_net5501 || TARGET_x86_geos)
  11. default y
  12. config X86_GRUB_SERIAL
  13. string "Serial port device"
  14. depends X86_GRUB_IMAGES
  15. default "hvc0" if (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
  16. default "ttyS0" if ! (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
  17. config X86_GRUB_BAUDRATE
  18. int "Serial port baud rate"
  19. depends X86_GRUB_IMAGES
  20. default 19200 if TARGET_x86_generic_Soekris45xx || TARGET_x86_generic_Soekris48xx || TARGET_x86_net5501
  21. default 38400
  22. default 115200 if TARGET_x86_geos
  23. config X86_GRUB_BOOTOPTS
  24. string "Extra kernel boot options"
  25. depends X86_GRUB_IMAGES
  26. default "xencons=hvc" if TARGET_x86_xen_domu
  27. help
  28. If you don't know, just leave it blank.
  29. config X86_VDI_IMAGES
  30. bool "Build VirtualBox image files (VDI)"
  31. depends X86_GRUB_IMAGES
  32. depends TARGET_x86_generic
  33. depends TARGET_ROOTFS_EXT4FS
  34. select PACKAGE_kmod-pcnet32
  35. config X86_VMDK_IMAGES
  36. bool "Build VMware image files (VMDK)"
  37. depends X86_GRUB_IMAGES
  38. depends TARGET_x86_generic
  39. depends TARGET_ROOTFS_EXT4FS
  40. select PACKAGE_kmod-e1000
  41. config OLPC_BOOTSCRIPT_IMAGES
  42. bool "Build images with bootscript"
  43. depends TARGET_x86_olpc
  44. depends TARGET_ROOTFS_EXT4FS || TARGET_ROOTFS_ISO || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS
  45. config TARGET_IMAGES_PAD
  46. bool "Pad images to filesystem size (for JFFS2)"
  47. depends OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  48. config TARGET_KERNEL_PARTSIZE
  49. int "Kernel partition size (in MB)"
  50. depends OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  51. default 4
  52. config TARGET_ROOTFS_PARTNAME
  53. string "Root partition on target device"
  54. depends OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  55. default "/dev/vda2" if TARGET_x86_kvm_guest
  56. default "/dev/xvda2" if TARGET_x86_xen_domu
  57. default "/dev/sda2" if ! (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
  58. help
  59. The root partition on the final device. If you don't know,
  60. you probably want the default (/dev/sda2).