Config.in.arch.choice 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. choice
  2. prompt "Target architecture"
  3. config ADK_CHOOSE_TARGET_ARCH
  4. bool "Choose target architecture"
  5. config ADK_LINUX_NATIVE
  6. bool "native build"
  7. select ADK_native
  8. select ADK_NATIVE
  9. select ADK_TARGET_LIB_LIBC
  10. depends on ADK_HOST_LINUX
  11. help
  12. Make a native build. Use host tools.
  13. No toolchain will be created.
  14. config ADK_LINUX_ARM
  15. bool "arm system"
  16. select ADK_arm
  17. help
  18. Support for ARM systems.
  19. config ADK_LINUX_AVR32
  20. bool "avr32 system"
  21. select ADK_avr32
  22. help
  23. Support for AVR32 systems.
  24. config ADK_LINUX_CRIS
  25. bool "cris system"
  26. select ADK_cris
  27. help
  28. Support for CRIS systems.
  29. config ADK_LINUX_M68K
  30. bool "m68k system"
  31. select ADK_m68k
  32. help
  33. Support for m68k systems.
  34. config ADK_LINUX_MICROBLAZE
  35. bool "microblaze system"
  36. select ADK_microblaze
  37. help
  38. Support for Microblaze systems.
  39. config ADK_LINUX_MIPS
  40. bool "mips system"
  41. select ADK_mips
  42. help
  43. Support for MIPS systems.
  44. config ADK_LINUX_PPC
  45. bool "ppc system"
  46. select ADK_ppc
  47. help
  48. Support for powerpc systems.
  49. config ADK_LINUX_PPC64
  50. bool "ppc64 system"
  51. select ADK_ppc64
  52. help
  53. Support for powerpc64 systems.
  54. config ADK_LINUX_SPARC
  55. bool "sparc system"
  56. select ADK_sparc
  57. help
  58. Support for sparc systems.
  59. config ADK_LINUX_SPARC64
  60. bool "sparc64 system"
  61. select ADK_sparc64
  62. help
  63. Support for sparc64 systems.
  64. config ADK_LINUX_SH
  65. bool "superh system"
  66. select ADK_sh
  67. help
  68. Support for superh systems.
  69. config ADK_LINUX_X86
  70. bool "x86 system"
  71. select ADK_x86
  72. help
  73. Support for x86 systems.
  74. config ADK_LINUX_X86_64
  75. bool "x86_64 system"
  76. select ADK_x86_64
  77. help
  78. Support for x86_64/amd64 systems.
  79. endchoice