do depmod during modules_install (trying to fix linux-git with udev)
[openadk.git] / target / config / Config.in.tools
blob858e57ea3a5b8388a94ddba2b530e0671ebf8c21
1 # always required from OpenADK
2 config ADK_HOST_BUILD_HEIRLOOM_CPIO
3         bool
4         default y
6 config ADK_HOST_BUILD_ADK_HELPER
7         bool
8         default y
10 config ADK_HOST_BUILD_ELFTOAOUT
11         bool
12         default y if ADK_TARGET_ARCH_SPARC
14 config ADK_HOST_BUILD_AUTOCONF
15         bool
16         default y
18 config ADK_HOST_BUILD_AUTOMAKE
19         bool
20         default y
22 config ADK_HOST_BUILD_BISON
23         bool
24         default y
26 config ADK_HOST_BUILD_FLEX
27         bool
28         default y
30 config ADK_HOST_BUILD_M4
31         bool
32         default y
34 config ADK_HOST_BUILD_LIBTOOL
35         bool
36         default y
38 config ADK_HOST_BUILD_OPENSSL
39         bool
40         default y
42 config ADK_HOST_BUILD_WGET
43         bool
44         default y
46 # always required, but can be provided by host
47 config ADK_HOST_BUILD_BASH
48         bool
49         default n
51 config ADK_HOST_BUILD_BC
52         bool
53         select ADK_HOST_BUILD_FLEX
54         default n
56 config ADK_HOST_BUILD_BZIP2
57         bool
58         default n
60 config ADK_HOST_BUILD_FILE
61         bool
62         default n
64 config ADK_HOST_BUILD_FINDUTILS
65         bool
66         default n
68 config ADK_HOST_BUILD_GAWK
69         bool
70         default n
72 config ADK_HOST_BUILD_GREP
73         bool
74         default n
76 config ADK_HOST_BUILD_U_BOOT
77         bool
78         default n
80 config ADK_HOST_BUILD_U_BOOT_GIT
81         bool
82         default n
84 config ADK_HOST_BUILD_U_BOOT_XTENSA
85         bool
86         default y if ADK_TARGET_ARCH_XTENSA
88 config ADK_HOST_BUILD_PATCH
89         bool
90         default n
92 config ADK_HOST_BUILD_PKGCONF
93         bool
94         default n
96 config ADK_HOST_BUILD_SED
97         bool
98         default n
100 config ADK_HOST_BUILD_TAR
101         bool
102         default n
104 config ADK_HOST_BUILD_XZ
105         bool
106         default n
108 # optional, but can be provided by host
109 config ADK_HOST_NEED_CCACHE
110         bool
111         default n
113 config ADK_HOST_BUILD_CCACHE
114         bool
115         default n
117 config ADK_HOST_NEED_CDRTOOLS
118         bool
119         default n
121 config ADK_HOST_BUILD_CDRTOOLS
122         bool
123         default n
125 config ADK_HOST_NEED_GENEXT2FS
126         bool
127         default n
129 config ADK_HOST_BUILD_GENEXT2FS
130         bool
131         default n
133 config ADK_HOST_NEED_LZ4
134         bool
135         default n
137 config ADK_HOST_BUILD_LZ4
138         bool
139         default n
141 config ADK_HOST_NEED_LZMA
142         bool
143         default n
145 config ADK_HOST_BUILD_LZMA
146         bool
147         default n
149 config ADK_HOST_NEED_LZOP
150         bool
151         default n
153 config ADK_HOST_BUILD_LZOP
154         bool
155         default n
157 config ADK_HOST_NEED_MKSH
158         bool
159         default n
161 config ADK_HOST_BUILD_MKSH
162         bool
163         default n
165 config ADK_HOST_NEED_QEMU
166         bool
167         default n
169 config ADK_HOST_BUILD_QEMU
170         bool
171         default n
173 # optional, must be used from OpenADK
174 config ADK_HOST_NEED_MTD_UTILS
175         bool
176         default n
178 config ADK_HOST_BUILD_MTD_UTILS
179         bool
180         default y if ADK_HOST_NEED_MTD_UTILS
181         default n
183 config ADK_HOST_BUILD_PATCHELF
184         bool
185         default n
187 config ADK_HOST_NEED_SQUASHFS
188         bool
189         default n
191 config ADK_HOST_BUILD_SQUASHFS
192         bool
193         default y if ADK_HOST_NEED_SQUASHFS
194         default n
196 config ADK_HOST_NEED_SYSLINUX
197         bool
198         default n
200 config ADK_HOST_BUILD_SYSLINUX
201         bool
202         default y if ADK_HOST_NEED_SYSLINUX
203         default n
205 config ADK_HOST_BUILD_PCRE
206         bool
207         default y if ADK_HOST_DARWIN
208         default n
210 config ADK_HOST_BUILD_KMOD
211         bool
212         default y
214 source "target/config/Config.in.prereq"
216 config ADK_COMPRESSION_TOOL
217         string
218         default "gzip -n9" if ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
219         default "bzip2" if ADK_KERNEL_INITRAMFS_COMPRESSION_BZIP2
220         default "xz -v --check=crc32 --lzma2=dict=1MiB" if ADK_KERNEL_INITRAMFS_COMPRESSION_XZ
221         default "lz4c -l" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZ4
222         default "lzma -9" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZMA
223         default "lzop" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZO
224         default "gzip -n9"
225         help