aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL20
1 files changed, 16 insertions, 4 deletions
diff --git a/INSTALL b/INSTALL
index a7902ab8d..2d645cd62 100644
--- a/INSTALL
+++ b/INSTALL
@@ -19,11 +19,24 @@ it, is to enable all features and then use "standalone shell" mode with a
19blank command $PATH. 19blank command $PATH.
20 20
21To enable all features, use "make defconfig", which produces the largest 21To enable all features, use "make defconfig", which produces the largest
22general-purpose configuration. (It's allyesconfig minus debugging options, 22general-purpose configuration. It's allyesconfig minus debugging options,
23optional packaging choices, and a few special-purpose features requiring 23optional packaging choices, and a few special-purpose features requiring
24extra configuration to use.) 24extra 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
122Se also the busybox FAQ, under the questions "How can I get started using 135Se also the busybox FAQ, under the questions "How can I get started using
123BusyBox" and "How do I build a BusyBox-based system?" The BusyBox FAQ is 136BusyBox" and "How do I build a BusyBox-based system?" The BusyBox FAQ is
124available from http://www.busybox.net/FAQ.html or as the file 137available from http://www.busybox.net/FAQ.html
125docs/busybox.net/FAQ.html in this tarball.