Config.in.x86.choice 540 B

123456789101112131415161718192021222324
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice ADK_TARGET_X86_CPU_MODEL
  4. prompt "CPU model"
  5. depends on ADK_TARGET_SYSTEM_QEMU_X86 || ADK_TARGET_SYSTEM_GENERIC_PC
  6. config ADK_CPU_I486
  7. boolean "i486"
  8. select ADK_i486
  9. config ADK_CPU_I586
  10. boolean "i586"
  11. select ADK_i586
  12. config ADK_CPU_I686
  13. boolean "i686"
  14. select ADK_i686
  15. config ADK_CPU_ATOM
  16. boolean "atom"
  17. select ADK_atom
  18. endchoice