Various Kconfig and Makefile.inc fixes and cosmetics.
- Whitespace fixes, remove trailing whitespace, use TABs for identation (except in Kconfig "help" lines, which start with one TAB and two spaces as per Linux kernel style) - Kconfig: Standardize on 'bool' (not 'boolean'). - s/lar/cbfs/ in one Kconfig help string. - Reword various Kconfig menu entries for a more usable and consistent menu. - Fix incorrect comment of NO_RUN in devices/Kconfig. - superio/serverengines/Kconfig: Incorrect config name. - superio/Makefile.inc: s/serverengine/serverengines/. - superio/intel/Kconfig: s/SUPERIO_FINTEK_I3100/SUPERIO_INTEL_I3100/. - mainboard/via/vt8454c/Kconfig: Fix copy-paste error in help string. - mainboard/via/epia-n/Kconfig: Fix "bool" menu text. - console/Kconfig: Don't mention defaults in the menu string, kconfig already displays them anyway. - Kill "Drivers" menu for now, it only confuses users as long as it's emtpy. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4567 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
29
src/Kconfig
29
src/Kconfig
@@ -49,12 +49,12 @@ config PCI_BUS_SEGN_BITS
|
||||
default 0
|
||||
|
||||
config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
|
||||
hex
|
||||
default 0
|
||||
hex
|
||||
default 0
|
||||
|
||||
config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
|
||||
hex
|
||||
default 0
|
||||
hex
|
||||
default 0
|
||||
|
||||
config CPU_ADDR_BITS
|
||||
int
|
||||
@@ -214,9 +214,10 @@ config IOAPIC
|
||||
bool
|
||||
default n
|
||||
|
||||
menu "Drivers"
|
||||
|
||||
endmenu
|
||||
# TODO
|
||||
# menu "Drivers"
|
||||
#
|
||||
# endmenu
|
||||
|
||||
menu "Payload"
|
||||
|
||||
@@ -242,14 +243,12 @@ config VGA_BIOS
|
||||
bool "Add a VGA BIOS image"
|
||||
depends on PAYLOAD_ELF
|
||||
help
|
||||
Select this option if you have a VGA BIOS image that you would
|
||||
Select this option if you have a VGA BIOS image that you would
|
||||
like to add to your ROM.
|
||||
|
||||
You will be able to specify the location and file name of the
|
||||
image later.
|
||||
|
||||
|
||||
|
||||
config PAYLOAD_NONE
|
||||
bool "No payload"
|
||||
help
|
||||
@@ -257,7 +256,7 @@ config PAYLOAD_NONE
|
||||
ROM image for a certain mainboard, i.e. a coreboot ROM image
|
||||
which does not yet contain a payload.
|
||||
|
||||
For such an image to be useful, you have to use the 'lar' tool
|
||||
For such an image to be useful, you have to use the 'cbfs' tool
|
||||
to add a payload to the ROM image later.
|
||||
|
||||
endchoice
|
||||
@@ -267,7 +266,7 @@ config FALLBACK_PAYLOAD_FILE
|
||||
depends on PAYLOAD_ELF
|
||||
default "payload.elf"
|
||||
help
|
||||
The path and filename of the ELF executable file to use as fallback payload.
|
||||
The path and filename of the ELF executable file to use as payload.
|
||||
|
||||
config FALLBACK_VGA_BIOS_FILE
|
||||
string "VGA BIOS path and filename"
|
||||
@@ -286,9 +285,9 @@ config FALLBACK_VGA_BIOS_ID
|
||||
endmenu
|
||||
|
||||
config GDB_STUB
|
||||
bool "Enable GDB debugging support"
|
||||
bool "GDB debugging support"
|
||||
default y
|
||||
help
|
||||
If this is set, then you will be able to set breakpoints for gdb debugging.
|
||||
See: src/arch/i386/lib/c_start.S
|
||||
If enabled, you will be able to set breakpoints for gdb debugging.
|
||||
See src/arch/i386/lib/c_start.S for details.
|
||||
|
||||
|
Reference in New Issue
Block a user