Config.in.arch.choice 1.7 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_libc
  8. select ADK_native
  9. depends on ADK_HOST_LINUX
  10. help
  11. Make a native build. Use host tools.
  12. No toolchain will be created.
  13. config ADK_LINUX_ARM
  14. bool "arm system (little endian)"
  15. select ADK_arm
  16. help
  17. Support for arm little endian systems.
  18. config ADK_LINUX_ARMEB
  19. bool "armeb system (big endian)"
  20. select ADK_armeb
  21. help
  22. Support for arm big endian systems.
  23. config ADK_LINUX_CRIS
  24. bool "cris system"
  25. select ADK_cris
  26. help
  27. Support for cris systems.
  28. config ADK_LINUX_MIPS
  29. bool "mips system (big endian)"
  30. select ADK_mips
  31. help
  32. Support for mips big endian systems.
  33. config ADK_LINUX_MIPSEL
  34. bool "mipsel system (little endian)"
  35. select ADK_mipsel
  36. help
  37. Support for mips little endian systems.
  38. config ADK_LINUX_MIPS64
  39. bool "mips64 system (big endian)"
  40. select ADK_mips64
  41. help
  42. Support for mips64 big endian systems.
  43. config ADK_LINUX_MIPS64EL
  44. bool "mips64el system (little endian)"
  45. select ADK_mips64el
  46. help
  47. Support for mips64 little endian systems.
  48. config ADK_LINUX_PPC
  49. bool "ppc system"
  50. select ADK_ppc
  51. help
  52. Support for powerpc systems.
  53. config ADK_LINUX_PPC64
  54. bool "ppc64 system"
  55. select ADK_ppc64
  56. help
  57. Support for powerpc64 systems.
  58. config ADK_LINUX_SPARC
  59. bool "sparc system"
  60. select ADK_sparc
  61. help
  62. Support for sparc systems.
  63. config ADK_LINUX_SPARC64
  64. bool "sparc64 system"
  65. select ADK_sparc64
  66. help
  67. Support for sparc64 systems.
  68. config ADK_LINUX_X86
  69. bool "x86 system"
  70. select ADK_x86
  71. help
  72. Support for x86 systems.
  73. config ADK_LINUX_X86_64
  74. bool "x86_64 system"
  75. select ADK_x86_64
  76. help
  77. Support for x86_64/amd64 systems.
  78. endchoice