1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 06:23:18 +02:00

Replace --mainboard with -p internal:mainboard

NOTE:
The --list-supported-wiki output changed to use -p internal:mainboard=
instead of -m
The --list-supported output changed the heading of the mainboard list
from

Vendor Board   Status  Required option
to
Vendor Board   Status  Required value for
                       -p internal:mainboard=

Fix lb_vendor_dev_from_string() not to write to the supplied string.

Corresponding to flashrom svn r1483.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
Carl-Daniel Hailfinger
2012-01-04 00:48:27 +00:00
parent 9bcf2684d7
commit 2d927fbd7b
9 changed files with 62 additions and 67 deletions

View File

@ -33,18 +33,27 @@
char *lb_part = NULL, *lb_vendor = NULL;
int partvendor_from_cbtable = 0;
void lb_vendor_dev_from_string(char *boardstring)
/* Parse the [<vendor>:]<board> string specified by the user as part of
* -p internal:mainboard=[<vendor>:]<board> and set lb_vendor and lb_part
* to the extracted values.
* Note: strtok modifies the original string, so we work on a copy and allocate
* memory for lb_vendor and lb_part with strdup.
*/
void lb_vendor_dev_from_string(const char *boardstring)
{
/* strtok may modify the original string. */
char *tempstr = strdup(boardstring);
char *tempstr2 = NULL;
strtok(boardstring, ":");
strtok(tempstr, ":");
tempstr2 = strtok(NULL, ":");
if (tempstr2) {
lb_vendor = boardstring;
lb_part = tempstr2;
lb_vendor = strdup(tempstr);
lb_part = strdup(tempstr2);
} else {
lb_vendor = NULL;
lb_part = boardstring;
lb_part = strdup(tempstr);
}
free(tempstr);
}
static unsigned long compute_checksum(void *addr, unsigned long length)