Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/Config.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Mon May 4 16:31:17 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 30  config EXTRA_COMPAT Line 30  config EXTRA_COMPAT
30    some GNU extensions in libc. You probably only need this option    some GNU extensions in libc. You probably only need this option
31    if you plan to run busybox on desktop.    if you plan to run busybox on desktop.
32    
33  config FEATURE_ASSUME_UNICODE  config INCLUDE_SUSv2
34   bool "Assume that 1:1 char/glyph correspondence is not true"   bool "Enable obsolete features removed before SUSv3"
35   default n   default y
36   help   help
37    This makes various applets aware that one byte is not    This option will enable backwards compatibility with SuSv2,
38    one character on screen.    specifically, old-style numeric options ('command -1 <file>')
39      will be supported in head, tail, and fold. (Note: should
40      affect renice too.)
41    
42    Busybox aims to eventually work correctly with Unicode displays.  config USE_PORTABLE_CODE
43    Any older encodings are not guaranteed to work.   bool "Avoid using GCC-specific code constructs"
44    Probably by the time when busybox will be fully Unicode-clean,   default n
45    other encodings will be mainly of historic interest.   help
46      Use this option if you are trying to compile busybox with
47      compiler other than gcc.
48      If you do use gcc, this option may needlessly increase code size.
49    
50  choice  choice
51   prompt "Buffer allocation policy"   prompt "Buffer allocation policy"
# Line 114  config LOCALE_SUPPORT Line 119  config LOCALE_SUPPORT
119    Enable this if your system has locale support and you would like    Enable this if your system has locale support and you would like
120    busybox to support locale settings.    busybox to support locale settings.
121    
122  config GETOPT_LONG  config FEATURE_ASSUME_UNICODE
123     bool "Support Unicode"
124     default n
125     help
126      This makes various applets aware that one byte is not
127      one character on screen.
128    
129      Busybox aims to eventually work correctly with Unicode displays.
130      Any older encodings are not guaranteed to work.
131      Probably by the time when busybox will be fully Unicode-clean,
132      other encodings will be mainly of historic interest.
133    
134    config FEATURE_CHECK_UNICODE_IN_ENV
135     bool "Check $LANG environment variable"
136     default y
137     depends on FEATURE_ASSUME_UNICODE && !LOCALE_SUPPORT
138     help
139      With this option on, Unicode support is activated
140      only if LANG variable has the value of the form "xxxx.utf8"
141    
142      Otherwise, Unicode support will be always enabled and active.
143    
144    config LONG_OPTS
145   bool "Support for --long-options"   bool "Support for --long-options"
146   default y   default y
147   help   help
# Line 275  menu 'Build Options' Line 302  menu 'Build Options'
302    
303  config STATIC  config STATIC
304   bool "Build BusyBox as a static binary (no shared libs)"   bool "Build BusyBox as a static binary (no shared libs)"
305   default y   default y
306   help   help
307    If you want to build a static BusyBox binary, which does not    If you want to build a static BusyBox binary, which does not
308    use or require any shared libraries, then enable this option.    use or require any shared libraries, then enable this option.
# Line 411  config CROSS_COMPILER_PREFIX Line 438  config CROSS_COMPILER_PREFIX
438    
439    Native builds leave this empty.    Native builds leave this empty.
440    
441    config EXTRA_CFLAGS
442     string "Additional CFLAGS"
443     default ""
444     help
445      Additional CFLAGS to pass to the compiler verbatim.
446    
447  endmenu  endmenu
448    
449  menu 'Debugging Options'  menu 'Debugging Options'
# Line 487  config EFENCE Line 520  config EFENCE
520    
521  endchoice  endchoice
522    
 config INCLUDE_SUSv2  
  bool "Enable obsolete features removed before SUSv3?"  
  default y  
  help  
   This option will enable backwards compatibility with SuSv2,  
   specifically, old-style numeric options ('command -1 <file>')  
   will be supported in head, tail, and fold. (Note: should  
   affect renice too.)  
   
523  ### config PARSE  ### config PARSE
524  ### bool "Uniform config file parser debugging applet: parse"  ### bool "Uniform config file parser debugging applet: parse"
525    
526  endmenu  endmenu
527    

Legend:
Removed from v.983  
changed lines
  Added in v.984