diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-10 23:17:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-10 23:17:17 +0000 |
commit | 72d59dbd768f92ad3ce4723b30b490dbe29fbaba (patch) | |
tree | 4c0ff24619656b6da43ee3f1c991f4708b077fee | |
parent | ead19306f5d6d5d5ef49165aa518e525de8e84b2 (diff) | |
download | busybox-w32-72d59dbd768f92ad3ce4723b30b490dbe29fbaba.tar.gz busybox-w32-72d59dbd768f92ad3ce4723b30b490dbe29fbaba.tar.bz2 busybox-w32-72d59dbd768f92ad3ce4723b30b490dbe29fbaba.zip |
rearrange the menu a little to split general settings from applet selection
-rw-r--r-- | Config.in | 133 |
1 files changed, 69 insertions, 64 deletions
@@ -9,6 +9,8 @@ config HAVE_DOT_CONFIG | |||
9 | bool | 9 | bool |
10 | default y | 10 | default y |
11 | 11 | ||
12 | comment "Busybox Settings" | ||
13 | |||
12 | menu "General Configuration" | 14 | menu "General Configuration" |
13 | 15 | ||
14 | choice | 16 | choice |
@@ -260,70 +262,6 @@ config CONFIG_BUILD_AT_ONCE | |||
260 | 262 | ||
261 | endmenu | 263 | endmenu |
262 | 264 | ||
263 | menu 'Installation Options' | ||
264 | |||
265 | config CONFIG_INSTALL_NO_USR | ||
266 | bool "Don't use /usr" | ||
267 | default n | ||
268 | help | ||
269 | Disable use of /usr. Don't activate this option if you don't know | ||
270 | that you really want this behaviour. | ||
271 | |||
272 | choice | ||
273 | prompt "Applets links" | ||
274 | default CONFIG_INSTALL_APPLET_SYMLINKS | ||
275 | help | ||
276 | Choose how you install applets links. | ||
277 | |||
278 | config CONFIG_INSTALL_APPLET_SYMLINKS | ||
279 | bool "as soft-links" | ||
280 | help | ||
281 | Install applets as soft-links to the busybox binary. This needs some | ||
282 | free inodes on the filesystem, but might help with filesystem | ||
283 | generators that can't cope with hard-links. | ||
284 | |||
285 | config CONFIG_INSTALL_APPLET_HARDLINKS | ||
286 | bool "as hard-links" | ||
287 | help | ||
288 | Install applets as hard-links to the busybox binary. This might count | ||
289 | on a filesystem with few inodes. | ||
290 | |||
291 | config CONFIG_INSTALL_APPLET_DONT | ||
292 | bool | ||
293 | prompt "not installed" | ||
294 | depends on CONFIG_FEATURE_INSTALLER || CONFIG_FEATURE_SH_STANDALONE_SHELL | ||
295 | help | ||
296 | Do not install applets links. Usefull when using the -install feature | ||
297 | or a standalone shell for rescue pruposes. | ||
298 | |||
299 | endchoice | ||
300 | |||
301 | config PREFIX | ||
302 | string "BusyBox installation prefix" | ||
303 | default "./_install" | ||
304 | help | ||
305 | Define your directory to install BusyBox files/subdirs in. | ||
306 | |||
307 | endmenu | ||
308 | |||
309 | source archival/Config.in | ||
310 | source coreutils/Config.in | ||
311 | source console-tools/Config.in | ||
312 | source debianutils/Config.in | ||
313 | source editors/Config.in | ||
314 | source findutils/Config.in | ||
315 | source init/Config.in | ||
316 | source loginutils/Config.in | ||
317 | source e2fsprogs/Config.in | ||
318 | source modutils/Config.in | ||
319 | source util-linux/Config.in | ||
320 | source miscutils/Config.in | ||
321 | source networking/Config.in | ||
322 | source procps/Config.in | ||
323 | source shell/Config.in | ||
324 | source sysklogd/Config.in | ||
325 | source libbb/Config.in | ||
326 | |||
327 | menu 'Debugging Options' | 265 | menu 'Debugging Options' |
328 | 266 | ||
329 | config CONFIG_DEBUG | 267 | config CONFIG_DEBUG |
@@ -390,3 +328,70 @@ config CONFIG_DEBUG_YANK_SUSv2 | |||
390 | yank from renice too.) | 328 | yank from renice too.) |
391 | 329 | ||
392 | endmenu | 330 | endmenu |
331 | |||
332 | menu 'Installation Options' | ||
333 | |||
334 | config CONFIG_INSTALL_NO_USR | ||
335 | bool "Don't use /usr" | ||
336 | default n | ||
337 | help | ||
338 | Disable use of /usr. Don't activate this option if you don't know | ||
339 | that you really want this behaviour. | ||
340 | |||
341 | choice | ||
342 | prompt "Applets links" | ||
343 | default CONFIG_INSTALL_APPLET_SYMLINKS | ||
344 | help | ||
345 | Choose how you install applets links. | ||
346 | |||
347 | config CONFIG_INSTALL_APPLET_SYMLINKS | ||
348 | bool "as soft-links" | ||
349 | help | ||
350 | Install applets as soft-links to the busybox binary. This needs some | ||
351 | free inodes on the filesystem, but might help with filesystem | ||
352 | generators that can't cope with hard-links. | ||
353 | |||
354 | config CONFIG_INSTALL_APPLET_HARDLINKS | ||
355 | bool "as hard-links" | ||
356 | help | ||
357 | Install applets as hard-links to the busybox binary. This might count | ||
358 | on a filesystem with few inodes. | ||
359 | |||
360 | config CONFIG_INSTALL_APPLET_DONT | ||
361 | bool | ||
362 | prompt "not installed" | ||
363 | depends on CONFIG_FEATURE_INSTALLER || CONFIG_FEATURE_SH_STANDALONE_SHELL | ||
364 | help | ||
365 | Do not install applets links. Usefull when using the -install feature | ||
366 | or a standalone shell for rescue pruposes. | ||
367 | |||
368 | endchoice | ||
369 | |||
370 | config PREFIX | ||
371 | string "BusyBox installation prefix" | ||
372 | default "./_install" | ||
373 | help | ||
374 | Define your directory to install BusyBox files/subdirs in. | ||
375 | |||
376 | endmenu | ||
377 | |||
378 | source libbb/Config.in | ||
379 | |||
380 | comment "Applets" | ||
381 | |||
382 | source archival/Config.in | ||
383 | source coreutils/Config.in | ||
384 | source console-tools/Config.in | ||
385 | source debianutils/Config.in | ||
386 | source editors/Config.in | ||
387 | source findutils/Config.in | ||
388 | source init/Config.in | ||
389 | source loginutils/Config.in | ||
390 | source e2fsprogs/Config.in | ||
391 | source modutils/Config.in | ||
392 | source util-linux/Config.in | ||
393 | source miscutils/Config.in | ||
394 | source networking/Config.in | ||
395 | source procps/Config.in | ||
396 | source shell/Config.in | ||
397 | source sysklogd/Config.in | ||