From eced0da1d9b2848f53429e8333dce22cbae29a6a Mon Sep 17 00:00:00 2001 From: Yannick Gicquel Date: Fri, 30 Oct 2015 11:11:07 +0100 Subject: kernel: activate kernel feature for systemd IPv6 and autofs4 are required by systemd. Schedstats are required by systemd-bootchartd. (...) systemd[1]: Your kernel apparently lacks built-in autofs4 support. Might be a good idea to compile it in. We'll now try to work around this by loading the module... systemd[1]: could not find module by name='autofs4' systemd[1]: Failed to insert module 'autofs4' systemd[1]: Your kernel apparently lacks built-in ipv6 support. Might be a good idea to compile it in. We'll now try to work around this by loading the module... systemd[1]: could not find module by name='ipv6' systemd[1]: Failed to insert module 'ipv6' (...) Change-Id: Ieb53a0f6ae21f5787854d045fb7ca4c5c6e4d17f Signed-off-by: Yannick Gicquel --- meta-rcar-gen2/recipes-kernel/linux/linux.inc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'meta-rcar-gen2/recipes-kernel/linux/linux.inc') diff --git a/meta-rcar-gen2/recipes-kernel/linux/linux.inc b/meta-rcar-gen2/recipes-kernel/linux/linux.inc index 5d595d1..68ab620 100644 --- a/meta-rcar-gen2/recipes-kernel/linux/linux.inc +++ b/meta-rcar-gen2/recipes-kernel/linux/linux.inc @@ -134,6 +134,11 @@ do_configure_prepend() { kernel_configure_variable FRAMEBUFFER_CONSOLE n kernel_configure_variable LOGO n + # systemd requires following + kernel_configure_variable AUTOFS4_FS y + kernel_configure_variable IPV6 y + kernel_configure_variable SCHEDSTATS y + # Keep this the last line # Remove all modified configs and add the rest to .config sed -e "${CONF_SED_SCRIPT}" < '${WORKDIR}/defconfig' >> '${S}/.config' -- cgit 1.2.3-korg