coreboot-kgpe-d16/util/coreboot-configurator/src
Elyes Haouas 06b331b4fe util/coreboot-configurator: Don't use old style function definition
Use "int foo(void)" instead of old-style "int foo()".

Change-Id: I19869ce2f47b543af4552ea23ce1fd1beea2f892
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77497
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2023-08-28 17:07:59 +00:00
..
application
resources
README.md
meson.build

README.md

Categories alt text

CMOS values should be added to [categories.yaml](src/application/categories.yaml].

This allows coreboot-configurator to display them in a relavant tab, with a nice name and help text. Without this, they will still be visible in the Raw tab.

An example entry is below:

processor:
  displayName: Processor
  me_state:
    displayName: Intel Management Engine
    type: bool
    help: Enable or disable the Intel Management Engine

To explain the options:

**tabgroup**:				<- This is the reference to the tab group
  displayName: **Hello World**		<- This is the name of the group that the user
					   will see
  **setting_1**:			<- This is the value that should match the CMOS
					   option.
    displayName: **Hi World**		<- This is the name of the option that the user
					   will see.
    type: **bool**			<- Valid type are: bool (checkbox) and enum
					<- (dropdown).
    help: **Greet the World**		<- Help text that is displayed when hovering on the
					   option.