summaryrefslogtreecommitdiffstats
path: root/programmer.h
diff options
context:
space:
mode:
authorStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2012-09-24 21:29:29 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2012-09-24 21:29:29 +0000
commitfa9fa7131a4c5a0bc49c17a428bb0388f9bc88e7 (patch)
tree183ed67b551d6e3c31010bed83cb7e6bc0db2af2 /programmer.h
parent4e6d346c6ec0188aa309bfa2fe86ce52b9487ec6 (diff)
downloadast2050-flashrom-fa9fa7131a4c5a0bc49c17a428bb0388f9bc88e7.zip
ast2050-flashrom-fa9fa7131a4c5a0bc49c17a428bb0388f9bc88e7.tar.gz
Fix flashrom running on boards with coreboot
In r1577 we removed the discrimination of coreboot IDs and user-specified mainboards. The problem is that the board enable code required to find a board enable if either of these model strings were set. Therefore boards running coreboot that do not need a board enable failed to execute flashrom since then. This patch fixes this by handling coreboot IDs and user-supplied IDs differently again. Corresponding to flashrom svn r1605. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Idwer Vollering <vidwer@gmail.com>
Diffstat (limited to 'programmer.h')
-rw-r--r--programmer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/programmer.h b/programmer.h
index 51b9c40..dedec67 100644
--- a/programmer.h
+++ b/programmer.h
@@ -256,7 +256,7 @@ void sio_write(uint16_t port, uint8_t reg, uint8_t data);
void sio_mask(uint16_t port, uint8_t reg, uint8_t data, uint8_t mask);
void board_handle_before_superio(void);
void board_handle_before_laptop(void);
-int board_flash_enable(const char *vendor, const char *model);
+int board_flash_enable(const char *vendor, const char *model, const char *cb_vendor, const char *cb_model);
/* chipset_enable.c */
int chipset_flash_enable(void);
OpenPOWER on IntegriCloud