public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] docker and CONFIG_IPVLAN
@ 2016-10-26 18:08 Andrés Becerra Sandoval
  2016-10-26 18:32 ` Rich Freeman
  2016-10-27 10:44 ` [gentoo-user] " Kai Krakow
  0 siblings, 2 replies; 5+ messages in thread
From: Andrés Becerra Sandoval @ 2016-10-26 18:08 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 442 bytes --]

Hello,

I am getting this warning when updating app-emulation/docker:

 CONFIG_IPVLAN:         is not set when it should be.

But in the linux kernel configuration I cannot find IPVLAN at:
-> Device Drivers

 -> Network device support
   -> Network core driver support

I am using gentoo-sources. But the same thing happens with vanilla-sources
(versions 4.8.4)

Does anybody knows why?



-- 
  Andrés Becerra Sandoval

[-- Attachment #2: Type: text/html, Size: 1673 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] docker and CONFIG_IPVLAN
  2016-10-26 18:08 [gentoo-user] docker and CONFIG_IPVLAN Andrés Becerra Sandoval
@ 2016-10-26 18:32 ` Rich Freeman
  2016-10-26 19:22   ` Andrés Becerra Sandoval
  2016-10-27 10:44 ` [gentoo-user] " Kai Krakow
  1 sibling, 1 reply; 5+ messages in thread
From: Rich Freeman @ 2016-10-26 18:32 UTC (permalink / raw
  To: gentoo-user

On Wed, Oct 26, 2016 at 2:08 PM, Andrés Becerra Sandoval
<andres.becerra@gmail.com> wrote:
> Hello,
>
> I am getting this warning when updating app-emulation/docker:
>
>  CONFIG_IPVLAN:         is not set when it should be.
>
> But in the linux kernel configuration I cannot find IPVLAN at:
> -> Device Drivers
>  -> Network device support
>    -> Network core driver support
>
> I am using gentoo-sources. But the same thing happens with vanilla-sources
> (versions 4.8.4)
>
> Does anybody knows why?
>

Symbol: IPVLAN [=m]
Type : tristate
Prompt: IP-VLAN support
Location:
-> Device Drivers
-> Network device support (NETDEVICES [=y])
-> Network core driver support (NET_CORE [=y])
Defined at drivers/net/Kconfig:149
Depends on: NETDEVICES [=y] && NET_CORE [=y] && INET [=y] && IPV6 [=y]

Do you have NETDEVICES, NET_CORE, INET, and IPV6 all enabled?  If not,
you can't enable IPVLAN.

-- 
Rich


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] docker and CONFIG_IPVLAN
  2016-10-26 18:32 ` Rich Freeman
@ 2016-10-26 19:22   ` Andrés Becerra Sandoval
  2016-10-26 19:38     ` Rich Freeman
  0 siblings, 1 reply; 5+ messages in thread
From: Andrés Becerra Sandoval @ 2016-10-26 19:22 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1140 bytes --]

2016-10-26 13:32 GMT-05:00 Rich Freeman <rich0@gentoo.org>:

> On Wed, Oct 26, 2016 at 2:08 PM, Andrés Becerra Sandoval
> <andres.becerra@gmail.com> wrote:
> > Hello,
> >
> > I am getting this warning when updating app-emulation/docker:
> >
> >  CONFIG_IPVLAN:         is not set when it should be.
> >
> > But in the linux kernel configuration I cannot find IPVLAN at:
> > -> Device Drivers
> >  -> Network device support
> >    -> Network core driver support
> >
> > I am using gentoo-sources. But the same thing happens with
> vanilla-sources
> > (versions 4.8.4)
> >
> > Does anybody knows why?
> >
>
> Symbol: IPVLAN [=m]
> Type : tristate
> Prompt: IP-VLAN support
> Location:
> -> Device Drivers
> -> Network device support (NETDEVICES [=y])
> -> Network core driver support (NET_CORE [=y])
> Defined at drivers/net/Kconfig:149
> Depends on: NETDEVICES [=y] && NET_CORE [=y] && INET [=y] && IPV6 [=y]
>
> Do you have NETDEVICES, NET_CORE, INET, and IPV6 all enabled?  If not,
> you can't enable IPVLAN.
>
>
​Thank you for the answer Rich, it must be IPV6!


