Rebrand to flashprog and update URLs
Mostly automated `sed` work. As of now, URLs to the old wiki are broken
either way, so changing them shouldn't hurt. Other URLs (e.g. to mailing
list archives) were hopefully filtered correctly.
Change-Id: I9d43bfd0e675eff2fcbad05f304b9ce9f5006b08
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.sourcearcade.org/c/flashrom-stable/+/21
diff --git a/spi25.c b/spi25.c
index 6f17481..e4efd1c 100644
--- a/spi25.c
+++ b/spi25.c
@@ -629,7 +629,7 @@
return spi25_function_opcode_list[i].func;
}
msg_cinfo("%s: unknown erase opcode (0x%02x). Please report "
- "this at flashrom-stable@flashrom.org\n", __func__, opcode);
+ "this at flashprog@flashprog.org\n", __func__, opcode);
return NULL;
}
@@ -750,7 +750,7 @@
/* The data sheet requires a start address with the low bit cleared. */
if (start % 2) {
msg_cerr("%s: start address not even!\n"
- "Please report a bug at flashrom-stable@flashrom.org\n",
+ "Please report a bug at flashprog@flashprog.org\n",
__func__);
if (spi_chip_write_1(flash, buf, start, start % 2))
return SPI_GENERIC_ERROR;
@@ -761,7 +761,7 @@
/* The data sheet requires total AAI write length to be even. */
if (len % 2) {
msg_cerr("%s: total write length not even!\n"
- "Please report a bug at flashrom-stable@flashrom.org\n",
+ "Please report a bug at flashprog@flashprog.org\n",
__func__);
/* Do not return an error for now. */
//return SPI_GENERIC_ERROR;