aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-29 04:59:11 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-29 04:59:11 +0000
commit9f7f46b5f3259c7e2207ae2d297b7b83bd9fdba5 (patch)
tree1a3ad72a3e99b7fd53020d96db0660e985cad481 /docs
parenteef8fbbf48fd2094577dd26dd46ba5e4a36a58a8 (diff)
downloadbusybox-w32-9f7f46b5f3259c7e2207ae2d297b7b83bd9fdba5.tar.gz
busybox-w32-9f7f46b5f3259c7e2207ae2d297b7b83bd9fdba5.tar.bz2
busybox-w32-9f7f46b5f3259c7e2207ae2d297b7b83bd9fdba5.zip
Minor update on init not working.
git-svn-id: svn://busybox.net/trunk/busybox@15542 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'docs')
-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>
349<p> 349<p>
350<h2><a name="init">Busybox init isn't working!</a></h2> 350<h2><a name="init">Busybox init isn't working!</a></h2>
351<p> 351<p>
352 Build a statically linked version of the following "hello world" program 352 Init is the first program that runs, so it might be that no programs are
353 with your cross compiler toolchain. 353 working on your new system because of a problem with your cross-compiler,
354 kernel, console settings, shared libraries, root filesystem... To rule all
355 that out, first build a statically linked version of the following "hello
356 world" program with your cross compiler toolchain:
354</p> 357</p>
355<pre> 358<pre>
356#include &lt;stdio.h&gt; 359#include &lt;stdio.h&gt;
@@ -371,7 +374,9 @@ int main(int argc, char *argv)
371<p> 374<p>
372 Once you've got it working statically linked, try getting it to work 375 Once you've got it working statically linked, try getting it to work
373 dynamically linked. Then read the FAQ entry <a href="#build_system">How 376 dynamically linked. Then read the FAQ entry <a href="#build_system">How
374 do I build a BusyBox-based system?</a> 377 do I build a BusyBox-based system?</a>, and the
378 <a href="/downloads/BusyBox.html#item_init">documentation for BusyBox
379 init</a>.
375</p> 380</p>
376 381
377<hr /> 382<hr />