Magellan Linux

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

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

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 13  config PASSWORD_MINLEN Line 13  config PASSWORD_MINLEN
13    Minimum allowable password length.    Minimum allowable password length.
14    
15  config MD5_SIZE_VS_SPEED  config MD5_SIZE_VS_SPEED
16   int "MD5: Trade Bytes for Speed"   int "MD5: Trade bytes for speed (0:fast, 3:slow)"
17   default 2   default 2
18   range 0 3   range 0 3
19   help   help
# Line 102  config FEATURE_EDITING_FANCY_PROMPT Line 102  config FEATURE_EDITING_FANCY_PROMPT
102    Setting this option allows for prompts to use things like \w and    Setting this option allows for prompts to use things like \w and
103    \$ and escape codes.    \$ and escape codes.
104    
105    config FEATURE_EDITING_ASK_TERMINAL
106     bool "Query cursor position from terminal"
107     default n
108     depends on FEATURE_EDITING
109     help
110      Allow usage of "ESC [ 6 n" sequence. Terminal answers back with
111      current cursor position. This information is used to make line
112      editing more robust in some cases.
113      If you are not sure whether your terminals respond to this code
114      correctly, or want to save on code size (about 400 bytes),
115      then do not turn this option on.
116    
117    config FEATURE_NON_POSIX_CP
118     bool "Non-POSIX, but safer, copying to special nodes"
119     default y
120     help
121      With this option, "cp file symlink" will delete symlink
122      and create a regular file. This does not conform to POSIX,
123      but prevents a symlink attack.
124      Similarly, "cp file device" will not send file's data
125      to the device.
126    
127  config FEATURE_VERBOSE_CP_MESSAGE  config FEATURE_VERBOSE_CP_MESSAGE
128   bool "Give more precise messages when copy fails (cp, mv etc)"   bool "Give more precise messages when copy fails (cp, mv etc)"
129   default n   default n
# Line 112  config FEATURE_VERBOSE_CP_MESSAGE Line 134  config FEATURE_VERBOSE_CP_MESSAGE
134      $ cp file /vmlinuz/file      $ cp file /vmlinuz/file
135      cp: cannot stat '/vmlinuz/file': Path has non-directory component      cp: cannot stat '/vmlinuz/file': Path has non-directory component
136    If this feature is not enabled, they will be, respectively:    If this feature is not enabled, they will be, respectively:
137      cp: cannot remove '/does_not_exist/file': No such file or directory      cp: cannot create '/does_not_exist/file': No such file or directory
138      cp: cannot stat '/vmlinuz/file': Not a directory      cp: cannot stat '/vmlinuz/file': Not a directory
   respectively.  
139    This will cost you ~60 bytes.    This will cost you ~60 bytes.
140    
141  config FEATURE_COPYBUF_KB  config FEATURE_COPYBUF_KB
# Line 151  config FEATURE_HWIB Line 172  config FEATURE_HWIB
172   help   help
173    Support for printing infiniband addresses in    Support for printing infiniband addresses in
174    network applets.    network applets.
175    
176  endmenu  endmenu

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