diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-11-20 17:42:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-11-25 01:49:36 +0100 |
commit | b0f23d1e562e753cb78a473fdade956a25cc337b (patch) | |
tree | fe4a5908d1e39e24ec6df66052e866ed72421a79 /target/linux | |
parent | 49a817b44be5695a87f6b4c8eadef3bb0f9419f9 (diff) |
finalize systemd as alternative init system
Most important is the fix in patch-src_journal_journald-server_c,
which breaks startup of systemd-journald when code is compiled
with -DNDEBUG.
A lot of base-files reorganizing to only install required files
on sysv systems.
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/config/Config.in.fs | 9 | ||||
-rw-r--r-- | target/linux/config/Config.in.kernel | 21 | ||||
-rw-r--r-- | target/linux/kernel.config | 1 |
3 files changed, 31 insertions, 0 deletions
diff --git a/target/linux/config/Config.in.fs b/target/linux/config/Config.in.fs index 622a65363..7c25754d1 100644 --- a/target/linux/config/Config.in.fs +++ b/target/linux/config/Config.in.fs @@ -18,9 +18,18 @@ config ADK_KERNEL_INOTIFY_USER bool default y +config ADK_KERNEL_AUTOFS4_FS + bool + config ADK_KERNEL_DNOTIFY bool +config ADK_KERNEL_TMPFS_POSIX_ACL + bool + +config ADK_KERNEL_TMPFS_XATTR + bool + config ADK_KERNEL_EXPORTFS tristate diff --git a/target/linux/config/Config.in.kernel b/target/linux/config/Config.in.kernel index ad0e01819..e27ddb951 100644 --- a/target/linux/config/Config.in.kernel +++ b/target/linux/config/Config.in.kernel @@ -8,6 +8,27 @@ config ADK_KERNEL_EXPERIMENTAL config ADK_KERNEL_STAGING bool +config ADK_KERNEL_CGROUP_CPUACCT + bool + +config ADK_KERNEL_CGROUP_DEVICE + bool + +config ADK_KERNEL_CGROUP_SCHED + bool + +config ADK_KERNEL_CGROUPS + bool + +config ADK_KERNEL_NAMESPACES + bool + +config ADK_KERNEL_FHANDLE + bool + +config ADK_KERNEL_AUDIT + bool + config ADK_KERNEL_RESET_CONTROLLER bool diff --git a/target/linux/kernel.config b/target/linux/kernel.config index c32c4ce66..188bc89d1 100644 --- a/target/linux/kernel.config +++ b/target/linux/kernel.config @@ -26,3 +26,4 @@ CONFIG_DEVKMEM=y CONFIG_EXPERT=y CONFIG_MULTIUSER=y CONFIG_VDSO=y +CONFIG_ADVISE_SYSCALLS=y |