Config.in 987 B

1234567891011121314151617181920212223242526272829303132333435
  1. config X86_GRUB_IMAGES
  2. bool "Build GRUB images (Linux x86 or x86_64 host only)"
  3. depends TARGET_x86
  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_BAUDRATE
  11. int "Serial port baud rate"
  12. depends X86_GRUB_IMAGES
  13. default 38400
  14. config X86_GRUB_KERNELPART
  15. int "Kernel partition size (in MB)"
  16. depends X86_GRUB_IMAGES
  17. default 4
  18. config X86_GRUB_ROOTPART
  19. string
  20. prompt "Root partition on target device" if X86_GRUB_IMAGES
  21. default "/dev/hda2"
  22. help
  23. The root partition on the final device. If you don't know,
  24. you probably want the default (/dev/hda2).
  25. config X86_GRUB_BOOTOPTS
  26. string
  27. prompt "Extra kernel boot options" if X86_GRUB_IMAGES
  28. default ""
  29. help
  30. If you don't know, just leave it blank.