From bb297f733dc78a22d6ee0eb37560207e0c2d424a Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Sat, 11 Jul 2009 18:05:42 +0000 Subject: Add an optional flash port parameter for IT87* SPI controllers in standalone programmer mode If the parameter is set, the IT87* SPI driver will set the I/O base port of the IT87* SPI controller interface to the port specified in the parameter. Usage: flashrom -p it87spi=port=0x820 Corresponding to flashrom svn r646. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Uwe Hermann --- flashrom.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'flashrom.c') diff --git a/flashrom.c b/flashrom.c index af8281e..95db7d9 100644 --- a/flashrom.c +++ b/flashrom.c @@ -647,6 +647,8 @@ int main(int argc, char *argv[]) pcidev_bdf = strdup(optarg + 8); } else if (strncmp(optarg, "it87spi", 7) == 0) { programmer = PROGRAMMER_IT87SPI; + if (optarg[7] == '=') + it87opts = strdup(optarg + 8); } else if (strncmp(optarg, "ft2232spi", 9) == 0) { programmer = PROGRAMMER_FT2232SPI; if (optarg[9] == '=') -- cgit v1.1