diff options
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -9,6 +9,20 @@ config HAVE_DOT_CONFIG | |||
9 | bool | 9 | bool |
10 | default y | 10 | default y |
11 | 11 | ||
12 | choice | ||
13 | prompt "Target platform" | ||
14 | default PLATFORM_POSIX | ||
15 | help | ||
16 | Target platform you are building busybox for | ||
17 | |||
18 | config PLATFORM_POSIX | ||
19 | bool "POSIX" | ||
20 | |||
21 | config PLATFORM_MINGW32 | ||
22 | bool "MS Windows (MinGW port)" | ||
23 | |||
24 | endchoice | ||
25 | |||
12 | menu "Busybox Settings" | 26 | menu "Busybox Settings" |
13 | 27 | ||
14 | menu "General Configuration" | 28 | menu "General Configuration" |
@@ -616,6 +630,17 @@ config LFS | |||
616 | cp, mount, tar, and many others. If you want to access files larger | 630 | cp, mount, tar, and many others. If you want to access files larger |
617 | than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'. | 631 | than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'. |
618 | 632 | ||
633 | config NOGLOB | ||
634 | bool "Turn off MSVCRT argument processing" | ||
635 | default y | ||
636 | depends on PLATFORM_MINGW32 | ||
637 | help | ||
638 | The Microsoft C Runtime handles the expansion of wildcards on the | ||
639 | command line while the BusyBox shell does its own wildcard expansion. | ||
640 | For best results when using the shell MSVCRT globbing should be | ||
641 | turned off. If you want the BusyBox binary to handle wildcard | ||
642 | expansion using the Microsoft C Runtime set this to 'N'. | ||
643 | |||
619 | config CROSS_COMPILER_PREFIX | 644 | config CROSS_COMPILER_PREFIX |
620 | string "Cross Compiler prefix" | 645 | string "Cross Compiler prefix" |
621 | default "" | 646 | default "" |