diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-14 14:15:43 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-14 14:15:43 +0000 |
commit | fea8a4f8d32112d7dfa002583fa1da2de2c10f3f (patch) | |
tree | 3e9ca3b10031c8c3495930d09fc13bdc7d2622c9 /util | |
parent | 77ee932a22ee321515191e358089028a85fd0fc9 (diff) | |
download | coreboot-fea8a4f8d32112d7dfa002583fa1da2de2c10f3f.tar.xz |
In the mainboard selection, the selected mainboard is printed twice in
certain cases, this patch eliminates the second mention.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4632 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r-- | util/kconfig/mconf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/kconfig/mconf.c b/util/kconfig/mconf.c index 72d3f68977..fc804bb366 100644 --- a/util/kconfig/mconf.c +++ b/util/kconfig/mconf.c @@ -506,11 +506,14 @@ static void build_conf(struct menu *menu) if (def_menu) { item_add_str(" (%s)", _(menu_get_prompt(def_menu))); item_add_str(" --->"); +#if 0 +/* coreboot doesn't need this representation */ if (def_menu->list) { indent += 2; build_conf(def_menu); indent -= 2; } +#endif } return; } |