wok view busybox/stuff/busybox-1.18.2-cmdline.u @ rev 8159

Updated busybox for tazwok-experimental.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 26 18:02:11 2011 +0000 (2011-01-26)
parents
children
line source
1 Display command line in usage output. Useful to debug scripts with variables.
2 --- busybox-1.18.1/libbb/appletlib.c
3 +++ busybox-1.18.1/libbb/appletlib.c
4 @@ -97,9 +97,16 @@
6 #endif /* FEATURE_COMPRESS_USAGE */
8 -
9 +static char **bb_argv;
10 void FAST_FUNC bb_show_usage(void)
11 {
12 + full_write2_str("\nCommand line: ");
13 + while (*bb_argv) {
14 + full_write2_str(*bb_argv++);
15 + full_write2_str(" ");
16 + }
17 + full_write2_str("\n\n");
18 +
19 if (ENABLE_SHOW_USAGE) {
20 #ifdef SINGLE_APPLET_STR
21 /* Imagine that this applet is "true". Dont suck in printf! */
22 @@ -635,6 +642,7 @@
23 /* If we were called as "busybox..." */
24 static int busybox_main(char **argv)
25 {
26 + bb_argv = argv;
27 if (!argv[1]) {
28 /* Called without arguments */
29 const char *a;
30 @@ -785,6 +793,7 @@
31 int main(int argc UNUSED_PARAM, char **argv)
32 #endif
33 {
34 + bb_argv = argv;
35 /* Tweak malloc for reduced memory consumption */
36 #ifndef PAGE_SIZE
37 # define PAGE_SIZE (4*1024) /* guess */