From fea8a4f8d32112d7dfa002583fa1da2de2c10f3f Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Mon, 14 Sep 2009 14:15:43 +0000 Subject: In the mainboard selection, the selected mainboard is printed twice in certain cases, this patch eliminates the second mention. Signed-off-by: Patrick Georgi Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4632 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/kconfig/mconf.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'util/kconfig') 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; } -- cgit v1.2.3