Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

init/Kconfig: fix indentation

Adjust indentation from spaces to tab (+optional two spaces) as in
coding style with command like:
$ sed -e 's/^ / /' -i */Kconfig

Link: http://lkml.kernel.org/r/1574306670-30234-1-git-send-email-krzk@kernel.org
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Jiri Kosina <trivial@kernel.org>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Krzysztof Kozlowski and committed by
Linus Torvalds
e8cf4e9c 658c0335

+38 -38
+38 -38
init/Kconfig
··· 146 146 which is done within the script "scripts/setlocalversion".) 147 147 148 148 config BUILD_SALT 149 - string "Build ID Salt" 150 - default "" 151 - help 152 - The build ID is used to link binaries and their debug info. Setting 153 - this option will use the value in the calculation of the build id. 154 - This is mostly useful for distributions which want to ensure the 155 - build is unique between builds. It's safe to leave the default. 149 + string "Build ID Salt" 150 + default "" 151 + help 152 + The build ID is used to link binaries and their debug info. Setting 153 + this option will use the value in the calculation of the build id. 154 + This is mostly useful for distributions which want to ensure the 155 + build is unique between builds. It's safe to leave the default. 156 156 157 157 config HAVE_KERNEL_GZIP 158 158 bool ··· 818 818 if CGROUPS 819 819 820 820 config PAGE_COUNTER 821 - bool 821 + bool 822 822 823 823 config MEMCG 824 824 bool "Memory controller" ··· 1311 1311 select DEBUG_KERNEL 1312 1312 help 1313 1313 This option allows certain base kernel options and settings 1314 - to be disabled or tweaked. This is for specialized 1315 - environments which can tolerate a "non-standard" kernel. 1316 - Only use this if you really know what you are doing. 1314 + to be disabled or tweaked. This is for specialized 1315 + environments which can tolerate a "non-standard" kernel. 1316 + Only use this if you really know what you are doing. 1317 1317 1318 1318 config UID16 1319 1319 bool "Enable 16-bit UID system calls" if EXPERT ··· 1406 1406 bool "BUG() support" if EXPERT 1407 1407 default y 1408 1408 help 1409 - Disabling this option eliminates support for BUG and WARN, reducing 1410 - the size of your kernel image and potentially quietly ignoring 1411 - numerous fatal conditions. You should only consider disabling this 1412 - option for embedded systems with no facilities for reporting errors. 1413 - Just say Y. 1409 + Disabling this option eliminates support for BUG and WARN, reducing 1410 + the size of your kernel image and potentially quietly ignoring 1411 + numerous fatal conditions. You should only consider disabling this 1412 + option for embedded systems with no facilities for reporting errors. 1413 + Just say Y. 1414 1414 1415 1415 config ELF_CORE 1416 1416 depends on COREDUMP ··· 1426 1426 select I8253_LOCK 1427 1427 default y 1428 1428 help 1429 - This option allows to disable the internal PC-Speaker 1430 - support, saving some memory. 1429 + This option allows to disable the internal PC-Speaker 1430 + support, saving some memory. 1431 1431 1432 1432 config BASE_FULL 1433 1433 default y ··· 1545 1545 If unsure, say Y. 1546 1546 1547 1547 config KALLSYMS 1548 - bool "Load all symbols for debugging/ksymoops" if EXPERT 1549 - default y 1550 - help 1551 - Say Y here to let the kernel print out symbolic crash information and 1552 - symbolic stack backtraces. This increases the size of the kernel 1553 - somewhat, as all symbols have to be loaded into the kernel image. 1548 + bool "Load all symbols for debugging/ksymoops" if EXPERT 1549 + default y 1550 + help 1551 + Say Y here to let the kernel print out symbolic crash information and 1552 + symbolic stack backtraces. This increases the size of the kernel 1553 + somewhat, as all symbols have to be loaded into the kernel image. 1554 1554 1555 1555 config KALLSYMS_ALL 1556 1556 bool "Include all symbols in kallsyms" 1557 1557 depends on DEBUG_KERNEL && KALLSYMS 1558 1558 help 1559 - Normally kallsyms only contains the symbols of functions for nicer 1560 - OOPS messages and backtraces (i.e., symbols from the text and inittext 1561 - sections). This is sufficient for most cases. And only in very rare 1562 - cases (e.g., when a debugger is used) all symbols are required (e.g., 1563 - names of variables from the data sections, etc). 1559 + Normally kallsyms only contains the symbols of functions for nicer 1560 + OOPS messages and backtraces (i.e., symbols from the text and inittext 1561 + sections). This is sufficient for most cases. And only in very rare 1562 + cases (e.g., when a debugger is used) all symbols are required (e.g., 1563 + names of variables from the data sections, etc). 1564 1564 1565 - This option makes sure that all symbols are loaded into the kernel 1566 - image (i.e., symbols from all sections) in cost of increased kernel 1567 - size (depending on the kernel configuration, it may be 300KiB or 1568 - something like this). 1565 + This option makes sure that all symbols are loaded into the kernel 1566 + image (i.e., symbols from all sections) in cost of increased kernel 1567 + size (depending on the kernel configuration, it may be 300KiB or 1568 + something like this). 1569 1569 1570 - Say N unless you really need all symbols. 1570 + Say N unless you really need all symbols. 1571 1571 1572 1572 config KALLSYMS_ABSOLUTE_PERCPU 1573 1573 bool ··· 1710 1710 depends on PERF_EVENTS && DEBUG_KERNEL && !PPC 1711 1711 select PERF_USE_VMALLOC 1712 1712 help 1713 - Use vmalloc memory to back perf mmap() buffers. 1713 + Use vmalloc memory to back perf mmap() buffers. 1714 1714 1715 - Mostly useful for debugging the vmalloc code on platforms 1716 - that don't require it. 1715 + Mostly useful for debugging the vmalloc code on platforms 1716 + that don't require it. 1717 1717 1718 - Say N if unsure. 1718 + Say N if unsure. 1719 1719 1720 1720 endmenu 1721 1721