diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-05-20 14:27:24 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-05-21 09:13:20 -0400 |
commit | c0a93440a7cb50843510549d9943a4fba211f0f2 (patch) | |
tree | 76aeb03c001cf472e412dfe6d00a8e72b06eda4c /include/env_flags.h | |
parent | fd3056337e6fcc140f400e11edd33f6f1cb37de1 (diff) |
net: Add default flags for common net env vars
Check that the common network stack's env vars conform to the proper
format for IP addresses.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/env_flags.h')
-rw-r--r-- | include/env_flags.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/env_flags.h b/include/env_flags.h index fc6d0d842f3..2d2de88fc04 100644 --- a/include/env_flags.h +++ b/include/env_flags.h @@ -52,8 +52,17 @@ enum env_flags_varaccess { #define ETHADDR_FLAGS "eth" ETHADDR_WILDCARD "addr:mo," #endif #endif +#define NET_FLAGS \ + "ipaddr:i," \ + "gatewayip:i," \ + "netmask:i," \ + "serverip:i," \ + "nvlan:i," \ + "vlan:i," \ + "dnsip:i," #else -#define ETHADDR_FLAGS "" +#define ETHADDR_FLAGS +#define NET_FLAGS #endif #ifndef CONFIG_ENV_OVERWRITE @@ -64,6 +73,7 @@ enum env_flags_varaccess { #define ENV_FLAGS_LIST_STATIC \ ETHADDR_FLAGS \ + NET_FLAGS \ SERIAL_FLAGS \ CONFIG_ENV_FLAGS_LIST_STATIC |