source: clfs-embedded/BOOK/final-system/common/busybox.xml @ 76135be

Last change on this file since 76135be was 76135be, checked in by Andrew Bradford <andrew@…>, 11 years ago

Add busybox-musl patch

Required in order to build busybox released version 1.21.1.

  • Property mode set to 100644
File size: 4.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-busybox" role="wrap">
9  <?dbhtml filename="busybox.html"?>
10
11  <title>BusyBox-&busybox-version;</title>
12
13  <indexterm zone="ch-system-busybox">
14    <primary sortas="a-BusyBox">BusyBox</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>BusyBox combines tiny versions of many common UNIX utilities into a
21    single small executable. It provides replacements for most of the utilities
22    you usually find in GNU fileutils, shellutils, etc. The utilities in
23    BusyBox generally have fewer options than their full-featured GNU cousins;
24    however, the options that are included provide the expected functionality
25    and behave very much like their GNU counterparts. BusyBox provides
26     a fairly complete environment for any small or embedded system.</para>
27
28  </sect2>
29
30  <sect2 role="installation">
31    <title>Installation of BusyBox</title>
32
33    <para os="a">First ensure the BusyBox source is completely clean:</para>
34
35<screen os="b"><userinput>make distclean</userinput></screen>
36
37    <para os="c">The following patch is needed for musl-libc:</para>
38
39<screen os="d"><userinput>patch -Np1 -i ../&busybox-musl-patch;</userinput></screen>
40
41    <note os="e"> <para>We tell BusyBox to use the generic defconfig.  For those
42        for more adventurous, you can use <command>make menuconfig</command>,
43        and create a custom or modified configuration for your build.</para>
44    </note>
45
46    <para os="f">The following tells BusyBox to use the default
47      configuration:</para>
48
49<screen os="g"><userinput>ARCH="${CLFS_ARCH}" make defconfig</userinput></screen>
50
51    <para os="h">Compile the package:</para>
52
53<screen os="i"><userinput>ARCH="${CLFS_ARCH}" CROSS_COMPILE="${CLFS_TARGET}-" make</userinput></screen>
54
55    <para os="j">Install the package:</para>
56
57<screen os="k"><userinput>ARCH="${CLFS_ARCH}" CROSS_COMPILE="${CLFS_TARGET}-" make  \
58  CONFIG_PREFIX="${CLFS}/targetfs" install</userinput></screen>
59
60    <para os="l">If you're going to build your kernel with modules, you will need
61    to make sure <command>depmod.pl</command> is available:</para>
62
63<screen os="m"><userinput>cp examples/depmod.pl ${CLFS}/cross-tools/bin
64chmod 755 ${CLFS}/cross-tools/bin/depmod.pl</userinput></screen>
65
66  </sect2>
67
68  <sect2 id="contents-busybox" role="content">
69    <title>Contents of BusyBox</title>
70
71    <segmentedlist>
72      <segtitle>Installed programs</segtitle>
73
74      <seglistitem>
75        <seg>To be Written</seg>
76      </seglistitem>
77    </segmentedlist>
78
79<!--
80    <variablelist>
81      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
82      <?dbfo list-presentation="list"?>
83      <?dbhtml list-presentation="table"?>
84
85      <varlistentry id="bash">
86        <term><command>bash</command></term>
87        <listitem>
88          <para>A widely-used command interpreter; it performs many types of
89          expansions and substitutions on a given command line before executing
90          it, thus making this interpreter a powerful tool</para>
91          <indexterm zone="ch-system-bash bash">
92            <primary sortas="b-bash">bash</primary>
93          </indexterm>
94        </listitem>
95      </varlistentry>
96
97      <varlistentry id="bashbug">
98        <term><command>bashbug</command></term>
99        <listitem>
100          <para>A shell script to help the user compose and mail standard
101          formatted bug reports concerning <command>bash</command></para>
102          <indexterm zone="ch-system-bash bashbug">
103            <primary sortas="b-bashbug">bashbug</primary>
104          </indexterm>
105        </listitem>
106      </varlistentry>
107
108      <varlistentry id="sh">
109        <term><command>sh</command></term>
110        <listitem>
111          <para>A symlink to the <command>bash</command> program; when invoked
112          as <command>sh</command>, <command>bash</command> tries to mimic the
113          startup behavior of historical versions of <command>sh</command> as
114          closely as possible, while conforming to the POSIX standard as
115          well</para>
116          <indexterm zone="ch-system-bash sh">
117            <primary sortas="b-sh">sh</primary>
118          </indexterm>
119        </listitem>
120      </varlistentry>
121
122    </variablelist>
123-->
124  </sect2>
125
126</sect1>
Note: See TracBrowser for help on using the repository browser.