allow for target/<DEV>/files to be empty/non-existent
[openadk.git] / Config.in
blobc2dd37d533fe708b0659755720b104252f999055
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 mainmenu "OpenADK Configuration"
10 config MODULES
11         bool
12         default y
14 config ADK_HAVE_DOT_CONFIG
15         bool
16         default y
18 menu "ADK settings"
20 config ADK_DEVELSYSTEM
21         bool "Compile a ADK development system"
22         default n
23         select BUSYBOX_CMP
24         select BUSYBOX_EXPR
25         select BUSYBOX_MKTEMP
26         select BUSYBOX_UNZIP
27         select BUSYBOX_TEE
28         select ADK_PACKAGE_AUTOCONF
29         select ADK_PACKAGE_AUTOMAKE
30         select ADK_PACKAGE_BASH
31         select ADK_PACKAGE_BINUTILS
32         select ADK_PACKAGE_BZIP2
33         select ADK_PACKAGE_CPIO
34         select ADK_PACKAGE_DIFFUTILS
35         select ADK_PACKAGE_FILE
36         select ADK_PACKAGE_GAWK
37         select ADK_PACKAGE_GCC
38         select ADK_PACKAGE_GIT
39         select ADK_PACKAGE_UCLIBC_DEV if ADK_TARGET_LIB_UCLIBC
40         select ADK_PACKAGE_EGLIBC_DEV if ADK_TARGET_LIB_EGLIBC
41         select ADK_PACKAGE_GLIBC_DEV if ADK_TARGET_LIB_GLIBC
42         select ADK_PACKAGE_LIBNCURSES
43         select ADK_PACKAGE_LIBNCURSES_DEV
44         select ADK_PACKAGE_LIBTOOL
45         select ADK_PACKAGE_M4
46         select ADK_PACKAGE_MAKE
47         select ADK_PACKAGE_PATCH
48         select ADK_PACKAGE_MICROPERL
49         select ADK_PACKAGE_TAR
50         select ADK_PACKAGE_WGET
51         select ADK_PACKAGE_ZLIB
52         select ADK_PACKAGE_ZLIB_DEV
53         select ADK_PACKAGE_XZ
54         help
55           After bootstrapping a Linux system you might want to
56           switch to native builds with your target. 
57           If you choose this option, all necessary software needed
58           for native building will be selected.
60 config ADK_DEBUG
61         bool "Enable debug support"
62         default n
63         help
64           All packages and libc will be compiled and packaged with debug information.
65           Mostly useful for NFS root or big USB/CF disk setups.
67 config ADK_STATIC
68         bool "Link applications statically by default"
69         default n
70         help
71           Useful for toolchain only target devices.
73 config ADK_MAKE_JOBS
74         int
75         default 1 if ! ADK_MAKE_PARALLEL
77 config ADK_MAKE_PARALLEL
78         prompt "Enable parallel building of packages that claim to support it"
79         boolean
80         default n
82 config ADK_MAKE_JOBS
83         prompt "How many jobs to use"
84         int
85         default 2
86         depends on ADK_MAKE_PARALLEL
87         help
88           The number specified here will be passed to make as N in '-jN'
90 config ADK_FORCE_PARALLEL
91         prompt "Force parallel building of all packages (DANGEROUS)"
92         bool
93         default n
94         depends on ADK_MAKE_PARALLEL
95         help
96           Do not enable this! It's for testing purposes only.
98 choice 
99 prompt "Hostsystem (do not change!)"
100 config ADK_HOST_LINUX
101         prompt "Linux"
102         boolean
104 config ADK_HOST_FREEBSD
105         prompt "FreeBSD"
106         boolean
108 config ADK_HOST_MIRBSD
109         prompt "MirBSD"
110         boolean
112 config ADK_HOST_OPENBSD
113         prompt "OpenBSD"
114         boolean
116 config ADK_HOST_NETBSD
117         prompt "NetBSD"
118         boolean
120 config ADK_HOST_CYGWIN
121         prompt "Cygwin"
122         boolean
124 endchoice
126 endmenu
128 source "target/Config.in"
129 source "package/Config.in"