[U-Boot] [PATCH 09/11] net: Apply default format rules to all ethaddr

Simon Glass sjg at chromium.org
Fri Apr 24 06:34:42 CEST 2015


On 21 April 2015 at 16:02, Joe Hershberger <joe.hershberger at ni.com> wrote:
> Use a regular expression to apply the default formatting flags for all
> ethaddr env vars.
>
> Signed-off-by: Joe Hershberger <joe.hershberger at ni.com>
> ---
>
>  include/env_flags.h | 11 ++++++++---
>  test/dm/eth.c       |  1 +
>  2 files changed, 9 insertions(+), 3 deletions(-)

Reviewed-by: Simon Glass <sjg at chromium.org>

Q below.

>
> diff --git a/include/env_flags.h b/include/env_flags.h
> index 3ef6311..fc6d0d8 100644
> --- a/include/env_flags.h
> +++ b/include/env_flags.h
> @@ -38,13 +38,18 @@ enum env_flags_varaccess {
>  #endif
>
>  #ifdef CONFIG_CMD_NET
> +#ifdef CONFIG_REGEX
> +#define ETHADDR_WILDCARD "\\d?"
> +#else
> +#define ETHADDR_WILDCARD
> +#endif
>  #ifdef CONFIG_ENV_OVERWRITE
> -#define ETHADDR_FLAGS "ethaddr:ma,"
> +#define ETHADDR_FLAGS "eth" ETHADDR_WILDCARD "addr:ma,"
>  #else
>  #ifdef CONFIG_OVERWRITE_ETHADDR_ONCE
> -#define ETHADDR_FLAGS "ethaddr:mc,"
> +#define ETHADDR_FLAGS "eth" ETHADDR_WILDCARD "addr:mc,"
>  #else
> -#define ETHADDR_FLAGS "ethaddr:mo,"
> +#define ETHADDR_FLAGS "eth" ETHADDR_WILDCARD "addr:mo,"
>  #endif
>  #endif
>  #else
> diff --git a/test/dm/eth.c b/test/dm/eth.c
> index 4891f3a..9b714a1 100644
> --- a/test/dm/eth.c
> +++ b/test/dm/eth.c
> @@ -89,6 +89,7 @@ static int dm_test_eth_rotate(struct dm_test_state *dms)
>         /* Invalidate eth1's MAC address */
>         net_ping_ip = string_to_ip("1.1.2.2");
>         strcpy(ethaddr, getenv("eth1addr"));

Can you explain this next line, please?

> +       setenv(".flags", "eth1addr");
>         setenv("eth1addr", NULL);
>
>         /* Make sure that the default is to rotate to the next interface */
> --
> 1.7.11.5
>

Regards,
Simon


More information about the U-Boot mailing list