Kconfig 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. menu "AVR32 architecture"
  2. depends on AVR32
  3. config SYS_ARCH
  4. default "avr32"
  5. choice
  6. prompt "Target select"
  7. config TARGET_ATNGW100
  8. bool "Support atngw100"
  9. config TARGET_ATNGW100MKII
  10. bool "Support atngw100mkii"
  11. config TARGET_ATSTK1002
  12. bool "Support atstk1002"
  13. config TARGET_ATSTK1003
  14. bool "Support atstk1003"
  15. config TARGET_ATSTK1004
  16. bool "Support atstk1004"
  17. config TARGET_ATSTK1006
  18. bool "Support atstk1006"
  19. config TARGET_FAVR_32_EZKIT
  20. bool "Support favr-32-ezkit"
  21. config TARGET_GRASSHOPPER
  22. bool "Support grasshopper"
  23. config TARGET_MIMC200
  24. bool "Support mimc200"
  25. config TARGET_HAMMERHEAD
  26. bool "Support hammerhead"
  27. endchoice
  28. source "board/atmel/atngw100/Kconfig"
  29. source "board/atmel/atngw100mkii/Kconfig"
  30. source "board/atmel/atstk1000/Kconfig"
  31. source "board/earthlcd/favr-32-ezkit/Kconfig"
  32. source "board/in-circuit/grasshopper/Kconfig"
  33. source "board/mimc/mimc200/Kconfig"
  34. source "board/miromico/hammerhead/Kconfig"
  35. endmenu