On Wed, 2013-02-27 at 14:53 +0000, Burton, Ross wrote: > On 27 February 2013 14:40, Koen Kooi <k...@dominion.thruhere.net> wrote: > > On Wed, 2013-02-27 at 14:17 +0000, Ross Burton wrote: > >> systemd doesn't need ipv6 support directly, so don't pull it. > > > > It will trigger an error on startup, which seems to scare most of my > > users :( > > Well that's silly of systemd isn't it. Just noticed it didn't cause a > problem here because the BSP I'm testing on appears to put ipv6 into > the kernel > > Can you point to where the log is coming from - silencing that warning > seems like a sensible thing to do, as no ipv6 is a legitimate choice > (albeit rapidly not a sane choice...)
src/core/kmod-setup.c: static const KModule kmod_table[] = { { "autofs4", "/sys/class/misc/autofs", NULL } , { "ipv6", "/sys/module/ipv6", NULL }, { "unix", "/proc/net/unix", NULL } , }; [..] err = kmod_module_probe_insert_module(mod, KMOD_PROBE_APPLY_BLACKLIST, NULL, NULL, NULL, NULL); if (err == 0) log_info("Inserted module '%s'", kmod_module_get_name(mod)); else if (err == KMOD_PROBE_APPLY_BLACKLIST) log_info("Module '%s' is blacklisted", kmod_module_get_name(mod)); else log_error("Failed to insert module '%s'", kmod_module_get_name(mod)); And looking at the other code you'll need to load ipv6 before starting the sockets otherwise socket activation over ipv6 won't work. regards, Koen _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core