-- 
  Andrés Becerra Sandoval

[-- Attachment #2: Type: text/html, Size: 2154 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] docker and CONFIG_IPVLAN
  2016-10-26 19:22   ` Andrés Becerra Sandoval
@ 2016-10-26 19:38     ` Rich Freeman
  0 siblings, 0 replies; 5+ messages in thread
From: Rich Freeman @ 2016-10-26 19:38 UTC (permalink / raw
  To: gentoo-user

On Wed, Oct 26, 2016 at 3:22 PM, Andrés Becerra Sandoval
<andres.becerra@gmail.com> wrote:
>
> 2016-10-26 13:32 GMT-05:00 Rich Freeman <rich0@gentoo.org>:
>>
>> On Wed, Oct 26, 2016 at 2:08 PM, Andrés Becerra Sandoval
>> <andres.becerra@gmail.com> wrote:
>> > Hello,
>> >
>> > I am getting this warning when updating app-emulation/docker:
>> >
>> >  CONFIG_IPVLAN:         is not set when it should be.
>> >
>> > But in the linux kernel configuration I cannot find IPVLAN at:
>> > -> Device Drivers
>> >  -> Network device support
>> >    -> Network core driver support
>> >
>> > I am using gentoo-sources. But the same thing happens with
>> > vanilla-sources
>> > (versions 4.8.4)
>> >
>> > Does anybody knows why?
>> >
>>
>> Symbol: IPVLAN [=m]
>> Type : tristate
>> Prompt: IP-VLAN support
>> Location:
>> -> Device Drivers
>> -> Network device support (NETDEVICES [=y])
>> -> Network core driver support (NET_CORE [=y])
>> Defined at drivers/net/Kconfig:149
>> Depends on: NETDEVICES [=y] && NET_CORE [=y] && INET [=y] && IPV6 [=y]
>>
>> Do you have NETDEVICES, NET_CORE, INET, and IPV6 all enabled?  If not,
>> you can't enable IPVLAN.
>>
>
> Thank you for the answer Rich, it must be IPV6!
>

I vaguely recall running into something like that myself.  Some of
these dependencies are not at all obvious.  In general the make
menuconfig (or especially xconfig) search options will quickly find an
item even if it is hidden in the menu, and show you which flags aren't
set in your context.  Granted, that often leads to another search, and
possibly finding other items not enabled.  It rarely goes deeper than
2-3 levels though.

-- 
Rich


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-user] Re: docker and CONFIG_IPVLAN
  2016-10-26 18:08 [gentoo-user] docker and CONFIG_IPVLAN Andrés Becerra Sandoval
  2016-10-26 18:32 ` Rich Freeman
@ 2016-10-27 10:44 ` Kai Krakow
  1 sibling, 0 replies; 5+ messages in thread
From: Kai Krakow @ 2016-10-27 10:44 UTC (permalink / raw
  To: gentoo-user

Am Wed, 26 Oct 2016 13:08:05 -0500
schrieb Andrés Becerra Sandoval <andres.becerra@gmail.com>:

> Hello,
> 
> I am getting this warning when updating app-emulation/docker:
> 
>  CONFIG_IPVLAN:         is not set when it should be.
> 
> But in the linux kernel configuration I cannot find IPVLAN at:
> -> Device Drivers  
> 
>  -> Network device support
>    -> Network core driver support  
> 
> I am using gentoo-sources. But the same thing happens with
> vanilla-sources (versions 4.8.4)
> 
> Does anybody knows why?

In "make menuconfig" simply type slash and your search string:

> /IPVLAN

It should show you where to look and what are the depends to make it
visible.

-- 
Regards,
Kai

Replies to list-only preferred.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-10-27 10:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-26 18:08 [gentoo-user] docker and CONFIG_IPVLAN Andrés Becerra Sandoval
2016-10-26 18:32 ` Rich Freeman
2016-10-26 19:22   ` Andrés Becerra Sandoval
2016-10-26 19:38     ` Rich Freeman
2016-10-27 10:44 ` [gentoo-user] " Kai Krakow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox