blob: 93a1039831c1d5b53c919bb0069f192dd13e0843 [file] [log] [blame]
Rob Landley58ecc3e2008-01-10 14:40:13 -06001All the files in this directory except this README are generated by the
Rob Landley2d471ce2008-01-19 17:49:51 -06002build. (See scripts/make.sh)
3
4config.h: CFG_COMMAND and USE_COMMAND() macros set by menuconfig via .config.
5
6Config.in: Kconfig entries for each command. Included by top level Config.in.
7 The help text in here is used to generated help.h
8
9help.h: Help text strings for use by "help" command. Building this file
10 requires python on the host system, so the prebuilt file is shipped
11 in the build tarball to avoid requiring python to build toybox.
12
13newtoys.h: List of NEWTOY() or OLDTOY() macros for all available commands.
14 Associates command_main() functions with command names, provides
15 option string for command line parsing (see lib/args.c), specifies
16 where to install each command and whether toysh should fork before
17 calling it.