diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-19 02:49:40 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-19 23:51:50 +0200 |
commit | 5e7efccdd38335a00616f62554e7958bc6668a41 (patch) | |
tree | 9e7fd9ddca72bb30cedb6164dcbc1db8a673ee76 /boards.cfg | |
parent | 80bf2bb501c719d7b1925c0146c3d3a86b40b92d (diff) | |
download | u-boot-imx-5e7efccdd38335a00616f62554e7958bc6668a41.zip u-boot-imx-5e7efccdd38335a00616f62554e7958bc6668a41.tar.gz u-boot-imx-5e7efccdd38335a00616f62554e7958bc6668a41.tar.bz2 |
boards.cfg: update local documentation
The "options" field at the moment is only documented in the changelog
which isn't terribly useful to people without git.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'boards.cfg')
-rw-r--r-- | boards.cfg | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -3,9 +3,7 @@ # # Syntax: # white-space separated list of entries; -# each entry has the following fields: -# -# Targetname Architecture CPU Boardname Vendor SoC +# each entry has the fields documented below. # # Unused fields can be specified as "-", or omitted if they # are the last field on the line. @@ -13,6 +11,16 @@ # Lines starting with '#' are comments. # Blank lines are ignored. # +# The options field takes the form: +# <board config name>[:comma separated config options] +# Each config option has the form (value defaults to "1"): +# option[=value] +# So if you have: +# FOO:HAS_BAR,BAZ=64 +# The file include/configs/FOO.h will be used, and these defines created: +# #define CONFIG_HAS_BAR 1 +# #define CONFIG_BAZ 64 +# # To keep the list sorted, use something like # # :.,$! sort -f -k2,2 -k3,3 -k6,6 -k5,5 -k1,1 |