diff options
author | Josh Triplett <josh@joshtriplett.org> | 2014-10-03 16:00:54 -0700 |
---|---|---|
committer | Zefan Li <lizefan@huawei.com> | 2014-12-01 18:02:40 +0800 |
commit | 48dd9ce77c7e5e4f4ad5be567bf0b939bbfb7872 (patch) | |
tree | 56cadac5006ba46a4b51c669242862124f6b2b8e /init | |
parent | 232beb6ef710cf53def84d01276f59766b62756e (diff) | |
download | lwn-48dd9ce77c7e5e4f4ad5be567bf0b939bbfb7872.tar.gz lwn-48dd9ce77c7e5e4f4ad5be567bf0b939bbfb7872.zip |
init/Kconfig: Hide printk log config if CONFIG_PRINTK=n
commit 361e9dfbaae84b0b246ed18d1ab7c82a1a41b53e upstream.
The buffers sized by CONFIG_LOG_BUF_SHIFT and
CONFIG_LOG_CPU_MAX_BUF_SHIFT do not exist if CONFIG_PRINTK=n, so don't
ask about their size at all.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
[lizf: Backported to 3.4:
- drop the change to CONFIG_LOG_CPU_MAX_BUF_SHIFT as it doesn't exist in 3.4]
Signed-off-by: Zefan Li <lizefan@huawei.com>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/init/Kconfig b/init/Kconfig index 6cfd71d06463..f1b0e7828ee2 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -560,6 +560,7 @@ config LOG_BUF_SHIFT int "Kernel log buffer size (16 => 64KB, 17 => 128KB)" range 12 21 default 17 + depends on PRINTK help Select kernel log buffer size as a power of 2. Examples: |