[U-Boot-Users] CONFIG_NET_MULTI

Alex Raimondi alex.raimondi at miromico.ch
Mon Mar 10 11:37:46 CET 2008


Hi

I don't understand CONFIG_CMD_NET and CONFIG_NET_MULTI.

I would expect CONFIG_CMD_NET to be defined whenever I want to have
network support in U-Boot, right?

And CONFIG_NET_MULTI is defined when I have more then one network interface?

I try to adapt U-Boot to our new AVR32 based board. AVR32 has two
interfaces, but only one is actually implemented on our board.

CONFIG_CMD_NET is defined per default. If I undefine CONFIG_NET_MULTI I
get linker error about missing functions.
With CONFIG_NET_MULTI defined everything works fine. Should this be like
this?

Looking for a solution and/or the cause of my problem I found that in
net/etc.c there is something like this


#if defined(CONFIG_CMD_NET) && defined(CONFIG_NET_MULTI)

.... some code ..

#ifdef CONFIG_NET_MULTI
... code ...
#endif Ale

... code ....

#elif defined(CONFIG_CMD_NET) && !defined(CONFIG_NET_MULTI)
....
#endif

In the if-branch CONFIG_NET_MULTI is defined per condition of this
branch. Why some additional ifdef CONFIG_NET_MULTI?


Alex





More information about the U-Boot mailing list