Config.in 1.8 KB

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