summaryrefslogtreecommitdiffstats
path: root/meta-rcar-gen2/recipes-kernel
diff options
context:
space:
mode:
authorFlorin Sarbu <florin.sarbu@windriver.com>2014-10-01 18:26:24 +0300
committerStephen Lawrence <stephen.lawrence@renesas.com>2015-03-25 16:12:12 +0000
commit2a1eee935e427a20e9cdbff44dcb94da9e9dd60f (patch)
treebf919228380963de91cd7e02bc35226cb8b1e5e0 /meta-rcar-gen2/recipes-kernel
parent2a59ada41b1f743b465691f46fd3616c1c7cea46 (diff)
linux.inc: Enable support for CGROUPS Enable FHANDLE for serial console
Signed-off-by: Florin Sarbu <florin.sarbu@windriver.com>
Diffstat (limited to 'meta-rcar-gen2/recipes-kernel')
-rw-r--r--meta-rcar-gen2/recipes-kernel/linux/linux.inc13
1 files changed, 13 insertions, 0 deletions
diff --git a/meta-rcar-gen2/recipes-kernel/linux/linux.inc b/meta-rcar-gen2/recipes-kernel/linux/linux.inc
index a265ee8..560bf98 100644
--- a/meta-rcar-gen2/recipes-kernel/linux/linux.inc
+++ b/meta-rcar-gen2/recipes-kernel/linux/linux.inc
@@ -12,6 +12,9 @@ ARM_KEEP_OABI ?= "1"
# Quirk for udev greater or equal 141
UDEV_GE_141 ?= "1"
+# Enable cgroups support for systemd
+KERNEL_ENABLE_CGROUPS ?= "1"
+
# Set the verbosity of kernel messages during runtime
# You can define CMDLINE_DEBUG in your local.conf or distro.conf to override this behaviour
CMDLINE_DEBUG ?= '${@base_conditional("DISTRO_TYPE", "release", "quiet", "debug", d)}'
@@ -106,6 +109,16 @@ do_configure_prepend() {
# Activate CONFIG_LEGACY_PTYS
kernel_configure_variable LEGACY_PTYS y
+ # needed for ttySC6 login on koelsch with systemd
+ kernel_configure_variable FHANDLE y
+
+ # additional configs needed for Genivi compliance
+ kernel_configure_variable EXPERIMENTAL y
+ kernel_configure_variable ECRYPT_FS y
+ kernel_configure_variable QUOTA y
+ kernel_configure_variable BT 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'