coreinfo: Move time to the last line

There are more modules in a category than categories. Moving the clock
down leaves more space for the list of modules.

Change-Id: I536dafe32e1abb1995c8a1942d70e0d90b905612
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/14255
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Jonathan Neuschäfer 2016-04-04 19:44:30 +02:00 committed by Martin Roth
parent ef5a238cb9
commit 2bf7a2ca82
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ static void print_time_and_date(void)
rtc_read_clock(&tm);
mvwprintw(menuwin, 0, 57, "%02d/%02d/%04d - %02d:%02d:%02d",
mvwprintw(menuwin, 1, 57, "%02d/%02d/%04d - %02d:%02d:%02d",
tm.tm_mon + 1, tm.tm_mday, 1900 + tm.tm_year, tm.tm_hour,
tm.tm_min, tm.tm_sec);
}