Config.in 1.9 KB

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