blob: 6011fd7a1f8d53a347e419c864e20625b27d63c6 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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_ARM_CPU_ARCH
prompt "CPU architecture"
depends on ADK_TARGET_TOOLCHAIN && ADK_LINUX_ARM
default ADK_CPU_ARMV7
config ADK_CPU_ARMV5TE
boolean "armv5te"
select ADK_armv5te
config ADK_CPU_ARMV6
boolean "armv6"
select ADK_armv6
config ADK_CPU_ARMV7A
boolean "armv7-a"
select ADK_armv7a
endchoice
choice
prompt "Cubox-i model"
depends on ADK_TARGET_SYSTEM_CUBOX_I
config ADK_TARGET_CUBOX_I4PRO
boolean "Solidrun Cubox-i4Pro"
config ADK_TARGET_CUBOX_I2ULTRA
boolean "Solidrun Cubox-i2Ultra"
config ADK_TARGET_CUBOX_I2
boolean "Solidrun Cubox-i2"
config ADK_TARGET_CUBOX_I1
boolean "Solidrun Cubox-i1"
endchoice
|