package/hostapd: enhance compile-options a bit, eases testing
[openadk.git] / Config.in
blob1b3868d6b566de493e77c6e0e23ff84130748ed8
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 config ADKVERSION
5         string
6         option env="ADKVERSION"
8 config MODULES
9         bool
10         default y
12 config ADK_HAVE_DOT_CONFIG
13         bool
14         default y
16 mainmenu "OpenADK Configuration"
18 config ADK_CHOOSE_TARGET_SYSTEM
19         boolean
20         default y if ADK_CHOOSE_TARGET_SYSTEM_ARM
21         default y if ADK_CHOOSE_TARGET_SYSTEM_AVR32
22         default y if ADK_CHOOSE_TARGET_SYSTEM_CRIS
23         default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS
24         default y if ADK_CHOOSE_TARGET_SYSTEM_PPC
25         default y if ADK_CHOOSE_TARGET_SYSTEM_PPC64
26         default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC
27         default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC64
28         default y if ADK_CHOOSE_TARGET_SYSTEM_SH
29         default y if ADK_CHOOSE_TARGET_SYSTEM_X86
30         default y if ADK_CHOOSE_TARGET_SYSTEM_X86_64
31         default n
33 source "target/config/Config.in"
35 menu "Runtime configuration"
36 depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
37 source "target/config/Config.in.runtime"
38 endmenu
40 menu "Package collection"
41 depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
42 source "target/packages/Config.in"
43 endmenu
45 menu "Package selection"
46 depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
48 config ADK_INSTALL_PACKAGE_INIT_SCRIPTS
49         boolean "ship custom init-scripts along with packages"
50         default y
51         help
52           Turning this option to false will prevent the ADK from
53           installing init-scripts (i.e. files in /etc/init.d) for
54           certain daemons and daemon-like applications.
56           Note that without further customisation, turning this option
57           off will almost certainly render the resulting system unusable.
59 config ADK_INSTALL_PACKAGE_NETWORK_SCRIPTS
60         boolean "ship custom network-scripts along with packages"
61         default y
62         help
63           Turning this option to false will prevent the ADK from
64           installing network-scripts (i.e. files in /etc/network/) for
65           packages providing any.
67           Note that without further customisation, turning this option
68           off will almost certainly render the resulting system unusable.
70 source "package/Config.in.auto.global"
71 source "package/Config.in.auto"
72 endmenu
74 menu "Kernel configuration"
75 depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM && ADK_TARGET_KERNEL_CUSTOMISING
77 choice
78 prompt "Kernel Version"
79 config ADK_KERNEL_VERSION_2_6_39_4
80         prompt "2.6.39.4"
81         boolean
83 config ADK_KERNEL_VERSION_3_0_9
84         prompt "3.0.9"
85         boolean
87 config ADK_KERNEL_VERSION_3_1_8
88         prompt "3.1.8"
89         boolean
91 endchoice
93 source "target/linux/Config.in"
94 endmenu
96 source "target/config/Config.in.adk"
97 source "toolchain/Config.in"