Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. config BR2_TARGET_AT91BOOTSTRAP
  2. bool "AT91 Bootstrap"
  3. depends on BR2_arm926t
  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. if BR2_TARGET_AT91BOOTSTRAP
  13. config BR2_TARGET_AT91BOOTSTRAP_CUSTOM_PATCH_DIR
  14. string "custom patch dir"
  15. help
  16. If your board requires custom patches, add the path to the
  17. directory containing the patches here. The patches must be
  18. named at91bootstrap-<version>-<something>.patch.
  19. Most users may leave this empty
  20. config BR2_TARGET_AT91BOOTSTRAP_BOARD
  21. string "Bootstrap board"
  22. default ""
  23. help
  24. This is used to do a make <board>_config
  25. choice
  26. prompt "Boot Memory"
  27. default BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
  28. help
  29. Select Chip for which AT91 bootstrap should be built
  30. config BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
  31. bool "Data Flash"
  32. config BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
  33. bool "NAND Flash"
  34. endchoice
  35. config BR2_TARGET_AT91BOOTSTRAP_MEMORY
  36. string
  37. default "dataflash" if BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
  38. default "nandflash" if BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
  39. endif