Config.in 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 settings...
  8. - Peripheral drivers such as PIO, PMC or SDRAMC...
  9. - Physical media algorithm such as DataFlash, NandFlash, NOR Flash...
  10. if BR2_TARGET_AT91BOOTSTRAP
  11. config BR2_TARGET_AT91BOOTSTRAP_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 at91bootstrap-<version>-<something>.patch.
  17. Most users may leave this empty
  18. config BR2_TARGET_AT91BOOTSTRAP_BOARD
  19. string "Bootstrap board"
  20. default ""
  21. help
  22. This is used to do a make <board>_config
  23. choice
  24. prompt "Boot Memory"
  25. default BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
  26. help
  27. Select Chip for which AT91 bootstrap should be built
  28. config BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
  29. bool "Data Flash"
  30. config BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
  31. bool "NAND Flash"
  32. endchoice
  33. config BR2_TARGET_AT91BOOTSTRAP_MEMORY
  34. string
  35. default "dataflash" if BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
  36. default "nandflash" if BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
  37. endif