Config.in 968 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. menuconfig BR2_TARGET_AT91BOOTSTRAP
  2. depends on BR2_arm
  3. bool "AT91 Bootstrap"
  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_BOARD
  12. string "Bootstrap board"
  13. default ""
  14. help
  15. This is used to do a make <board>_config
  16. choice
  17. prompt "Boot Memory"
  18. default BR2_TARGET_AT91BOOT_DATAFLASH
  19. help
  20. Select Chip for which AT91 bootstrap should be built
  21. config BR2_TARGET_AT91BOOT_DATAFLASH
  22. bool "Data Flash"
  23. config BR2_TARGET_AT91BOOT_NANDFLASH
  24. bool "NAND Flash"
  25. endchoice
  26. config BR2_TARGET_AT91BOOTSTRAP_MEMORY
  27. string
  28. default "dataflash" if BR2_TARGET_AT91BOOT_DATAFLASH
  29. default "nandflash" if BR2_TARGET_AT91BOOT_NANDFLASH
  30. endif