aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-29 04:59:11 +0000
committerRob Landley <rob@landley.net>2006-06-29 04:59:11 +0000
commitc5e4ab7fe6bd21fa2b8af9da39ec20615d2a4c41 (patch)
tree1a3ad72a3e99b7fd53020d96db0660e985cad481
parenta6e6037219ff8f8992d4c7c366b4472b57c4aadc (diff)
downloadbusybox-c5e4ab7fe6bd21fa2b8af9da39ec20615d2a4c41.tar.gz
Minor update on init not working.
-rw-r--r--docs/busybox.net/FAQ.html11
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/busybox.net/FAQ.html b/docs/busybox.net/FAQ.html
index 97a577d52..381059461 100644
--- a/docs/busybox.net/FAQ.html
+++ b/docs/busybox.net/FAQ.html
@@ -349,8 +349,11 @@ within each applet. More build coverage testing.</p></li>
<p>
<h2><a name="init">Busybox init isn't working!</a></h2>
<p>
- Build a statically linked version of the following "hello world" program
- with your cross compiler toolchain.
+ Init is the first program that runs, so it might be that no programs are
+ working on your new system because of a problem with your cross-compiler,
+ kernel, console settings, shared libraries, root filesystem... To rule all
+ that out, first build a statically linked version of the following "hello
+ world" program with your cross compiler toolchain:
</p>
<pre>
#include &lt;stdio.h&gt;
@@ -371,7 +374,9 @@ int main(int argc, char *argv)
<p>
Once you've got it working statically linked, try getting it to work
dynamically linked. Then read the FAQ entry <a href="#build_system">How
- do I build a BusyBox-based system?</a>
+ do I build a BusyBox-based system?</a>, and the
+ <a href="/downloads/BusyBox.html#item_init">documentation for BusyBox
+ init</a>.
</p>
<hr />