Nico Huber has posted comments on this change. ( https://review.coreboot.org/21923 )
Change subject: Convert flashrom to git
......................................................................
Patch Set 1: Code-Review+2
(2 comments)
https://review.coreboot.org/#/c/21923/1//COMMIT_MSG
Commit Message:
https://review.coreboot.org/#/c/21923/1//COMMIT_MSG@21
PS1, Line 21: white space errors
white-space errors
(I've never understood the rules that you find about it on
the internet. For me everything in English without a dash
reads right-associative. Could be wrong...)
https://review.coreboot.org/#/c/21923/1//COMMIT_MSG@28
PS1, Line 28: - existing signoffs and acks in all new commits
One question here, what if you want to move a commit that was
reviewed on gerrit to another branch (not handled by gerrit)?
The commits likely won't have acks... add them manually, or
change the script to allow Reviewed-by, too?
--
To view, visit https://review.coreboot.org/21923
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: stable
Gerrit-MessageType: comment
Gerrit-Change-Id: I325edb7d9890c412a44ecacb5161268d3dbccc57
Gerrit-Change-Number: 21923
Gerrit-PatchSet: 1
Gerrit-Owner: Stefan Tauner <stefan.tauner(a)gmx.at>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 10 Oct 2017 00:00:19 +0000
Gerrit-HasComments: Yes
Stefan Tauner has posted comments on this change. ( https://review.coreboot.org/21835 )
Change subject: +/-2 for stefanct, exclusive tag pushes for flashrom devs
......................................................................
Patch Set 2: Verified+1
--
To view, visit https://review.coreboot.org/21835
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: refs/meta/config
Gerrit-MessageType: comment
Gerrit-Change-Id: Ib0e0fbeab6227876b5d54351ee32b0e4c3649a11
Gerrit-Change-Number: 21835
Gerrit-PatchSet: 2
Gerrit-Owner: Stefan Tauner <stefan.tauner(a)gmx.at>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Stefan Tauner <stefan.tauner(a)gmx.at>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Mon, 09 Oct 2017 21:27:38 +0000
Gerrit-HasComments: No
Stefan Tauner has posted comments on this change. ( https://review.coreboot.org/20224 )
Change subject: serial: Support custom baud rates on linux
......................................................................
Patch Set 4:
Our antique centos has some hiccups with this one... http://buildbot.flashrom.org/buildresults/flashrom-000784-UDp/centos-4-amd6…
--
To view, visit https://review.coreboot.org/20224
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: staging
Gerrit-MessageType: comment
Gerrit-Change-Id: I2a20f9182cb85e7bce5d6654a2caf20e6202b195
Gerrit-Change-Number: 20224
Gerrit-PatchSet: 4
Gerrit-Owner: Urja Rannikko <urjaman(a)gmail.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Stefan Tauner <stefan.tauner(a)gmx.at>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Sun, 08 Oct 2017 04:43:28 +0000
Gerrit-HasComments: No
Stefan Tauner has uploaded this change for review. ( https://review.coreboot.org/21920
Change subject: Fix ID of ST M25P05
......................................................................
Fix ID of ST M25P05
The (old) ST (now Micron) M25P05 does only support RES for identification.
Unfortunately, the vendor datasheet states the same ID as for the M25P10
(0x10) and thus flashrom has treated these two as evil twins in the past.
However, real hardware confirmed that the real ID of this chip is 0x05.
Change-Id: Idc75f8cb98e7ef0c47c4527cedcc4da3723bd779
Signed-off-by: Serge Vasilugin <vasilugin(a)yandex.ru>
Tested-by: Serge Vasilugin <vasilugin(a)yandex.ru>
---
M flashchips.h
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/20/21920/1
diff --git a/flashchips.h b/flashchips.h
index 28a155d..15574bb 100644
--- a/flashchips.h
+++ b/flashchips.h
@@ -748,9 +748,9 @@
*/
#define ST_ID 0x20 /* ST / SGS/Thomson / Numonyx (later acquired by Micron) */
#define ST_M25P05A 0x2010
-#define ST_M25P05_RES 0x10 /* Same code as M25P10. */
+#define ST_M25P05_RES 0x05
#define ST_M25P10A 0x2011
-#define ST_M25P10_RES 0x10 /* Same code as M25P05. */
+#define ST_M25P10_RES 0x10
#define ST_M25P20 0x2012
#define ST_M25P20_RES 0x11
#define ST_M25P40 0x2013
--
To view, visit https://review.coreboot.org/21920
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: staging
Gerrit-MessageType: newchange
Gerrit-Change-Id: Idc75f8cb98e7ef0c47c4527cedcc4da3723bd779
Gerrit-Change-Number: 21920
Gerrit-PatchSet: 1
Gerrit-Owner: Stefan Tauner <stefan.tauner(a)gmx.at>