Config.in.arch.choice 1.2 KB

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