blob: fb6b848d4ee7b10a599633697419a5c0c8f98de7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
choice ADK_TARGET_X86_CPU_ARCH
prompt "CPU architecture"
depends on (ADK_TARGET_SYSTEM_QEMU_X86 || ADK_TARGET_SYSTEM_GENERIC_PC || ADK_TARGET_SYSTEM_VBOX_X86 || ADK_TARGET_TOOLCHAIN) && ADK_TARGET_ARCH_X86
default ADK_CPU_I486
config ADK_CPU_I486
bool "i486"
select ADK_i486
config ADK_CPU_I586
bool "i586"
select ADK_i586
config ADK_CPU_I686
bool "i686"
select ADK_i686
config ADK_CPU_ATOM
bool "atom"
select ADK_atom
endchoice
|