mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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 <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@183 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
cec4aad017
commit
9cf02fc3d0
2 changed files with 16 additions and 16 deletions
|
@ -69,14 +69,14 @@ config DEFAULT_CONSOLE_LOGLEVEL
|
||||||
default 6 if CONSOLE_LOGLEVEL_6
|
default 6 if CONSOLE_LOGLEVEL_6
|
||||||
default 7 if CONSOLE_LOGLEVEL_7
|
default 7 if CONSOLE_LOGLEVEL_7
|
||||||
default 8 if CONSOLE_LOGLEVEL_8
|
default 8 if CONSOLE_LOGLEVEL_8
|
||||||
---help---
|
help
|
||||||
Map the log level config names to an integer.
|
Map the log level config names to an integer.
|
||||||
|
|
||||||
config CONSOLE_SERIAL
|
config CONSOLE_SERIAL
|
||||||
boolean "Serial console support"
|
boolean "Serial console support"
|
||||||
default y
|
default y
|
||||||
depends CONSOLE
|
depends CONSOLE
|
||||||
---help---
|
help
|
||||||
Send LinuxBIOS output to serial console.
|
Send LinuxBIOS output to serial console.
|
||||||
|
|
||||||
choice
|
choice
|
||||||
|
@ -86,12 +86,12 @@ choice
|
||||||
|
|
||||||
config CONSOLE_SERIAL_COM1
|
config CONSOLE_SERIAL_COM1
|
||||||
bool "COM1/ttyS0"
|
bool "COM1/ttyS0"
|
||||||
---help---
|
help
|
||||||
Serial console on COM1/ttyS0.
|
Serial console on COM1/ttyS0.
|
||||||
|
|
||||||
config CONSOLE_SERIAL_COM2
|
config CONSOLE_SERIAL_COM2
|
||||||
bool "COM2/ttyS1"
|
bool "COM2/ttyS1"
|
||||||
---help---
|
help
|
||||||
Serial console on COM2/ttyS1.
|
Serial console on COM2/ttyS1.
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
@ -103,27 +103,27 @@ choice
|
||||||
|
|
||||||
config CONSOLE_SERIAL_115200
|
config CONSOLE_SERIAL_115200
|
||||||
bool "115200 bps"
|
bool "115200 bps"
|
||||||
---help---
|
help
|
||||||
Set serial console speed to 115200 bps.
|
Set serial console speed to 115200 bps.
|
||||||
|
|
||||||
config CONSOLE_SERIAL_57600
|
config CONSOLE_SERIAL_57600
|
||||||
bool "57600 bps"
|
bool "57600 bps"
|
||||||
---help---
|
help
|
||||||
Set serial console speed to 57600 bps.
|
Set serial console speed to 57600 bps.
|
||||||
|
|
||||||
config CONSOLE_SERIAL_38400
|
config CONSOLE_SERIAL_38400
|
||||||
bool "38400 bps"
|
bool "38400 bps"
|
||||||
---help---
|
help
|
||||||
Set serial console speed to 38400 bps.
|
Set serial console speed to 38400 bps.
|
||||||
|
|
||||||
config CONSOLE_SERIAL_19200
|
config CONSOLE_SERIAL_19200
|
||||||
bool "19200 bps"
|
bool "19200 bps"
|
||||||
---help---
|
help
|
||||||
Set serial console speed to 19200 bps.
|
Set serial console speed to 19200 bps.
|
||||||
|
|
||||||
config CONSOLE_SERIAL_9600
|
config CONSOLE_SERIAL_9600
|
||||||
bool "9600 bps"
|
bool "9600 bps"
|
||||||
---help---
|
help
|
||||||
Set serial console speed to 9600 bps.
|
Set serial console speed to 9600 bps.
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
@ -131,13 +131,13 @@ endchoice
|
||||||
config CONSOLE_VGA
|
config CONSOLE_VGA
|
||||||
boolean "VGA console support"
|
boolean "VGA console support"
|
||||||
depends CONSOLE
|
depends CONSOLE
|
||||||
---help---
|
help
|
||||||
Send LinuxBIOS output to VGA console as soon as VGA is initialized.
|
Send LinuxBIOS output to VGA console as soon as VGA is initialized.
|
||||||
|
|
||||||
config CONSOLE_USB
|
config CONSOLE_USB
|
||||||
boolean "USB2 console support"
|
boolean "USB2 console support"
|
||||||
depends CONSOLE
|
depends CONSOLE
|
||||||
---help---
|
help
|
||||||
Send LinuxBIOS output to USB2 (EHCI) console.
|
Send LinuxBIOS output to USB2 (EHCI) console.
|
||||||
|
|
||||||
Note: This requires a USB2 controller which supports the EHCI
|
Note: This requires a USB2 controller which supports the EHCI
|
||||||
|
|
10
lib/Kconfig
10
lib/Kconfig
|
@ -3,13 +3,13 @@ menu "Compression methods"
|
||||||
config COMPRESSION_LZMA
|
config COMPRESSION_LZMA
|
||||||
boolean "Support LZMA compression"
|
boolean "Support LZMA compression"
|
||||||
default y
|
default y
|
||||||
---help---
|
help
|
||||||
This is the preferred compression method, as LZMA reaches
|
This is the preferred compression method, as LZMA reaches
|
||||||
very good compression rates with a small memory footprint.
|
very good compression rates with a small memory footprint.
|
||||||
|
|
||||||
config COMPRESSION_NRV2B
|
config COMPRESSION_NRV2B
|
||||||
boolean "Support NRV2B compression"
|
boolean "Support NRV2B compression"
|
||||||
---help---
|
help
|
||||||
This compression method has a smaller memory footprint than
|
This compression method has a smaller memory footprint than
|
||||||
LZMA but also significantly worse compression results.
|
LZMA but also significantly worse compression results.
|
||||||
|
|
||||||
|
@ -20,18 +20,18 @@ choice
|
||||||
config DEFAULT_COMPRESSION_LZMA
|
config DEFAULT_COMPRESSION_LZMA
|
||||||
bool "LZMA compression"
|
bool "LZMA compression"
|
||||||
depends COMPRESSION_LZMA
|
depends COMPRESSION_LZMA
|
||||||
---help---
|
help
|
||||||
Choose this option as a default.
|
Choose this option as a default.
|
||||||
|
|
||||||
config DEFAULT_COMPRESSION_NRV2B
|
config DEFAULT_COMPRESSION_NRV2B
|
||||||
bool "NRV2B compression"
|
bool "NRV2B compression"
|
||||||
depends COMPRESSION_NRV2B
|
depends COMPRESSION_NRV2B
|
||||||
---help---
|
help
|
||||||
Choose this option if you have a flash chip which is large enough.
|
Choose this option if you have a flash chip which is large enough.
|
||||||
|
|
||||||
config DEFAULT_COMPRESSION_NONE
|
config DEFAULT_COMPRESSION_NONE
|
||||||
bool "No compression"
|
bool "No compression"
|
||||||
---help---
|
help
|
||||||
Do not compress any LinuxBIOS modules per default.
|
Do not compress any LinuxBIOS modules per default.
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
Loading…
Add table
Reference in a new issue