blob: 5e6680d2d0313bfa62c830379c07d312c2261e2a (
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
41
42
43
44
45
46
47
48
49
50
51
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
# global symbols
config ADK_LINUX_64
bool
config ADK_TARGET_KERNEL_64
bool
config ADK_TOOLCHAIN_ONLY
bool
config ADK_TARGET_TOOLCHAIN
bool
config ADK_TARGET_UCLINUX
bool
select ADK_TARGET_WITHOUT_CXX
config ADK_TARGET_SIM
bool
config ADK_TARGET_QEMU
bool
select ADK_TARGET_WITH_NET
select ADK_TARGET_WITH_NETDEVICE
config ADK_TARGET_VBOX
bool
select ADK_TARGET_WITH_VGA
select ADK_TARGET_WITH_NET
select ADK_TARGET_WITH_NETDEVICE
config ADK_TARGET_ARCH_ARM_WITH_THUMB
bool
select ADK_KERNEL_ARM_THUMB
select ADK_KERNEL_THUMB2_KERNEL
depends on ADK_TARGET_ARCH_ARM
# the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
# allows for selecting it off (i.e., to disable it)
config ADK_TARGET_FIXED_KERNEL
bool
config ADK_TARGET_KERNEL_CUSTOMISING
bool
depends on !ADK_TARGET_FIXED_KERNEL
default y
source "target/config/Config.in.tools"
|