aboutsummaryrefslogtreecommitdiff
path: root/util/kconfig
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2009-09-14 14:15:43 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-09-14 14:15:43 +0000
commitfea8a4f8d32112d7dfa002583fa1da2de2c10f3f (patch)
tree3e9ca3b10031c8c3495930d09fc13bdc7d2622c9 /util/kconfig
parent77ee932a22ee321515191e358089028a85fd0fc9 (diff)
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/kconfig')
-rw-r--r--util/kconfig/mconf.c3
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;
}