Config.in 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. config BR2_TARGET_AT91BOOTSTRAP3
  2. bool "AT91 Bootstrap 3"
  3. depends on BR2_arm926t || BR2_cortex_a5
  4. help
  5. AT91Bootstrap is a first level bootloader for the Atmel AT91
  6. devices. It integrates algorithms for:
  7. - Device initialization such as clock configuration, PIO
  8. settings...
  9. - Peripheral drivers such as PIO, PMC or SDRAMC...
  10. - Physical media algorithm such as DataFlash, NandFlash, NOR
  11. Flash...
  12. https://www.at91.com/linux4sam/bin/view/Linux4SAM/AT91Bootstrap
  13. if BR2_TARGET_AT91BOOTSTRAP3
  14. choice
  15. prompt "AT91 Bootstrap 3 version"
  16. config BR2_TARGET_AT91BOOTSTRAP3_LATEST_VERSION
  17. bool "3.8.6"
  18. config BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_GIT
  19. bool "Custom Git repository"
  20. help
  21. This option allows Buildroot to get the AT91 Bootstrap 3
  22. source code from a Git repository.
  23. endchoice
  24. if BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_GIT
  25. config BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_REPO_URL
  26. string "URL of custom repository"
  27. config BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_REPO_VERSION
  28. string "Custom repository version"
  29. help
  30. Revision to use in the typical format used by Git
  31. E.G. a sha id, a tag, branch, ..
  32. endif
  33. config BR2_TARGET_AT91BOOTSTRAP3_VERSION
  34. string
  35. default "v3.8.6" if BR2_TARGET_AT91BOOTSTRAP3_LATEST_VERSION
  36. default BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_REPO_VERSION \
  37. if BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_GIT
  38. config BR2_TARGET_AT91BOOTSTRAP3_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 at91bootstrap3-<something>.patch.
  44. Most users may leave this empty
  45. #
  46. # Configuration selection
  47. #
  48. choice
  49. prompt "AT91 Bootstrap 3 configuration"
  50. default BR2_TARGET_AT91BOOTSTRAP3_USE_DEFCONFIG
  51. config BR2_TARGET_AT91BOOTSTRAP3_USE_DEFCONFIG
  52. bool "Using a defconfig"
  53. config BR2_TARGET_AT91BOOTSTRAP3_USE_CUSTOM_CONFIG
  54. bool "Using a custom config file"
  55. endchoice
  56. config BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG
  57. string "Defconfig name"
  58. depends on BR2_TARGET_AT91BOOTSTRAP3_USE_DEFCONFIG
  59. help
  60. Name of the at91bootstrap3 defconfig file to use, without the
  61. trailing _defconfig. The defconfig is located at
  62. board/<processor>/<board>_defconfig in the at91bootstrap3
  63. tree.
  64. config BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE
  65. string "Configuration file path"
  66. depends on BR2_TARGET_AT91BOOTSTRAP3_USE_CUSTOM_CONFIG
  67. help
  68. Path to the at91bootstrap3 configuration file
  69. endif # BR2_TARGET_AT91BOOTSTRAP3