annotate generated/README.txt @ 1099:71326585c02d draft

Cleanup nl, add support for more bits of posix.
author Rob Landley <rob@landley.net>
date Sun, 27 Oct 2013 02:48:13 -0500
parents 7cde22266e65
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
232
cd4d5630c978 Move some generated files into the "generated" subdirectory.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 All the files in this directory except this README are generated by the
235
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
2 build. (See scripts/make.sh)
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
3
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
4 config.h: CFG_COMMAND and USE_COMMAND() macros set by menuconfig via .config.
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
5
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
6 Config.in: Kconfig entries for each command. Included by top level Config.in.
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
7 The help text in here is used to generated help.h
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
8
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
9 help.h: Help text strings for use by "help" command. Building this file
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
10 requires python on the host system, so the prebuilt file is shipped
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
11 in the build tarball to avoid requiring python to build toybox.
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
12
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
13 newtoys.h: List of NEWTOY() or OLDTOY() macros for all available commands.
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
14 Associates command_main() functions with command names, provides
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
15 option string for command line parsing (see lib/args.c), specifies
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
16 where to install each command and whether toysh should fork before
7cde22266e65 More documentation for generated/* files.
Rob Landley <rob@landley.net>
parents: 232
diff changeset
17 calling it.