[coreboot-gerrit] New patch to review for coreboot: coreinfo: Move time to the last line

Jonathan Neuschäfer (j.neuschaefer@gmx.net) gerrit at coreboot.org
Tue Apr 5 03:51:31 CEST 2016


Jonathan Neuschäfer (j.neuschaefer at gmx.net) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14255

-gerrit

commit 9331f44cdfad325041fe9fa7aa03b622887615d9
Author: Jonathan Neuschäfer <j.neuschaefer at 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 at 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);
 }



More information about the coreboot-gerrit mailing list