Config.in 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. config X86_ETHERBOOT_IMAGES
  2. bool "Build Etherboot image"
  3. depends 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 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 TARGET_x86 && !TARGET_x86_olpc
  17. depends TARGET_ROOTFS_EXT4FS || TARGET_ROOTFS_ISO || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS
  18. select PACKAGE_grub
  19. default y
  20. config X86_GRUB_CONSOLE
  21. bool "Use Console Terminal (in addition to Serial)"
  22. depends X86_GRUB_IMAGES
  23. default n if (TARGET_x86_generic_Soekris45xx || TARGET_x86_generic_Soekris48xx || TARGET_x86_net5501 || TARGET_x86_geos)
  24. default y
  25. config X86_GRUB_SERIAL
  26. string "Serial port device"
  27. depends X86_GRUB_IMAGES
  28. default "hvc0" if (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
  29. default "ttyS0" if ! (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
  30. config X86_GRUB_BAUDRATE
  31. int "Serial port baud rate"
  32. depends 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
  36. default 38400
  37. config X86_GRUB_BOOTOPTS
  38. string "Extra kernel boot options"
  39. depends 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_VDI_IMAGES
  44. bool "Build VirtualBox image files (VDI)"
  45. depends X86_GRUB_IMAGES
  46. depends TARGET_x86_generic
  47. depends TARGET_ROOTFS_EXT4FS
  48. select PACKAGE_kmod-pcnet32
  49. config X86_VMDK_IMAGES
  50. bool "Build VMware image files (VMDK)"
  51. depends X86_GRUB_IMAGES
  52. depends TARGET_x86_generic
  53. depends TARGET_ROOTFS_EXT4FS
  54. select PACKAGE_kmod-e1000
  55. config OLPC_BOOTSCRIPT_IMAGES
  56. bool "Build images with bootscript"
  57. depends TARGET_x86_olpc
  58. depends TARGET_ROOTFS_EXT4FS || TARGET_ROOTFS_ISO || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS
  59. config TARGET_IMAGES_PAD
  60. bool "Pad images to filesystem size (for JFFS2)"
  61. depends OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  62. default y
  63. config TARGET_KERNEL_PARTSIZE
  64. int "Kernel partition size (in MB)"
  65. depends OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  66. default 4
  67. config TARGET_ROOTFS_PARTNAME
  68. string "Root partition on target device"
  69. depends OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
  70. default "/dev/vda2" if TARGET_x86_kvm_guest
  71. default "/dev/xvda2" if TARGET_x86_xen_domu
  72. default "/dev/sda2" if ! (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
  73. help
  74. The root partition on the final device. If you don't know,
  75. you probably want the default (/dev/sda2).