diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2014-04-02 11:40:41 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2014-04-02 11:40:41 +0000 |
commit | ecbcbeefaec5542a7c2da3555774d0a2f863a1ef (patch) | |
tree | 22e2e2724168efed3c9299b85b8b79eb010c72c7 /config/Config-kernel.in | |
parent | c18cc9aa497d4c6498f3dc8bbe80c59ebf401cb9 (diff) | |
download | upstream-ecbcbeefaec5542a7c2da3555774d0a2f863a1ef.tar.gz upstream-ecbcbeefaec5542a7c2da3555774d0a2f863a1ef.tar.bz2 upstream-ecbcbeefaec5542a7c2da3555774d0a2f863a1ef.zip |
make printk, crashlog and swap support configurable
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 40361
Diffstat (limited to 'config/Config-kernel.in')
-rw-r--r-- | config/Config-kernel.in | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index c253959508..a475e9aae2 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -1,9 +1,22 @@ -# Copyright (C) 2006-2013 OpenWrt.org +# Copyright (C) 2006-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # +config KERNEL_PRINTK + bool "Enable support for printk" + default y + +config KERNEL_CRASHLOG + bool "Crash logging" + depends on !(arm || powerpc || sparc) + default y + +config KERNEL_SWAP + bool "Support for paging of anonymous memory (swap)" + default y + config KERNEL_DEBUG_FS bool "Compile the kernel with Debug FileSystem enabled" default y |