Name of user not set #1002476 has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35847 )
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
coreinfo/coreinfo.c: Provide information of time format
Specify Coordinated Universal Time (UTC) time format while print date and time in the coreinfo payload.
Change-Id: I359cef7697daf5d92d2c9fb58bf75c5b1345e982 Signed-off-by: Sourabh Kashyap sourabhka@hcl.com --- M payloads/coreinfo/coreinfo.c 1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/47/35847/1
diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c index 53985b2..ea4d424 100644 --- a/payloads/coreinfo/coreinfo.c +++ b/payloads/coreinfo/coreinfo.c @@ -124,8 +124,10 @@
rtc_read_clock(&tm);
- mvwprintw(menuwin, 1, 57, "%02d/%02d/%04d - %02d:%02d:%02d", - tm.tm_mon + 1, tm.tm_mday, 1900 + tm.tm_year, tm.tm_hour, + mvwprintw(menuwin, 1, 53, "%02d/%02d/%04d", tm.tm_mon + 1, + tm.tm_mday, 1900 + tm.tm_year); + mvwprintw(menuwin, 1, 63, " - UTC "); + mvwprintw(menuwin, 1, 70, "%02d:%02d:%02d", tm.tm_hour, tm.tm_min, tm.tm_sec); } #endif
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35847 )
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
Patch Set 1: Code-Review+1
(2 comments)
https://review.coreboot.org/c/coreboot/+/35847/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/35847/1//COMMIT_MSG@9 PS1, Line 9: while print for printing?
https://review.coreboot.org/c/coreboot/+/35847/1//COMMIT_MSG@9 PS1, Line 9: print printing
Hello Angel Pons, Paul Menzel, build bot (Jenkins), Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35847
to look at the new patch set (#2).
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
coreinfo/coreinfo.c: Provide information of time format
Specify Coordinated Universal Time (UTC) time format while printing date and time in the coreinfo payload.
Change-Id: I359cef7697daf5d92d2c9fb58bf75c5b1345e982 Signed-off-by: Sourabh Kashyap sourabhka@hcl.com --- M payloads/coreinfo/coreinfo.c 1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/47/35847/2
Name of user not set #1002476 has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35847 )
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
Patch Set 2:
(2 comments)
Done
https://review.coreboot.org/c/coreboot/+/35847/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/35847/1//COMMIT_MSG@9 PS1, Line 9: print
printing
Ack
https://review.coreboot.org/c/coreboot/+/35847/1//COMMIT_MSG@9 PS1, Line 9: while print
for printing?
Ack
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35847 )
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/35847/2/payloads/coreinfo/coreinfo.... File payloads/coreinfo/coreinfo.c:
https://review.coreboot.org/c/coreboot/+/35847/2/payloads/coreinfo/coreinfo.... PS2, Line 127: - Why do you split it into three calls? Can't you just add " UTC" in here and adapt the x offset?
Hello HAOUAS Elyes, Angel Pons, Stefan Reinauer, Paul Menzel, build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35847
to look at the new patch set (#3).
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
coreinfo/coreinfo.c: Provide information of time format
Specify Coordinated Universal Time (UTC) time format while printing date and time in the coreinfo payload.
Change-Id: I359cef7697daf5d92d2c9fb58bf75c5b1345e982 Signed-off-by: Himanshu Sahdev himanshusah@hcl.com --- M payloads/coreinfo/coreinfo.c 1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/47/35847/3
Name of user not set #1002476 has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35847 )
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
Patch Set 3:
(1 comment)
Done!
https://review.coreboot.org/c/coreboot/+/35847/2/payloads/coreinfo/coreinfo.... File payloads/coreinfo/coreinfo.c:
https://review.coreboot.org/c/coreboot/+/35847/2/payloads/coreinfo/coreinfo.... PS2, Line 127: -
Why do you split it into three calls? Can't you just add " UTC" in here and adapt the x offset?
Ack
Hello HAOUAS Elyes, Angel Pons, Stefan Reinauer, Paul Menzel, build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35847
to look at the new patch set (#4).
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
coreinfo/coreinfo.c: Provide information of time format
Specify Coordinated Universal Time (UTC) time format while printing date and time in the coreinfo payload.
Change-Id: I359cef7697daf5d92d2c9fb58bf75c5b1345e982 Signed-off-by: Sourabh Kashyap sourabhka@hcl.com --- M payloads/coreinfo/coreinfo.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/47/35847/4
Hello HAOUAS Elyes, Angel Pons, Stefan Reinauer, Paul Menzel, build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35847
to look at the new patch set (#5).
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
coreinfo/coreinfo.c: Provide information of time format
Specify Coordinated Universal Time (UTC) time format while printing date and time in the coreinfo payload.
Change-Id: I359cef7697daf5d92d2c9fb58bf75c5b1345e982 Signed-off-by: Himanshu Sahdev himanshusah@hcl.com --- M payloads/coreinfo/coreinfo.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/47/35847/5
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35847 )
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
Patch Set 5: Code-Review+1
Martin L Roth has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/35847?usp=email )
Change subject: coreinfo/coreinfo.c: Provide information of time format ......................................................................
Abandoned
This patch has not been touched in over 12 months. Anyone who wants to take over work on this patch, please feel free to restore it and do any work needed to get it merged. If you create a new patch based on this work, please credit the original author.