Config.in 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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_2012_04
  10. help
  11. Select the specific Barebox version you want to use
  12. config BR2_TARGET_BAREBOX_2012_01
  13. depends on BR2_DEPRECATED
  14. bool "2012.01"
  15. config BR2_TARGET_BAREBOX_2012_02
  16. bool "2012.02"
  17. config BR2_TARGET_BAREBOX_2012_03
  18. bool "2012.03"
  19. config BR2_TARGET_BAREBOX_2012_04
  20. bool "2012.04"
  21. config BR2_TARGET_BAREBOX_CUSTOM_TARBALL
  22. bool "Custom tarball"
  23. config BR2_TARGET_BAREBOX_CUSTOM_GIT
  24. bool "Custom Git repository"
  25. endchoice
  26. if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
  27. config BR2_TARGET_BAREBOX_CUSTOM_TARBALL_LOCATION
  28. string "URL of custom Barebox tarball"
  29. endif
  30. config BR2_TARGET_BAREBOX_VERSION
  31. string
  32. default "2012.01.0" if BR2_TARGET_BAREBOX_2012_01
  33. default "2012.02.0" if BR2_TARGET_BAREBOX_2012_02
  34. default "2012.03.0" if BR2_TARGET_BAREBOX_2012_03
  35. default "2012.04.0" if BR2_TARGET_BAREBOX_2012_04
  36. default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
  37. default $BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
  38. config BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR
  39. string "custom patch dir"
  40. help
  41. If your board requires custom patches, add the path to the
  42. directory containing the patches here. The patches must be
  43. named barebox-<version>-<something>.patch.
  44. Most users may leave this empty
  45. if BR2_TARGET_BAREBOX_CUSTOM_GIT
  46. config BR2_TARGET_BAREBOX_CUSTOM_GIT_REPO_URL
  47. string "URL of custom Git repository"
  48. config BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION
  49. string "Custom Git version"
  50. endif
  51. config BR2_TARGET_BAREBOX_BOARD_DEFCONFIG
  52. string "board defconfig"
  53. help
  54. Name of the board for which Barebox should be built, without
  55. the _defconfig suffix.
  56. config BR2_TARGET_BAREBOX_BAREBOXENV
  57. bool "bareboxenv tool in target"
  58. help
  59. Install bareboxenv tool in target.
  60. endif