Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14255
-gerrit
commit d167848ca80dc5047b3d4d2b0b2ae57f90e00953 Author: Jonathan Neuschäfer j.neuschaefer@gmx.net Date: Mon Apr 4 19:44:30 2016 +0200
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 --- payloads/coreinfo/coreinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c index 449ac5d..cb42df4 100644 --- a/payloads/coreinfo/coreinfo.c +++ b/payloads/coreinfo/coreinfo.c @@ -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); }