blob: e808ba985220563bfcdd8dc772b8d1fd403bbfdc [file] [log] [blame]
Rob Landley09e8bde2012-02-04 12:20:39 -06001Toybox: all-in-one Linux command line.
2
Rob Landley0b87b2e2013-05-07 22:50:33 -05003--- Getting started
4
5You can download static binaries for various targets from:
6
7 http://landley.net/toybox/bin
8
9The special name "." indicates the current directory (just like ".." means
10the parent directory), and you can run a program that isn't in the $PATH by
11specifying a path to it, so this should work:
12
13 wget http://landley.net/bin/toybox-x86_64
14 chmod +x toybox-x86_64
15 ./toybox-x86_64 echo hello world
16
17--- Building toybox
Rob Landley09e8bde2012-02-04 12:20:39 -060018
19Type "make help" for build instructions.
20
Rob Landley0b87b2e2013-05-07 22:50:33 -050021Usually you want something like:
Rob Landley09e8bde2012-02-04 12:20:39 -060022
Rob Landley0b87b2e2013-05-07 22:50:33 -050023 make defconfig
24 CFLAGS="--static" CROSS_COMPILE=armv5l- make toybox
25 PREFIX=/path/to/root/filesystem make install
Rob Landley09e8bde2012-02-04 12:20:39 -060026
Rob Landley0b87b2e2013-05-07 22:50:33 -050027The CROSS_COMPILE argument is optional, and without it builds a version of
28toybox to run on the current machine. Cross compiling requires an appropriately
29prefixed cross compiler toolchain, several example toolchains are available at:
30
31 http;//landley.net/aboriginal/bin
32
33For the "CROSS_COMPILE=armv5l-" example above, download
34cross-compiler-armv5l.tar.bz2, extract it, and add its "bin" subdirectory to
35your $PATH. (And yes, the trailing - is significant, because the prefix
36includes a dash.)
37
38For more about cross compiling, see:
39
40 http://landley.net/writing/docs/cross-compiling.html
41 http://landley.net/aboriginal/architectures.html
Rob Landley09e8bde2012-02-04 12:20:39 -060042
43--- Using toybox
44
Rob Landley0b87b2e2013-05-07 22:50:33 -050045The toybox build produces a multicall binary, a "swiss-army-knife" program
46that acts differently depending on the name it was called by (cp, mv, cat...).
47Installing toybox adds symlinks for each command name to the $PATH.
Rob Landley09e8bde2012-02-04 12:20:39 -060048
Rob Landley0b87b2e2013-05-07 22:50:33 -050049The special "toybox" command treats its first argument as the command to run.
50With no arguments, it lists available commands. This allows you to use toybox
51without installing it. This is the only command that can have an arbitrary
52suffix (hence "toybox-armv5l").
Rob Landley09e8bde2012-02-04 12:20:39 -060053
54The "help" command provides information about each command (ala "help cat").
55
Rob Landley0b87b2e2013-05-07 22:50:33 -050056--- Configuring toybox
Rob Landley09e8bde2012-02-04 12:20:39 -060057
Rob Landley0b87b2e2013-05-07 22:50:33 -050058It works like the Linux kernel: allnoconfig, defconfig, and menuconfig edit
59a ".config" file that selects which features to include in the resulting
60binary.
Rob Landley09e8bde2012-02-04 12:20:39 -060061
Rob Landley0b87b2e2013-05-07 22:50:33 -050062The maximum sane configuration is "make defconfig": allyesconfig isn't
63recommended for toybox because it enables unfinished commands and debug code.
64
65--- Creating a Toybox-based Linux system
66
67Toybox is not a complete operating system, it's a program that runs under
68an operating system. Booting a simple system to a shell prompt requires
69three packages: an operating system kernel (Linux) to drive the hardware,
70a program for the system to run (toybox), and a C library to tie them
71together (toybox has been tested with musl, uClibc, and glibc, on Android
Rob Landley52dea122014-06-11 22:44:48 -050072systems musl is recommended).
Rob Landley0b87b2e2013-05-07 22:50:33 -050073
Rob Landleya7c3e292014-01-01 13:24:03 -060074The C library is part of a "toolchain", which is an integrated suite
Rob Landley0b87b2e2013-05-07 22:50:33 -050075of compiler, assembler, and linker, plus the standard headers and libraries
Rob Landleya7c3e292014-01-01 13:24:03 -060076necessary to build C programs.
Rob Landley0b87b2e2013-05-07 22:50:33 -050077
Rob Landleya7c3e292014-01-01 13:24:03 -060078Static linking (with the --static option) copies the shared library contents
79into the program, resulting in larger but more portable programs, which
80can run even if they'rr the only file in the filesystem. Otherwise,
81the "dynamically" linked programs require the library files to be present on
82the target system ("man ldd" and "man ld.so" for details).
Rob Landley0b87b2e2013-05-07 22:50:33 -050083
84Toybox is not a kernel, it needs Linux to drive the hardware.
85
86An example toybox-based system is Aboriginal Linux:
87
88 http://landley.net/aboriginal