diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-06-22 17:57:36 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-07-08 18:26:39 -0400 |
commit | f7848d90dde918423e6dfa462ec82bcdbba9defe (patch) | |
tree | ec06160a0d11f707adab36a805f4ecf6df3b57aa /lib/Kconfig | |
parent | fb69b6cd270444c8d248e70e6be7c58f9828debd (diff) | |
download | u-boot-f7848d90dde918423e6dfa462ec82bcdbba9defe.tar.gz |
Allow CONFIG_REGEX to be disabled when CONFIG_NET
Instead of selecting REGEX when NET is enabled, make it the default, but
allow boards that are tiny to disable it and lose functionality on all
but the first Ethernet adapter.
cm-bf548, bf538f-ezkit, and bf533-stamp need this. None appear to have
more than one Ethernet interface.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 7ec8c98da2..c98d3997b7 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -38,6 +38,7 @@ config SYS_VSNPRINTF config REGEX bool "Enable regular expression support" + default y if NET help If this variable is defined, U-Boot is linked against the SLRE (Super Light Regular Expression) library, which adds |