MCPcopy Create free account
hub / github.com/coreboot/coreboot / menu_get_ext_help

Function menu_get_ext_help

util/kconfig/menu.c:841–854  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

839
840
841void menu_get_ext_help(struct menu *menu, struct gstr *help)
842{
843 struct symbol *sym = menu->sym;
844 const char *help_text = nohelp_text;
845
846 if (menu->help) {
847 if (sym->name)
848 str_printf(help, "%s%s:\n\n", CONFIG_, sym->name);
849 help_text = menu->help;
850 }
851 str_printf(help, "%s\n", help_text);
852 if (sym)
853 get_symbol_str(help, sym, NULL);
854}

Callers 5

menuInfoMethod · 0.85
show_helpFunction · 0.85
show_helpFunction · 0.85
print_helpFunction · 0.85
text_insert_helpFunction · 0.85

Calls 2

str_printfFunction · 0.85
get_symbol_strFunction · 0.85

Tested by

no test coverage detected