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/pcidev.c b/pcidev.c
index 9ffe05c..2c6bbed 100644
--- a/pcidev.c
+++ b/pcidev.c
@@ -142,7 +142,7 @@
 		addr &= PCI_ROM_ADDRESS_MASK;
 		break;
 	case TYPE_UNKNOWN:
-		msg_perr("BAR type unknown, please report a bug at flashrom@flashrom.org\n");
+		msg_perr("BAR type unknown, please report a bug at flashrom-stable@flashrom.org\n");
 	}
 
 	return (uintptr_t)addr;
@@ -152,7 +152,8 @@
 {
 	if (pacc == NULL) {
 		msg_perr("%s: Tried to cleanup an invalid PCI context!\n"
-			 "Please report a bug at flashrom@flashrom.org\n", __func__);
+			 "Please report a bug at flashrom-stable@flashrom.org\n",
+			 __func__);
 		return 1;
 	}
 	pci_cleanup(pacc);
@@ -164,7 +165,7 @@
 {
 	if (pacc != NULL) {
 		msg_perr("%s: Tried to allocate a new PCI context, but there is still an old one!\n"
-			 "Please report a bug at flashrom@flashrom.org\n", __func__);
+			 "Please report a bug at flashrom-stable@flashrom.org\n", __func__);
 		return 1;
 	}
 	pacc = pci_alloc();     /* Get the pci_access structure */
@@ -222,8 +223,8 @@
 			if (devs[i].status == NT)
 				msg_pinfo("===\nThis PCI device is UNTESTED. Please report the 'flashrom -p "
 					  "xxxx' output\n"
-					  "to flashrom@flashrom.org if it works for you. Please add the name "
-					  "of your\n"
+					  "to flashrom-stable@flashrom.org if it works for you. Please add "
+					  "the name of your\n"
 					  "PCI device to the subject. Thank you for your help!\n===\n");
 
 			/* FIXME: We should count all matching devices, not
@@ -271,7 +272,7 @@
 	struct undo_pci_write_data *data = p;
 	if (pacc == NULL || data->dev == NULL) {
 		msg_perr("%s: Tried to undo PCI writes without a valid PCI %s!\n"
-			"Please report a bug at flashrom@flashrom.org\n",
+			"Please report a bug at flashrom-stable@flashrom.org\n",
 			__func__, data->dev == NULL ? "device" : "context");
 		return 1;
 	}