Commit ad12bba10a0760187b7969540005f5aa348f9521

Authored by Sekhar Nori
Committed by Lokesh Vutla
1 parent b03bcc00ba

ti_config_fragments/baseport.cfg: enable opening files by handle

CONFIG_FHANDLE=y is required by systemd and thus systemd based
distributions like debian unstable.

See: https://github.com/systemd/systemd/blob/master/README

Other kernel config options needed by systemd are already enabled
(except CONFIG_FHANDLE).

This option adds two system calls and *should* not create
any performance or functional regressions. OTOH, it will
enable TI kernel to be used with systemd based distributions
without recompilation.

Signed-off-by: Sekhar Nori <nsekhar@ti.com>

Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff

ti_config_fragments/baseport.cfg
... ... @@ -2,6 +2,9 @@
2 2 # TI Baseport Config Options
3 3 ##################################################
4 4 CONFIG_CGROUPS=y
  5 +# Needed by systemd based distributions like debian
  6 +CONFIG_FHANDLE=y
  7 +
5 8  
6 9 CONFIG_REGULATOR_GPIO=y
7 10