Change in coreboot[master]: Herobrine T32 scripts working in standalone environment

Hello mturney mturney, I'd like you to do a code review. Please visit https://review.coreboot.org/c/coreboot/+/47365 to review the following change. Change subject: Herobrine T32 scripts working in standalone environment ...................................................................... Herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/1 diff --git a/util/qualcomm/scripts/cmm/debug_cb_common.cmm b/util/qualcomm/scripts/cmm/debug_cb_common.cmm index cbcb004..a722864 100644 --- a/util/qualcomm/scripts/cmm/debug_cb_common.cmm +++ b/util/qualcomm/scripts/cmm/debug_cb_common.cmm @@ -126,6 +126,11 @@ else d.load.elf &imgpath /strippart "coreboot" /sourcepath &srcpath /nocode + print "Hacking DDR ranges..." + B::D.S MD:0x1485B000 %LE %Long 0x80000000 + B::D.S MD:0x1485B004 %LE %Long 0 + B::D.S MD:0x1485B008 %LE %Long 0x80000000 + print %String "Now the control is in ROMStage, press enter after debugging to go to next stage" print %String "Press enter to go to next stage" enter diff --git a/util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm b/util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm new file mode 100644 index 0000000..8693a5f --- /dev/null +++ b/util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm @@ -0,0 +1,118 @@ +;============================================================================ +;## SPDX-License-Identifier: GPL-2.0-only +;============================================================================ +; Name: +; debug_cb_trogdor.cmm +; +; Description: +; Debug coreboot trogdor front-end +;============================================================================ + +;============================================================================ +; CMM script variables +;============================================================================ + +LOCAL &TargetPkg + +GLOBAL &BBEntryAddr // Bootblock Entry +GLOBAL &BBExitAddr // Bootblock Exit to Xbl-Sec +GLOBAL &VEREntryAddr // Verstage Entry +GLOBAL &ROMEntryAddr // Romstage Entry +GLOBAL &QCLEntryAddr // QCLstage Entry +GLOBAL &RAMEntryAddr // Ramstage Entry +GLOBAL &BL31EntryAddr // BL31 Entry +GLOBAL &DCEntryAddr // Depthcharge Entry + +GLOBAL &PreRamConsoleAddr +GLOBAL &RamConsoleAddr +GLOBAL &PreRamCbfsCache +GLOBAL &VBoot2Work +GLOBAL &Stack +GLOBAL &Ttb +GLOBAL &Timestamp +GLOBAL &CbmemTop +GLOBAL &PostRamCbfsCache + +GLOBAL &CBTablePtr + +;============================================================================ + +;--------------------------------------------------- +; Entry point +;--------------------------------------------------- +ENTRY &ImageName &RegAddress + + // Later these can be parameterized + &TargetPkg="herobrinePkg" + + // These settings come from .../src/soc/qualcomm/sc7280/memlayout.ld + &BBEntryAddr=0x14819000 + &VEREntryAddr=0x14680000 + &ROMEntryAddr=0x14680000 + &QCLEntryAddr=0x1486c950 + &RAMEntryAddr=0xA0800000 + &BL31EntryAddr=0x80C00000 + &DCEntryAddr=0xF1000000 + &KernelEntryAddr=0xD0000000 + + &PreRamConsoleAddr=0x14834800 + &VBoot2Work=0x1484F000 + &Stack=0x1484B000 + &Ttb=0x1483D000 + &Timestamp=0x1483C800 + &PreRamCbfsCache=0x14823000 + &CbmemTop=0x280000000 + &PostRamCbfsCache=0x9F800000 + // End of memlayout.ld settings + + // Common commands irrespective of &Mode + PATH + &CwDir=os.pwd() + PATH + &CwDir + + // position at top of coreboot tree + // find depth count for source loading + cd ..\..\..\.. + &srcpath=os.pwd() + + +;--------------------------------------------------- +; Setup area and log +;--------------------------------------------------- + area.clear + area.reset + area.create CB_Logs 1000. 8192. + area.select CB_Logs + + area.view CB_Logs + + PRINT %String "Source Path: &srcpath" + + symbol.sourcepath.setbasedir &srcpath\src + + // Make parsing simple, upper-case parameters + &ImageName=STRING.UPR("&ImageName") + if (STR.CP("&ImageName","0X*")) + ( + &RegAddress=&ImageName + &ImageName="" + ) + &RegAddress=STRING.UPR("&RegAddress") + + PRINT %String "ImageName: &ImageName" + PRINT %String "RegAddress: &RegAddress" + + ;sys.d + ;sys.up + b.d + y.reset + + if (STR.CP("&RegAddress","0X*")) + D.S EZAXI:&RegAddress %LE %Long 0x80000000 + + go &BBEntryAddr + wait !run() + + DO debug_cb_common.cmm &TargetPkg &srcpath &xblsrcpath &ImageName + + enddo -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 1 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newchange

Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#3). Change subject: Herobrine T32 scripts working in standalone environment ...................................................................... Herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/3 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 3 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi kumar. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#6). Change subject: HACK herobrine T32 scripts working in standalone environment ...................................................................... HACK herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/6 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 6 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#12). Change subject: HACK herobrine T32 scripts working in standalone environment ...................................................................... HACK herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/12 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 12 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#13). Change subject: HACK herobrine T32 scripts working in standalone environment ...................................................................... HACK herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/13 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 13 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#14). Change subject: HACK herobrine T32 scripts working in standalone environment ...................................................................... HACK herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/14 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 14 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#21). Change subject: HACK herobrine T32 scripts working in standalone environment ...................................................................... HACK herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/21 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 21 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#22). Change subject: HACK herobrine T32 scripts working in standalone environment ...................................................................... HACK herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/22 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 22 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#29). Change subject: HACK herobrine T32 scripts working in standalone environment ...................................................................... HACK herobrine T32 scripts working in standalone environment Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/29 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 29 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#50). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/50 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 50 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, mturney mturney. Hello build bot (Jenkins), mturney mturney, I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#59). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/59 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 59 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-Reviewer: mturney mturney <mturney@codeaurora.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: mturney mturney <mturney@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#71). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/71 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 71 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <mturney@codeaurora.org> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#76). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/76 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 76 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <mturney@codeaurora.org> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#78). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/78 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 78 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <mturney@codeaurora.org> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi, mturney mturney. mturney mturney has uploaded a new patch set (#116) to the change originally created by Ravi kumar. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/116 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 116 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi, mturney mturney. mturney mturney has uploaded a new patch set (#117) to the change originally created by Ravi kumar. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/117 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 117 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi, mturney mturney. mturney mturney has uploaded a new patch set (#125) to the change originally created by Ravi kumar. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/125 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 125 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi, mturney mturney. mturney mturney has uploaded a new patch set (#127) to the change originally created by Ravi kumar. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/127 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 127 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi kumar, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#142). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/142 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 142 Gerrit-Owner: Ravi kumar <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi kumar <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 148: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 148 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Wed, 23 Mar 2022 15:15:49 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 149: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 149 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Thu, 24 Mar 2022 11:43:08 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 150: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 150 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Wed, 30 Mar 2022 02:26:47 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 151: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 151 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Thu, 31 Mar 2022 05:10:59 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 152: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 152 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Wed, 06 Apr 2022 13:57:04 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#153). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/153 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 153 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 153: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 153 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Wed, 06 Apr 2022 14:11:33 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#154). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/154 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 154 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 154: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 154 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Wed, 06 Apr 2022 15:18:20 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#155). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/155 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 155 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 155: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 155 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Thu, 07 Apr 2022 05:13:01 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#156). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/156 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 156 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#157). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/157 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 157 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 156: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 156 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Thu, 07 Apr 2022 06:12:39 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#158). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/158 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 158 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 157: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 157 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Thu, 07 Apr 2022 06:27:01 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Patch Set 158: Verified-1 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 158 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-Comment-Date: Thu, 07 Apr 2022 06:45:30 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment

