Change references to flashrom-stable
Adapt all mentions of the mailing list and also the version print.
Change-Id: Ib4a3271422ee6cf4d0efb8c3fa858b66a22c0a33
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70922
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/dediprog.c b/dediprog.c
index e18356b..841cc02 100644
--- a/dediprog.c
+++ b/dediprog.c
@@ -375,8 +375,8 @@
const struct dediprog_data *dp_data = flash->mst->spi.data;
if (count >= 1 << 16) {
- msg_perr("%s: Unsupported transfer length of %u blocks! "
- "Please report a bug at flashrom@flashrom.org\n",
+ msg_perr("%s: Unsupported transfer length of %u blocks!\n"
+ "Please report a bug at flashrom-stable@flashrom.org\n",
__func__, count);
return 1;
}
@@ -459,7 +459,8 @@
return 0;
if ((start % chunksize) || (len % chunksize)) {
- msg_perr("%s: Unaligned start=%i, len=%i! Please report a bug at flashrom@flashrom.org\n",
+ msg_perr("%s: Unaligned start=%i, len=%i!\n"
+ "Please report a bug at flashrom-stable@flashrom.org\n",
__func__, start, len);
return 1;
}
@@ -609,13 +610,15 @@
*/
if (chunksize != 256) {
msg_perr("%s: Chunk sizes other than 256 bytes are unsupported, chunksize=%u!\n"
- "Please report a bug at flashrom@flashrom.org\n", __func__, chunksize);
+ "Please report a bug at flashrom-stable@flashrom.org\n",
+ __func__, chunksize);
return 1;
}
if ((start % chunksize) || (len % chunksize)) {
- msg_perr("%s: Unaligned start=%i, len=%i! Please report a bug "
- "at flashrom@flashrom.org\n", __func__, start, len);
+ msg_perr("%s: Unaligned start=%i, len=%i!\n"
+ "Please report a bug at flashrom-stable@flashrom.org\n",
+ __func__, start, len);
return 1;
}