pkgmaker: comment out debug output using #if 0
[openadk.git] / Config.in
blob3fdb5ee962e477482d455290218d75735894d3a3
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_ARMEB
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_MIPSEL
25         default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS64
26         default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS64EL
27         default y if ADK_CHOOSE_TARGET_SYSTEM_PPC
28         default y if ADK_CHOOSE_TARGET_SYSTEM_PPC64
29         default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC
30         default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC64
31         default y if ADK_CHOOSE_TARGET_SYSTEM_X86
32         default y if ADK_CHOOSE_TARGET_SYSTEM_X86_64
33         default n
35 source "target/config/Config.in"
37 menu "Runtime configuration"
38 depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
39 source "target/config/Config.in.runtime"
40 endmenu
42 menu "Package collection"
43 depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
44 source "target/packages/Config.in"
45 endmenu
47 menu "Package selection"
48 depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
50 config ADK_INSTALL_PACKAGE_INIT_SCRIPTS
51         boolean "ship custom init-scripts along with packages"
52         default y
53         help
54           Turning this option to false will prevent the ADK from
55           installing init-scripts (i.e. files in /etc/init.d) for
56           certain daemons and daemon-like applications.
58           Note that without further customisation, turning this option
59           off will almost certainly render the resulting system unusable.
61 config ADK_INSTALL_PACKAGE_NETWORK_SCRIPTS
62         boolean "ship custom network-scripts along with packages"
63         default y
64         help
65           Turning this option to false will prevent the ADK from
66           installing network-scripts (i.e. files in /etc/network/) for
67           packages providing any.
69           Note that without further customisation, turning this option
70           off will almost certainly render the resulting system unusable.
72 source "package/Config.in.auto.global"
73 source "package/Config.in.auto"
74 endmenu
76 menu "Kernel configuration"
77 depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM && ADK_TARGET_KERNEL_CUSTOMISING
78 source "target/linux/Config.in"
79 endmenu
81 source "target/config/Config.in.adk"
82 source "toolchain/Config.in"