Attention is currently required from: Shelley Chen, Ravi Kumar Bokka, Sudheer Amrabadi, mturney mturney. Hello build bot (Jenkins), I'd like you to reexamine a change. Please visit https://review.coreboot.org/c/coreboot/+/47365 to look at the new patch set (#165). Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 123 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/165 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 165 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Shelley Chen <shchen@google.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Sudheer Amrabadi <samrabad@codeaurora.org> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi Kumar Bokka, Venkat Thogaru, mturney mturney. Venkat Thogaru has uploaded a new patch set (#219) to the change originally created by Ravi Kumar Bokka. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 132 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/219 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 219 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Venkat Thogaru <thogaru@qualcomm.corp-partner.google.com> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi Kumar Bokka, Venkat Thogaru, mturney mturney. Venkat Thogaru has uploaded a new patch set (#224) to the change originally created by Ravi Kumar Bokka. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 132 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/224 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 224 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Venkat Thogaru <thogaru@qualcomm.corp-partner.google.com> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi Kumar Bokka, Venkat Thogaru, mturney mturney. Venkat Thogaru has uploaded a new patch set (#230) to the change originally created by Ravi Kumar Bokka. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 132 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/230 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 230 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Venkat Thogaru <thogaru@qualcomm.corp-partner.google.com> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi Kumar Bokka, Venkat Thogaru, mturney mturney. Venkat Thogaru has uploaded a new patch set (#231) to the change originally created by Ravi Kumar Bokka. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 132 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/231 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 231 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Venkat Thogaru <thogaru@qualcomm.corp-partner.google.com> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi Kumar Bokka, Venkat Thogaru, mturney mturney. Venkat Thogaru has uploaded a new patch set (#246) to the change originally created by Ravi Kumar Bokka. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 132 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/246 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 246 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Venkat Thogaru <thogaru@qualcomm.corp-partner.google.com> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Attention is currently required from: Ravi Kumar Bokka, Venkat Thogaru, mturney mturney. Venkat Thogaru has uploaded a new patch set (#247) to the change originally created by Ravi Kumar Bokka. ( https://review.coreboot.org/c/coreboot/+/47365 ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... HACK herobrine T32 scripts working in standalone environment HACK Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 --- M util/qualcomm/scripts/cmm/debug_cb_common.cmm A util/qualcomm/scripts/cmm/debug_cb_herobrine.cmm 2 files changed, 132 insertions(+), 0 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/47365/247 -- To view, visit https://review.coreboot.org/c/coreboot/+/47365 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 247 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com> Gerrit-Attention: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Attention: Venkat Thogaru <thogaru@qualcomm.corp-partner.google.com> Gerrit-Attention: mturney mturney <quic_mturney@quicinc.com> Gerrit-MessageType: newpatchset

Martin L Roth has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/47365?usp=email ) Change subject: HACK herobrine T32 scripts working in standalone environment HACK ...................................................................... Abandoned -- To view, visit https://review.coreboot.org/c/coreboot/+/47365?usp=email To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email Gerrit-MessageType: abandon Gerrit-Project: coreboot Gerrit-Branch: main Gerrit-Change-Id: I451344d887c7b6c0983594e4dea4ca2b030d65f1 Gerrit-Change-Number: 47365 Gerrit-PatchSet: 274 Gerrit-Owner: Ravi Kumar Bokka <rbokka@codeaurora.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: Paul Menzel <paulepanter@mailbox.org> Gerrit-CC: mturney mturney <quic_mturney@quicinc.com>
participants (6)
-
build bot (Jenkins) (Code Review)
-
Martin L Roth (Code Review)
-
mturney mturney (Code Review)
-
Ravi kumar (Code Review)
-
Ravi Kumar Bokka (Code Review)
-
Venkat Thogaru (Code Review)