Config.in.arch.choice 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_CRIS
  20. bool "cris system"
  21. select ADK_cris
  22. help
  23. Support for CRIS systems.
  24. config ADK_LINUX_MIPS
  25. bool "mips system"
  26. select ADK_mips
  27. help
  28. Support for MIPS systems.
  29. config ADK_LINUX_PPC
  30. bool "ppc system"
  31. select ADK_ppc
  32. help
  33. Support for powerpc systems.
  34. config ADK_LINUX_PPC64
  35. bool "ppc64 system"
  36. select ADK_ppc64
  37. help
  38. Support for powerpc64 systems.
  39. config ADK_LINUX_SPARC
  40. bool "sparc system"
  41. select ADK_sparc
  42. help
  43. Support for sparc systems.
  44. config ADK_LINUX_SPARC64
  45. bool "sparc64 system"
  46. select ADK_sparc64
  47. help
  48. Support for sparc64 systems.
  49. config ADK_LINUX_SH
  50. bool "superh system"
  51. select ADK_sh
  52. help
  53. Support for superh systems.
  54. config ADK_LINUX_X86
  55. bool "x86 system"
  56. select ADK_x86
  57. help
  58. Support for x86 systems.
  59. config ADK_LINUX_X86_64
  60. bool "x86_64 system"
  61. select ADK_x86_64
  62. help
  63. Support for x86_64/amd64 systems.
  64. endchoice