Changeset 2725 in MondoRescue for branches/2.2.9/mindi-busybox/INSTALL


Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/INSTALL

    r1765 r2725  
    2020
    2121To enable all features, use "make defconfig", which produces the largest
    22 general-purpose configuration.  (It's allyesconfig minus debugging options,
     22general-purpose configuration.  It's allyesconfig minus debugging options,
    2323optional packaging choices, and a few special-purpose features requiring
    24 extra configuration to use.)
     24extra configuration to use.  Then enable "standalone shell" feature:
    2525
    2626  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
    2740  make
    2841  PATH= ./busybox ash
     
    105118To build out of tree, cd to an empty directory and configure busybox from there:
    106119
    107   make -f /path/to/source/Makefile defconfig
     120  make KBUILD_SRC=/path/to/source -f /path/to/source/Makefile defconfig
    108121  make
    109122  make install
     
    122135Se also the busybox FAQ, under the questions "How can I get started using
    123136BusyBox" 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
    125 docs/busybox.net/FAQ.html in this tarball.
     137available from http://www.busybox.net/FAQ.html
Note: See TracChangeset for help on using the changeset viewer.