From 9cf02fc3d0afccceb4e824a0cbdca3c2dbf6b021 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 4 Mar 2007 13:22:57 +0000 Subject: [PATCH] Consistently use the keyword "help" instead of "---help---" in Kconfig files (trivial). Both do exactly the same, they only differ in syntax. Signed-off-by: Uwe Hermann Acked-by: Uwe Hermann git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@183 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- console/Kconfig | 22 +++++++++++----------- lib/Kconfig | 10 +++++----- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/console/Kconfig b/console/Kconfig index 4c017c4fa1..4aaea0e06e 100644 --- a/console/Kconfig +++ b/console/Kconfig @@ -69,14 +69,14 @@ config DEFAULT_CONSOLE_LOGLEVEL default 6 if CONSOLE_LOGLEVEL_6 default 7 if CONSOLE_LOGLEVEL_7 default 8 if CONSOLE_LOGLEVEL_8 - ---help--- + help Map the log level config names to an integer. config CONSOLE_SERIAL boolean "Serial console support" default y depends CONSOLE - ---help--- + help Send LinuxBIOS output to serial console. choice @@ -86,12 +86,12 @@ choice config CONSOLE_SERIAL_COM1 bool "COM1/ttyS0" - ---help--- + help Serial console on COM1/ttyS0. config CONSOLE_SERIAL_COM2 bool "COM2/ttyS1" - ---help--- + help Serial console on COM2/ttyS1. endchoice @@ -103,27 +103,27 @@ choice config CONSOLE_SERIAL_115200 bool "115200 bps" - ---help--- + help Set serial console speed to 115200 bps. config CONSOLE_SERIAL_57600 bool "57600 bps" - ---help--- + help Set serial console speed to 57600 bps. config CONSOLE_SERIAL_38400 bool "38400 bps" - ---help--- + help Set serial console speed to 38400 bps. config CONSOLE_SERIAL_19200 bool "19200 bps" - ---help--- + help Set serial console speed to 19200 bps. config CONSOLE_SERIAL_9600 bool "9600 bps" - ---help--- + help Set serial console speed to 9600 bps. endchoice @@ -131,13 +131,13 @@ endchoice config CONSOLE_VGA boolean "VGA console support" depends CONSOLE - ---help--- + help Send LinuxBIOS output to VGA console as soon as VGA is initialized. config CONSOLE_USB boolean "USB2 console support" depends CONSOLE - ---help--- + help Send LinuxBIOS output to USB2 (EHCI) console. Note: This requires a USB2 controller which supports the EHCI diff --git a/lib/Kconfig b/lib/Kconfig index 6a72aef829..a550ee9b8c 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -3,13 +3,13 @@ menu "Compression methods" config COMPRESSION_LZMA boolean "Support LZMA compression" default y - ---help--- + help This is the preferred compression method, as LZMA reaches very good compression rates with a small memory footprint. config COMPRESSION_NRV2B boolean "Support NRV2B compression" - ---help--- + help This compression method has a smaller memory footprint than LZMA but also significantly worse compression results. @@ -20,18 +20,18 @@ choice config DEFAULT_COMPRESSION_LZMA bool "LZMA compression" depends COMPRESSION_LZMA - ---help--- + help Choose this option as a default. config DEFAULT_COMPRESSION_NRV2B bool "NRV2B compression" depends COMPRESSION_NRV2B - ---help--- + help Choose this option if you have a flash chip which is large enough. config DEFAULT_COMPRESSION_NONE bool "No compression" - ---help--- + help Do not compress any LinuxBIOS modules per default. endchoice