Config.in 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. config BR2_TARGET_AT91BOOTSTRAP3
  2. depends on BR2_arm926t
  3. bool "AT91 Bootstrap 3"
  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 settings...
  8. - Peripheral drivers such as PIO, PMC or SDRAMC...
  9. - Physical media algorithm such as DataFlash, NandFlash, NOR Flash...
  10. if BR2_TARGET_AT91BOOTSTRAP3
  11. config BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_PATCH_DIR
  12. string "custom patch dir"
  13. help
  14. If your board requires custom patches, add the path to the
  15. directory containing the patches here. The patches must be
  16. named at91bootstrap3-<something>.patch.
  17. Most users may leave this empty
  18. #
  19. # Configuration selection
  20. #
  21. choice
  22. prompt "AT91 Bootstrap 3 configuration"
  23. default BR2_TARGET_AT91BOOTSTRAP3_USE_DEFCONFIG
  24. config BR2_TARGET_AT91BOOTSTRAP3_USE_DEFCONFIG
  25. bool "Using a defconfig"
  26. config BR2_TARGET_AT91BOOTSTRAP3_USE_CUSTOM_CONFIG
  27. bool "Using a custom config file"
  28. endchoice
  29. config BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG
  30. string "Defconfig name"
  31. depends on BR2_TARGET_AT91BOOTSTRAP3_USE_DEFCONFIG
  32. help
  33. Name of the at91bootstrap3 defconfig file to use, without the
  34. trailing _defconfig. The defconfig is located at
  35. board/<processor>/<board>_defconfig in the at91bootstrap3
  36. tree.
  37. config BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE
  38. string "Configuration file path"
  39. depends on BR2_TARGET_AT91BOOTSTRAP3_USE_CUSTOM_CONFIG
  40. help
  41. Path to the at91bootstrap3 configuration file
  42. endif # BR2_TARGET_AT91BOOTSTRAP3