mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 23:22:37 +02:00
Replace freenode references
The flashrom project no longer uses freenode. To avoid having outdated man pages in the future, the contact methods are now listed in the wiki. Change-Id: I75e8f43c50dc4c3feede0250334a877cdaac8103 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/56031 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/68061
This commit is contained in:
parent
4b62efdccf
commit
e8c548c850
8
README
8
README
@ -183,10 +183,6 @@ The official flashrom website is:
|
|||||||
|
|
||||||
http://www.flashrom.org/
|
http://www.flashrom.org/
|
||||||
|
|
||||||
The IRC channel is
|
Available contact methods are
|
||||||
|
|
||||||
#flashrom at irc.freenode.net
|
https://www.flashrom.org/Contact
|
||||||
|
|
||||||
The mailing list address is
|
|
||||||
|
|
||||||
flashrom@flashrom.org
|
|
||||||
|
@ -1277,24 +1277,13 @@ in
|
|||||||
.B "/etc/rc.securelevel"
|
.B "/etc/rc.securelevel"
|
||||||
and rebooting, or rebooting into single user mode.
|
and rebooting, or rebooting into single user mode.
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Please report any bugs to the
|
You can report bugs, ask us questions or send success reports
|
||||||
.MTOB "flashrom@flashrom.org" "flashrom mailing list" .
|
via our communication channels listed here:
|
||||||
|
.URLB "https://www.flashrom.org/Contact" "" .
|
||||||
.sp
|
.sp
|
||||||
We recommend to subscribe first at
|
Also, we provide a
|
||||||
.URLB "https://flashrom.org/mailman/listinfo/flashrom" "" .
|
|
||||||
.sp
|
|
||||||
Many of the developers communicate via the
|
|
||||||
.B "#flashrom"
|
|
||||||
IRC channel on
|
|
||||||
.BR chat.freenode.net .
|
|
||||||
If you don't have an IRC client, you can use the
|
|
||||||
.URLB http://webchat.freenode.net/?channels=flashrom "freenode webchat" .
|
|
||||||
You are welcome to join and ask questions, send us bug and success reports there
|
|
||||||
too. Please provide a way to contact you later (e.g.\& a mail address) and be
|
|
||||||
patient if there is no immediate reaction. Also, we provide a
|
|
||||||
.URLB https://paste.flashrom.org "pastebin service"
|
.URLB https://paste.flashrom.org "pastebin service"
|
||||||
that is very useful when you want to share logs etc.\& without spamming the
|
that is very useful to share logs without spamming the communication channels.
|
||||||
channel.
|
|
||||||
.SS
|
.SS
|
||||||
.B Laptops
|
.B Laptops
|
||||||
.sp
|
.sp
|
||||||
|
16
flashrom.c
16
flashrom.c
@ -1982,16 +1982,16 @@ static void nonfatal_help_message(void)
|
|||||||
#if CONFIG_INTERNAL == 1
|
#if CONFIG_INTERNAL == 1
|
||||||
if (programmer == PROGRAMMER_INTERNAL)
|
if (programmer == PROGRAMMER_INTERNAL)
|
||||||
msg_gerr("This means we have to add special support for your board, programmer or flash\n"
|
msg_gerr("This means we have to add special support for your board, programmer or flash\n"
|
||||||
"chip. Please report this on IRC at chat.freenode.net (channel #flashrom) or\n"
|
"chip. Please report this to the mailing list at flashrom@flashrom.org or on\n"
|
||||||
"mail flashrom@flashrom.org, thanks!\n"
|
"IRC (see https://www.flashrom.org/Contact for details), thanks!\n"
|
||||||
"-------------------------------------------------------------------------------\n"
|
"-------------------------------------------------------------------------------\n"
|
||||||
"You may now reboot or simply leave the machine running.\n");
|
"You may now reboot or simply leave the machine running.\n");
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
msg_gerr("Please check the connections (especially those to write protection pins) between\n"
|
msg_gerr("Please check the connections (especially those to write protection pins) between\n"
|
||||||
"the programmer and the flash chip. If you think the error is caused by flashrom\n"
|
"the programmer and the flash chip. If you think the error is caused by flashrom\n"
|
||||||
"please report this on IRC at chat.freenode.net (channel #flashrom) or\n"
|
"please report this to the mailing list at flashrom@flashrom.org or on IRC (see\n"
|
||||||
"mail flashrom@flashrom.org, thanks!\n");
|
"https://www.flashrom.org/Contact for details), thanks!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void emergency_help_message(void)
|
static void emergency_help_message(void)
|
||||||
@ -1999,14 +1999,14 @@ static void emergency_help_message(void)
|
|||||||
msg_gerr("Your flash chip is in an unknown state.\n");
|
msg_gerr("Your flash chip is in an unknown state.\n");
|
||||||
#if CONFIG_INTERNAL == 1
|
#if CONFIG_INTERNAL == 1
|
||||||
if (programmer == PROGRAMMER_INTERNAL)
|
if (programmer == PROGRAMMER_INTERNAL)
|
||||||
msg_gerr("Get help on IRC at chat.freenode.net (channel #flashrom) or\n"
|
msg_gerr("Get help on IRC (see https://www.flashrom.org/Contact) or mail\n"
|
||||||
"mail flashrom@flashrom.org with the subject \"FAILED: <your board name>\"!\n"
|
"flashrom@flashrom.org with the subject \"FAILED: <your board name>\"!"
|
||||||
"-------------------------------------------------------------------------------\n"
|
"-------------------------------------------------------------------------------\n"
|
||||||
"DO NOT REBOOT OR POWEROFF!\n");
|
"DO NOT REBOOT OR POWEROFF!\n");
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
msg_gerr("Please report this on IRC at chat.freenode.net (channel #flashrom) or\n"
|
msg_gerr("Please report this to the mailing list at flashrom@flashrom.org or\n"
|
||||||
"mail flashrom@flashrom.org, thanks!\n");
|
"on IRC (see https://www.flashrom.org/Contact for details), thanks!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The way to go if you want a delimited list of programmers */
|
/* The way to go if you want a delimited list of programmers */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user