blob: 7393bfe9c946de10369668da583b659097701593 (
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
|
# 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
boolean
config ADK_TARGET_KERNEL_64
boolean
config ADK_TOOLCHAIN_ONLY
boolean
config ADK_TARGET_TOOLCHAIN
boolean
config ADK_TARGET_UCLINUX
select ADK_PACKAGE_SASH
select ADK_PACKAGE_SIMPLEINIT
boolean
config ADK_TARGET_QEMU
boolean
config ADK_TARGET_VBOX
boolean
# the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
# allows for selecting it off (i.e., to disable it)
config ADK_TARGET_FIXED_KERNEL
bool
default n
config ADK_TARGET_KERNEL_CUSTOMISING
bool
default y
depends on !ADK_TARGET_FIXED_KERNEL
choice
prompt "Toolchain options"
depends on ADK_TARGET_TOOLCHAIN
config ADK_TOOLCHAIN_ONLY
boolean "Only build toolchain and selected packages"
config ADK_TOOLCHAIN_ARCHIVE
boolean "Build a complete system usable f.e. via chroot"
endchoice
source "target/config/Config.in.tools"
|