Config.in 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. menuconfig BR2_TARGET_ATMEL
  2. bool "Atmel Device Support"
  3. depends on BR2_arm || BR2_avr32
  4. if BR2_TARGET_ATMEL
  5. source "target/device/Atmel/AT91_Config.in"
  6. source "target/device/Atmel/AVR32_Config.in"
  7. config BR2_BOARD_NAME
  8. string
  9. default "at91rm9200df" if BR2_TARGET_AT91RM9200DF
  10. default "at91rm9200se" if BR2_TARGET_AT91RM9200SE
  11. default "at91rm9200ek" if BR2_TARGET_AT91RM9200EK
  12. default "at91rm9200dk" if BR2_TARGET_AT91RM9200DK
  13. default "at91sam9260ek" if BR2_TARGET_AT91SAM9260EK
  14. default "at91sam9260dfc" if BR2_TARGET_AT91SAM9260DFC
  15. default "at91sam9261ek" if BR2_TARGET_AT91SAM9261EK
  16. default "at91sam9262ek" if BR2_TARGET_AT91SAM9262EK
  17. default "at91sam9263ek" if BR2_TARGET_AT91SAM9263EK
  18. default "at91sam9xeek" if BR2_TARGET_AT91SAM9XEEK
  19. default "at91sam9g20ek" if BR2_TARGET_AT91SAM9G20EK
  20. default "at91sam9g20dfc" if BR2_TARGET_AT91SAM9G20DFC
  21. default "at91sam9g45ekes" if BR2_TARGET_AT91SAM9G45EKES
  22. default "at91sam9m10ek" if BR2_TARGET_AT91SAM9M10EK
  23. default "at91sam9m10dfc" if BR2_TARGET_AT91SAM9M10DFC
  24. default "atstk100x" if BR2_TARGET_AVR32_ATSTK1002
  25. default "atstk1005" if BR2_TARGET_AVR32_ATSTK1005
  26. default "atngw100" if BR2_TARGET_AVR32_ATNGW100
  27. default "atngw100-base" if BR2_TARGET_AVR32_ATNGW100_BASE
  28. default "atngw100-expanded" if BR2_TARGET_AVR32_ATNGW100_EXPANDED
  29. config BR2_TARGET_AT91_ADVANCED_INFO
  30. bool "Remove work in progress"
  31. depends on BR2_TARGET_AT91
  32. default y
  33. help
  34. Atmel AT91 ARM based systems
  35. comment "Package support"
  36. depends on BR2_TARGET_AT91 || BR2_TARGET_AVR32
  37. menu "Secondary locations"
  38. config BR2_AT91_LINUXPATCH_SITE
  39. string "AT91 Linux Patch mirror site"
  40. depends on BR2_TARGET_AT91
  41. default "http://maxim.org.za/AT91RM9200/2.6"
  42. help
  43. Main download location for AT91 Linux stuff
  44. config BR2_TARGET_ATMEL_COPYTO
  45. string "also copy the image to..."
  46. depends on BR2_TARGET_AT91 || BR2_TARGET_AVR32
  47. default "/tftpboot"
  48. help
  49. Copies the resulting image to a secondary location.
  50. config BR2_BOARD_PATH
  51. string "Atmel board repository"
  52. depends on BR2_TARGET_AT91 || BR2_TARGET_AVR32
  53. default "target/device/Atmel/$(BR2_BOARD_NAME)"
  54. help
  55. Top directory of Atmel board configurations
  56. endmenu
  57. endif