Ravi kumar has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45213 )
Change subject: chromeos: Provide common watchdog reboot support in romstage ......................................................................
chromeos: Provide common watchdog reboot support in romstage
Signed-off-by: Ravi Kumar Bokka rbokka@codeaurora.org Change-Id: I2a1f1411e9d58a0738e0e8057f5b1ad049bf03e3 --- M src/vendorcode/google/chromeos/Makefile.inc 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/13/45213/1
diff --git a/src/vendorcode/google/chromeos/Makefile.inc b/src/vendorcode/google/chromeos/Makefile.inc index b429d6b..927b90b 100644 --- a/src/vendorcode/google/chromeos/Makefile.inc +++ b/src/vendorcode/google/chromeos/Makefile.inc @@ -15,3 +15,4 @@ bootblock-y += watchdog.c verstage-y += watchdog.c ramstage-y += watchdog.c +romstage-y += watchdog.c
Julius Werner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/45213 )
Change subject: chromeos: Provide common watchdog reboot support in romstage ......................................................................
Patch Set 3: Code-Review+2
(1 comment)
https://review.coreboot.org/c/coreboot/+/45213/3/src/vendorcode/google/chrom... File src/vendorcode/google/chromeos/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/45213/3/src/vendorcode/google/chrom... PS3, Line 18: romstage-y += watchdog.c This patch needs to be reordered before the others so that mark_watchdog_tombstone() is already available in the patch that adds a call to it.
Hello build bot (Jenkins), Patrick Georgi, Martin Roth, mturney mturney, Julius Werner, mturney mturney,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/45213
to look at the new patch set (#5).
Change subject: chromeos: Provide common watchdog reboot support in romstage ......................................................................
chromeos: Provide common watchdog reboot support in romstage
Signed-off-by: Ravi Kumar Bokka rbokka@codeaurora.org Change-Id: I2a1f1411e9d58a0738e0e8057f5b1ad049bf03e3 --- M src/vendorcode/google/chromeos/Makefile.inc 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/13/45213/5
Julius Werner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/45213 )
Change subject: chromeos: Provide common watchdog reboot support in romstage ......................................................................
Patch Set 6:
(1 comment)
https://review.coreboot.org/c/coreboot/+/45213/3/src/vendorcode/google/chrom... File src/vendorcode/google/chromeos/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/45213/3/src/vendorcode/google/chrom... PS3, Line 18: romstage-y += watchdog.c
This patch needs to be reordered before the others so that mark_watchdog_tombstone() is already avai […]
Done
Julius Werner has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/45213 )
Change subject: chromeos: Provide common watchdog reboot support in romstage ......................................................................
Patch Set 6: Code-Review+2
Julius Werner has submitted this change. ( https://review.coreboot.org/c/coreboot/+/45213 )
Change subject: chromeos: Provide common watchdog reboot support in romstage ......................................................................
chromeos: Provide common watchdog reboot support in romstage
Signed-off-by: Ravi Kumar Bokka rbokka@codeaurora.org Change-Id: I2a1f1411e9d58a0738e0e8057f5b1ad049bf03e3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/45213 Reviewed-by: Julius Werner jwerner@chromium.org Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/vendorcode/google/chromeos/Makefile.inc 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Julius Werner: Looks good to me, approved
diff --git a/src/vendorcode/google/chromeos/Makefile.inc b/src/vendorcode/google/chromeos/Makefile.inc index b429d6b..e17236d 100644 --- a/src/vendorcode/google/chromeos/Makefile.inc +++ b/src/vendorcode/google/chromeos/Makefile.inc @@ -14,4 +14,5 @@
bootblock-y += watchdog.c verstage-y += watchdog.c +romstage-y += watchdog.c ramstage-y += watchdog.c