Config.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. config X86_ETHERBOOT_IMAGES
  2. bool "Build Etherboot image"
  3. depends on TARGET_x86 && TARGET_x86_thincan_DBE61
  4. default y
  5. help
  6. Builds network bootable image for ThinCan DBE61 (Etherboot BIOS)
  7. config X86_ETHERBOOT_BOOTOPTS
  8. string "Extra kernel boot options"
  9. depends on X86_ETHERBOOT_IMAGES
  10. default "ip=dhcp nbdport=2000 " if TARGET_ROOTFS_SQUASHFS
  11. default "ip=dhcp root=/dev/nfs nfsroot=192.168.0.1:/srv/dbe61"
  12. help
  13. Kernel arguments to pass to the kernel eg. NFS root location etc.
  14. config X86_GRUB_IMAGES
  15. bool "Build GRUB images (Linux x86 or x86_64 host only)"
  16. depends on TARGET_x86 && !(TARGET_x86_olpc || TARGET_x86_rdc)
  17. depends on TARGET_ROOTFS_EXT4FS || TARGET_ROOTFS_ISO || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS
  18. select PACKAGE_grub2
  19. default y
  20. config X86_GRUB_CONSOLE
  21. bool "Use Console Terminal (in addition to Serial)"
  22. depends on X86_GRUB_IMAGES
  23. default n if (TARGET_x86_generic_Soekris45xx || TARGET_x86_generic_Soekris48xx || TARGET_x86_net5501 || TARGET_x86_geos || TARGET_x86_alix2)
  24. default y
  25. config X86_GRUB_SERIAL
  26. string "Serial port device"
  27. depends on X86_GRUB_IMAGES
  28. default "hvc0" if TARGET_x86_xen_domu
  29. default "ttyS0" if ! TARGET_x86_xen_domu
  30. config X86_GRUB_BAUDRATE
  31. int "Serial port baud rate"
  32. depends on X86_GRUB_IMAGES
  33. default 19200 if TARGET_x86_generic_Soekris45xx || TARGET_x86_generic_Soekris48xx || TARGET_x86_net5501
  34. default 38400 if TARGET_x86_alix2
  35. default 115200 if TARGET_x86_geos || TARGET_x86_kvm_guest
  36. default 38400
  37. config X86_GRUB_BOOTOPTS
  38. string "Extra kernel boot options"
  39. depends on X86_GRUB_IMAGES
  40. default "xencons=hvc" if TARGET_x86_xen_domu
  41. help
  42. If you don't know, just leave it blank.
  43. config X86_GRUB_TIMEOUT
  44. string "Seconds to wait before booting the default entry"
  45. depends on X86_GRUB_IMAGES
  46. default "5"
  47. help
  48. If you don't know, 5 seconds is a reasonable default.
  49. config X86_VDI_IMAGES
  50. bool "Build VirtualBox image files (VDI)"
  51. depends on X86_GRUB_IMAGES
  52. depends on TARGET_x86
  53. depends on TARGET_ROOTFS_EXT4FS
  54. select PACKAGE_kmod-pcnet32
  55. config X86_VMDK_IMAGES
  56. bool "Build VMware image files (VMDK)"
  57. depends on X86_GRUB_IMAGES
  58. depends on TARGET_x86
  59. depends on TARGET_ROOTFS_EXT4FS
  60. select PACKAGE_kmod-e1000
  61. config OLPC_BOOTSCRIPT_IMAGES
  62. bool "Build images with bootscript"
  63. depends on TARGET_x86_olpc
  64. depends on TARGET_ROOTFS_EXT4FS || TARGET_ROOTFS_ISO || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS
  65. default TARGET_x86_olpc
  66. config TARGET_IMAGES_PAD
  67. bool "Pad images to filesystem size (for JFFS2)"
  68. depends on OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  69. config TARGET_IMAGES_GZIP
  70. bool "GZip images"
  71. depends on TARGET_IMAGES_PAD || TARGET_ROOTFS_EXT4FS
  72. default y
  73. config TARGET_KERNEL_PARTSIZE
  74. int "Kernel partition size (in MB)"
  75. depends on OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  76. default 4
  77. config TARGET_ROOTFS_PARTNAME
  78. string "Root partition on target device"
  79. depends on OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  80. default "/dev/vda2" if TARGET_x86_kvm_guest
  81. default "/dev/xvda2" if TARGET_x86_xen_domu
  82. default "/dev/sda2" if ! (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
  83. help
  84. The root partition on the final device. If you don't know,
  85. you probably want the default (/dev/sda2).