diff options
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -19,11 +19,24 @@ it, is to enable all features and then use "standalone shell" mode with a | |||
19 | blank command $PATH. | 19 | blank command $PATH. |
20 | 20 | ||
21 | To enable all features, use "make defconfig", which produces the largest | 21 | To enable all features, use "make defconfig", which produces the largest |
22 | general-purpose configuration. (It's allyesconfig minus debugging options, | 22 | general-purpose configuration. It's allyesconfig minus debugging options, |
23 | optional packaging choices, and a few special-purpose features requiring | 23 | optional packaging choices, and a few special-purpose features requiring |
24 | extra configuration to use.) | 24 | extra configuration to use. Then enable "standalone shell" feature: |
25 | 25 | ||
26 | make defconfig | 26 | make defconfig |
27 | make menuconfig | ||
28 | # select Busybox Settings | ||
29 | # then General Configuration | ||
30 | # then exec prefers applets | ||
31 | # exit back to top level menu | ||
32 | # select Shells | ||
33 | # then Standalone shell | ||
34 | # exit back to top level menu | ||
35 | # exit and save new configuration | ||
36 | # OR | ||
37 | # use these commands to modify .config directly: | ||
38 | sed -e 's/.*FEATURE_PREFER_APPLETS.*/CONFIG_FEATURE_PREFER_APPLETS=y/' -i .config | ||
39 | sed -e 's/.*FEATURE_SH_STANDALONE.*/CONFIG_FEATURE_SH_STANDALONE=y/' -i .config | ||
27 | make | 40 | make |
28 | PATH= ./busybox ash | 41 | PATH= ./busybox ash |
29 | 42 | ||
@@ -121,5 +134,4 @@ More Information: | |||
121 | 134 | ||
122 | Se also the busybox FAQ, under the questions "How can I get started using | 135 | Se also the busybox FAQ, under the questions "How can I get started using |
123 | BusyBox" and "How do I build a BusyBox-based system?" The BusyBox FAQ is | 136 | BusyBox" and "How do I build a BusyBox-based system?" The BusyBox FAQ is |
124 | available from http://www.busybox.net/FAQ.html or as the file | 137 | available from http://www.busybox.net/FAQ.html |
125 | docs/busybox.net/FAQ.html in this tarball. | ||