diff options
author | Rob Landley <rob@landley.net> | 2015-09-29 05:09:46 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-09-29 05:09:46 -0500 |
commit | 7d6af77804adc069a83e8566250f868a6cb9786e (patch) | |
tree | 92b6b57f55c41ab13164c1d448b3cdd1129703b4 /scripts | |
parent | 3b51a07e478d64a84e40b3a7c026b2f8566b194b (diff) | |
download | toybox-7d6af77804adc069a83e8566250f868a6cb9786e.tar.gz |
Make defconfig build for nommu.
Adds XVFORK() macro, teaches xpopen_both() to call /proc/self/exe with NULL
argv (and converts cpio -p to use that), adds TOYBOX_FORK guards to some
unconverted commands.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/config2help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/config2help.c b/scripts/config2help.c index 2ed189aa..f3bb8c3f 100644 --- a/scripts/config2help.c +++ b/scripts/config2help.c @@ -5,6 +5,7 @@ struct toy_context toys; char libbuf[4096], toybuf[4096]; void show_help(FILE *out) {;} void toy_exec(char *argv[]) {;} +void toy_init(struct toy_list *which, char *argv[]) {;} // Parse config files into data structures. |