From 8a61a2f2d567b7858794e3ec8cfc63bee6e07335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Thu, 10 Mar 2016 04:56:31 +0100 Subject: coreinfo: Show "No modules selected" when appropriate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I7222544757587b37e0cf632aa01d042414dde223 Signed-off-by: Jonathan Neuschäfer Reviewed-on: https://review.coreboot.org/14025 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Martin Roth --- payloads/coreinfo/coreinfo.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'payloads') diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c index 41b5f12cb1..82a57dab19 100644 --- a/payloads/coreinfo/coreinfo.c +++ b/payloads/coreinfo/coreinfo.c @@ -213,11 +213,24 @@ static void handle_category_key(struct coreinfo_cat *cat, int key) } } +static void print_no_modules_selected(void) +{ + int height = getmaxy(stdscr), i; + + for (i = 0; i < ARRAY_SIZE(categories); i++) + if (categories[i].count > 0) + return; + + color_set(2, NULL); // White on black + center(height / 2, "No modules selected"); +} + static void loop(void) { int key; center(0, CONFIG_PAYLOAD_INFO_NAME " " CONFIG_PAYLOAD_INFO_VERSION); + print_no_modules_selected(); refresh(); print_menu(); -- cgit v1.2.3