summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2013-03-23 23:50:31 +0000
committerTom Rini <trini@ti.com>2013-05-01 16:24:00 -0400
commita5ecbe62c25c7c9d6ddd0c9eb4d5ec3350642614 (patch)
tree9e093483ccce2638393c02fcae2b6ea4c2158f58 /README
parentd87244d5af58cbc2d9cc3f5314648deb7810f10a (diff)
downloadtalos-obmc-uboot-a5ecbe62c25c7c9d6ddd0c9eb4d5ec3350642614.tar.gz
talos-obmc-uboot-a5ecbe62c25c7c9d6ddd0c9eb4d5ec3350642614.zip
Add SLRE - Super Light Regular Expression library
Downloaded from http://slre.sourceforge.net/ and adapted for U-Boot environment. Used to implement regex operations on environment variables. Code size is ~ 3.5 KiB on PPC. To enable this code, define the CONFIG_REGEX option in your board config file. Note: There are more recent versions of the SLRE library available at http://slre.googlecode.com ; unfortunately, the new code has a heavily reorked API which makes it less usable for our purposes: - the return code is strings, which are more difficult to process - we don't get any information any more which sub-string of the data was matched by the given regex - it is much more cumbersome to work with arbitrary expressions, where for example the number of substrings for capturing are not known at compile time Also, there does not seem to be any real changes or improvements of the functionality. Because of this, we deliberately stick with the older code. Note 2: the test code (built when SLRE_TEST is defined) was modified to allow for more extensive testing; now we can test the regexp matching on all lines on a text file (instead of the whole data in the file as a single block). Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'README')
-rw-r--r--README7
1 files changed, 7 insertions, 0 deletions
diff --git a/README b/README
index 862bb3e6c1..0d37d561d9 100644
--- a/README
+++ b/README
@@ -930,6 +930,13 @@ The following options need to be configured:
XXX - this list needs to get updated!
+- Regular expression support:
+ CONFIG_REGEX
+ If this variable is defined, U-Boot is linked against
+ the SLRE (Super Light Regular Expression) library,
+ which adds regex support to some commands, as for
+ example "env grep" and "setexpr".
+
- Device tree:
CONFIG_OF_CONTROL
If this variable is defined, U-Boot will use a device tree
OpenPOWER on IntegriCloud