[yocto] Disabling ipv6

2016-02-10 Thread Chris Trobridge
I hit this issue experimenting with disabling ipv6, as Todd did originally, with an odd error about not being able to build the native sdk. It's not a problem for me but is there a recommended way for disabling a libc distro feature like ipv6 without creating a whole new distro? Does libc really

Re: [yocto] Disabling ipv6

2015-10-27 Thread Paul Eggleton
On Tuesday 27 October 2015 08:45:26 Burton, Ross wrote: > On 26 October 2015 at 20:16, Todd Efflam wrote: > > Thanks for the tip. We tried adding this to the local.conf file but > > it failed with the following error: > > ERROR: Nothing PROVIDES 'glibc' > > ERROR: glibc was skipped: missing requi

Re: [yocto] Disabling ipv6

2015-10-27 Thread Burton, Ross
On 26 October 2015 at 20:16, Todd Efflam wrote: > Thanks for the tip. We tried adding this to the local.conf file but > it failed with the following error: > ERROR: Nothing PROVIDES 'glibc' > ERROR: glibc was skipped: missing required distro feature 'ipv6' (not > in DISTRO_FEATURES) > Ouch. Th

Re: [yocto] Disabling ipv6

2015-10-26 Thread Todd Efflam
On Fri, Oct 23, 2015 at 4:43 PM, Burton, Ross wrote: > In your distro configuration either define your own DISTRO_FEATURES entirely > from scratch, or use DISTRO_FEATURES_remove = "ipv6". Thanks for the tip. We tried adding this to the local.conf file but it failed with the following error: ERRO

Re: [yocto] Disabling ipv6

2015-10-23 Thread Burton, Ross
On 24 October 2015 at 00:28, Todd Efflam wrote: > We're trying to disable ipv6 in our build and are able to do so by > directly editing the file > meta/conf/distro/include/default-distrovars.inc and deleting "ipv6" > from "DISTRO_FEATURES_LIBC_DEFAULT ?= "ipv4 ipv6 libc-backtrace > lib..." > > Is

[yocto] Disabling ipv6

2015-10-23 Thread Todd Efflam
Hello, We're trying to disable ipv6 in our build and are able to do so by directly editing the file meta/conf/distro/include/default-distrovars.inc and deleting "ipv6" from "DISTRO_FEATURES_LIBC_DEFAULT ?= "ipv4 ipv6 libc-backtrace lib..." Is there a better way to disable ipv6 so that we can do th