Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. config BR2_TARGET_BAREBOX
  2. bool "Barebox"
  3. help
  4. The Barebox bootloader, formerly known as U-Boot v2.
  5. http://www.barebox.org
  6. if BR2_TARGET_BAREBOX
  7. choice
  8. prompt "version"
  9. default BR2_TARGET_BAREBOX_2011_09
  10. help
  11. Select the specific Barebox version you want to use
  12. config BR2_TARGET_BAREBOX_2011_08
  13. bool "2011.08"
  14. config BR2_TARGET_BAREBOX_2011_09
  15. bool "2011.09"
  16. config BR2_TARGET_BAREBOX_CUSTOM_TARBALL
  17. bool "Custom tarball"
  18. config BR2_TARGET_BAREBOX_CUSTOM_GIT
  19. bool "Custom Git repository"
  20. endchoice
  21. if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
  22. config BR2_TARGET_BAREBOX_CUSTOM_TARBALL_LOCATION
  23. string "URL of custom Barebox tarball"
  24. endif
  25. config BR2_TARGET_BAREBOX_VERSION
  26. string
  27. default "2011.08.0" if BR2_TARGET_BAREBOX_2011_08
  28. default "2011.09.0" if BR2_TARGET_BAREBOX_2011_09
  29. default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
  30. default $BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
  31. config BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR
  32. string "custom patch dir"
  33. help
  34. If your board requires custom patches, add the path to the
  35. directory containing the patches here. The patches must be
  36. named barebox-<version>-<something>.patch.
  37. Most users may leave this empty
  38. if BR2_TARGET_BAREBOX_CUSTOM_GIT
  39. config BR2_TARGET_BAREBOX_CUSTOM_GIT_REPO_URL
  40. string "URL of custom Git repository"
  41. config BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION
  42. string "Custom Git version"
  43. endif
  44. config BR2_TARGET_BAREBOX_BOARD_DEFCONFIG
  45. string "board defconfig"
  46. help
  47. Name of the board for which Barebox should be built, without
  48. the _defconfig suffix.
  49. config BR2_TARGET_BAREBOX_BAREBOXENV
  50. bool "bareboxenv tool in target"
  51. help
  52. Install bareboxenv tool in target.
  53. endif