INSTALL 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. Building:
  2. =========
  3. The BusyBox build process is similar to the Linux kernel build:
  4. make menuconfig # This creates a file called ".config"
  5. make # This creates the "busybox" executable
  6. make install # or make CONFIG_PREFIX=/path/from/root install
  7. The full list of configuration and install options is available by typing:
  8. make help
  9. Quick Start:
  10. ============
  11. The easy way to try out BusyBox for the first time, without having to install
  12. it, is to enable all features and then use "standalone shell" mode with a
  13. blank command $PATH.
  14. To enable all features, use "make defconfig", which produces the largest
  15. general-purpose configuration. It's allyesconfig minus debugging options,
  16. optional packaging choices, and a few special-purpose features requiring
  17. extra configuration to use. Then enable "standalone shell" feature:
  18. make defconfig
  19. make menuconfig
  20. # select Busybox Settings
  21. # then General Configuration
  22. # then exec prefers applets
  23. # exit back to top level menu
  24. # select Shells
  25. # then Standalone shell
  26. # exit back to top level menu
  27. # exit and save new configuration
  28. # OR
  29. # use these commands to modify .config directly:
  30. sed -e 's/.*FEATURE_PREFER_APPLETS.*/CONFIG_FEATURE_PREFER_APPLETS=y/' -i .config
  31. sed -e 's/.*FEATURE_SH_STANDALONE.*/CONFIG_FEATURE_SH_STANDALONE=y/' -i .config
  32. make
  33. PATH= ./busybox ash
  34. Standalone shell mode causes busybox's built-in command shell to run
  35. any built-in busybox applets directly, without looking for external
  36. programs by that name. Supplying an empty command path (as above) means
  37. the only commands busybox can find are the built-in ones.
  38. Note that the standalone shell requires CONFIG_BUSYBOX_EXEC_PATH
  39. to be set appropriately, depending on whether or not /proc/self/exe is
  40. available or not. If you do not have /proc, then point that config option
  41. to the location of your busybox binary, usually /bin/busybox.
  42. Configuring Busybox:
  43. ====================
  44. Busybox is optimized for size, but enabling the full set of functionality
  45. still results in a fairly large executable -- more than 1 megabyte when
  46. statically linked. To save space, busybox can be configured with only the
  47. set of applets needed for each environment. The minimal configuration, with
  48. all applets disabled, produces a 4k executable. (It's useless, but very small.)
  49. The manual configurator "make menuconfig" modifies the existing configuration.
  50. (For systems without ncurses, try "make config" instead.) The two most
  51. interesting starting configurations are "make allnoconfig" (to start with
  52. everything disabled and add just what you need), and "make defconfig" (to
  53. start with everything enabled and remove what you don't need). If menuconfig
  54. is run without an existing configuration, make defconfig will run first to
  55. create a known starting point.
  56. Other starting configurations (mostly used for testing purposes) include
  57. "make allbareconfig" (enables all applets but disables all optional features),
  58. "make allyesconfig" (enables absolutely everything including debug features),
  59. and "make randconfig" (produce a random configuration).
  60. Configuring BusyBox produces a file ".config", which can be saved for future
  61. use. Run "make oldconfig" to bring a .config file from an older version of
  62. busybox up to date.
  63. Installing Busybox:
  64. ===================
  65. Busybox is a single executable that can behave like many different commands,
  66. and BusyBox uses the name it was invoked under to determine the desired
  67. behavior. (Try "mv busybox ls" and then "./ls -l".)
  68. Installing busybox consists of creating symlinks (or hardlinks) to the busybox
  69. binary for each applet enabled in busybox, and making sure these symlinks are
  70. in the shell's command $PATH. Running "make install" creates these symlinks,
  71. or "make install-hardlinks" creates hardlinks instead (useful on systems with
  72. a limited number of inodes). This install process uses the file
  73. "busybox.links" (created by make), which contains the list of enabled applets
  74. and the path at which to install them.
  75. Installing links to busybox is not always necessary. The special applet name
  76. "busybox" (or with any optional suffix, such as "busybox-static") uses the
  77. first argument to determine which applet to behave as, for example
  78. "./busybox cat LICENSE". (Running the busybox applet with no arguments gives
  79. a list of all enabled applets.) The standalone shell can also call busybox
  80. applets without links to busybox under other names in the filesystem. You can
  81. also configure a standaone install capability into the busybox base applet,
  82. and then install such links at runtime with one of "busybox --install" (for
  83. hardlinks) or "busybox --install -s" (for symlinks).
  84. If you enabled the busybox shared library feature (libbusybox.so) and want
  85. to run tests without installing, set your LD_LIBRARY_PATH accordingly when
  86. running the executable:
  87. LD_LIBRARY_PATH=`pwd` ./busybox
  88. Building out-of-tree:
  89. =====================
  90. By default, the BusyBox build puts its temporary files in the source tree.
  91. Building from a read-only source tree, or building multiple configurations from
  92. the same source directory, requires the ability to put the temporary files
  93. somewhere else.
  94. To build out of tree, cd to an empty directory and configure busybox from there:
  95. make KBUILD_SRC=/path/to/source -f /path/to/source/Makefile defconfig
  96. make
  97. make install
  98. Alternately, use the O=$BUILDPATH option (with an absolute path) during the
  99. configuration step, as in:
  100. make O=/some/empty/directory allyesconfig
  101. cd /some/empty/directory
  102. make
  103. make CONFIG_PREFIX=. install
  104. More Information:
  105. =================
  106. Se also the busybox FAQ, under the questions "How can I get started using
  107. BusyBox" and "How do I build a BusyBox-based system?" The BusyBox FAQ is
  108. available from http://www.busybox.net/FAQ.html