summaryrefslogtreecommitdiff
path: root/Config.in
blob: e1a4135d990837dd28cfbf289f4c29b3e25dc6ef (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

mainmenu "OpenADK Configuration"

# enable tristate
config ADK_MODULES
	bool
	option modules
	default y

config ADK_HAVE_DOT_CONFIG
	bool
	default y

source "target/config/Config.in"
source "target/config/Config.in.os"
source "target/config/Config.in.hardware"
source "target/config/Config.in.boards"
source "target/config/Config.in.kernelfmt"

menu "Hardware configuration"
source "target/config/Config.in.arch"
source "target/config/Config.in.system"
source "target/config/Config.in.subsystem"
source "target/config/Config.in.qemuopts"
source "target/config/Config.in.endian"
source "target/config/Config.in.mmu"
source "target/config/Config.in.cpu"
source "target/config/Config.in.addons"
endmenu

menu "C Library configuration"
	visible if ADK_TARGET_OS_LINUX && !ADK_TARGET_CHOOSE_ARCH
source "target/config/Config.in.libc"
source "target/config/Config.in.threads"
source "target/config/Config.in.binfmt"
source "target/config/Config.in.instructions"
source "target/config/Config.in.fpu"
source "target/config/Config.in.float"
source "target/config/Config.in.abi"
source "target/config/Config.in.libs"
source "target/config/Config.in.uclibc-ng"
endmenu

comment "After you saved your configuration once, you shouldn't change anything above"
	depends on ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH

source "target/config/Config.in.tasks"

menu "Firmware configuration"
	visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
source "target/config/Config.in.rootfs"
endmenu

menu "Package selection"
	visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
source "package/Config.in.auto.global"
source "package/Config.in"
menu "Package options"
source "package/Config.in.options"
endmenu
endmenu

menu "Runtime configuration"
	visible if ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH
source "target/config/Config.in.runtime"
endmenu

menu "Linux Kernel configuration"
	visible if ADK_TARGET_OS_LINUX && !ADK_TARGET_CHOOSE_ARCH
source "target/linux/Config.in.kernelversion"
source "target/linux/Config.in.kernelcfg"
source "target/linux/config/Config.in.compression"
source "target/config/Config.in.cmdline"

menu "Advanced Linux Kernel configuration"
	visible if ADK_TARGET_OS_LINUX && ADK_TARGET_KERNEL_CUSTOMISING && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH && !ADK_TARGET_LINUX_KERNEL_USE_DEFCONFIG && !ADK_TARGET_LINUX_KERNEL_USE_CUSTOMCONFIG
source "target/linux/Config.in"
endmenu
endmenu

menu "Toolchain settings"
	visible if !ADK_TARGET_CHOOSE_ARCH

source "target/config/Config.in.binutils"
source "target/config/Config.in.compiler"
source "target/config/Config.in.gdb"
source "target/config/Config.in.toolchain"
endmenu

source "target/config/Config.in.adk"