Move out some hardcoded strings in coreinfo to become Kconfig variables.
This is useful for use with (e.g.) Bayou in order let the user customize the payload name, description, version, etc. For instance, instead of using stock coreinfo and calling the payload "coreinfo" and the Bayou menu item "Show system information" a user might only be interested in an NVRAM dump payload. Thus, he/she can enable only the NVRAM coreinfo module via Kconfig, and tell Kconfig to call the payload "NVRAMdumper" and the Bayou menu item "Show NVRAM contents". This is build-tested, and tested against Bayou in QEMU. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Jordan Crouse <jordan.crouse@amd.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3472 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -221,7 +221,7 @@ static void loop(void)
|
||||
{
|
||||
int key;
|
||||
|
||||
center(0, "coreinfo v0.1");
|
||||
center(0, CONFIG_PAYLOAD_INFO_NAME " " CONFIG_PAYLOAD_INFO_VERSION);
|
||||
refresh();
|
||||
|
||||
print_menu();
|
||||
@@ -301,6 +301,6 @@ int main(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
PAYLOAD_INFO(name, "coreinfo");
|
||||
PAYLOAD_INFO(listname, "System Information");
|
||||
PAYLOAD_INFO(desc, "Display information about the system");
|
||||
PAYLOAD_INFO(name, CONFIG_PAYLOAD_INFO_NAME);
|
||||
PAYLOAD_INFO(listname, CONFIG_PAYLOAD_INFO_LISTNAME);
|
||||
PAYLOAD_INFO(desc, CONFIG_PAYLOAD_INFO_DESC);
|
||||
|
Reference in New Issue
Block a user