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/sfdp.c b/sfdp.c
index 6867185..e33f7fe 100644
--- a/sfdp.c
+++ b/sfdp.c
@@ -86,7 +86,7 @@
 	if (erasefn == NULL || total_size == 0 || block_size == 0 ||
 	    total_size % block_size != 0) {
 		msg_cdbg("%s: invalid input, please report to "
-			 "flashrom-stable@flashrom.org\n", __func__);
+			 "flashprog@flashprog.org\n", __func__);
 		return 1;
 	}
 
@@ -116,7 +116,7 @@
 		return 0;
 	}
 	msg_cinfo("%s: Not enough space to store another eraser (i=%d).\n"
-		  "Please report this at flashrom-stable@flashrom.org\n",
+		  "Please report this at flashprog@flashprog.org\n",
 		  __func__, i);
 	return 1;
 }
@@ -149,7 +149,7 @@
 		break;
 	case 0x2:
 		msg_cdbg("  4-Byte only addressing (not supported by "
-			 "flashrom).\n");
+			 "flashprog).\n");
 		return 1;
 	default:
 		msg_cdbg("  Required addressing mode (0x%x) not supported.\n",
@@ -236,7 +236,7 @@
 		}
 		if (tmp8 >= 31) {
 			msg_cdbg2("  Block size of erase Sector Type %d (2^%d) "
-				 "is too big for flashrom.\n", j, tmp8);
+				 "is too big for flashprog.\n", j, tmp8);
 			continue;
 		}
 		block_size = 1 << (tmp8); /* block_size = 2 ^ field */