Config.in.arch.choice 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. choice
  2. prompt "Target architecture"
  3. config ADK_CHOOSE_TARGET_ARCH
  4. bool "Choose target architecture"
  5. config ADK_LINUX_AARCH64
  6. bool "aarch64 system"
  7. select ADK_aarch64
  8. help
  9. Support for AARCH64 systems.
  10. config ADK_LINUX_ARM
  11. bool "arm system"
  12. select ADK_arm
  13. help
  14. Support for ARM systems.
  15. config ADK_LINUX_M68K
  16. bool "m68k system"
  17. select ADK_m68k
  18. help
  19. Support for m68k systems.
  20. config ADK_LINUX_MICROBLAZE
  21. bool "microblaze system"
  22. select ADK_microblaze
  23. help
  24. Support for Microblaze systems.
  25. config ADK_LINUX_MIPS
  26. bool "mips system"
  27. select ADK_mips
  28. help
  29. Support for MIPS systems.
  30. config ADK_LINUX_PPC
  31. bool "ppc system"
  32. select ADK_ppc
  33. help
  34. Support for powerpc systems.
  35. config ADK_LINUX_PPC64
  36. bool "ppc64 system"
  37. select ADK_ppc64
  38. help
  39. Support for powerpc64 systems.
  40. config ADK_LINUX_SPARC
  41. bool "sparc system"
  42. select ADK_sparc
  43. help
  44. Support for sparc systems.
  45. config ADK_LINUX_SPARC64
  46. bool "sparc64 system"
  47. select ADK_sparc64
  48. help
  49. Support for sparc64 systems.
  50. config ADK_LINUX_SH
  51. bool "superh system"
  52. select ADK_sh
  53. help
  54. Support for superh systems.
  55. config ADK_LINUX_X86
  56. bool "x86 system"
  57. select ADK_x86
  58. help
  59. Support for x86 systems.
  60. config ADK_LINUX_X86_64
  61. bool "x86_64 system"
  62. select ADK_x86_64
  63. help
  64. Support for x86_64/amd64 systems.
  65. endchoice