diff options
author | Luc Verhaegen <libv@skynet.be> | 2009-06-09 18:29:30 +0000 |
---|---|---|
committer | Luc Verhaegen <libv@skynet.be> | 2009-06-09 18:29:30 +0000 |
commit | b0d0f631bba0f0ac3beb967d88157c72b543c9be (patch) | |
tree | c43a143e2010a2a56b5665f07a06de21cf17732c | |
parent | 80243c908af8757b0d4ff0179c6de47758e8e911 (diff) | |
download | flashrom-b0d0f631bba0f0ac3beb967d88157c72b543c9be.tar.gz flashrom-b0d0f631bba0f0ac3beb967d88157c72b543c9be.tar.bz2 flashrom-b0d0f631bba0f0ac3beb967d88157c72b543c9be.zip |
Add board enable for Albatron PM266A boards
There are multiple albatron pm266a boards which all share the same bios
image. This means that both the board enable and the subsystem ids are
exactly the same.
The board enable is the same as the epox EP-8K5A2, namely only raising
memw on the superio.
Corresponding to flashrom svn r581.
Signed-off-by: Luc Verhaegen <libv@skynet.be>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Mateusz Murawski <matowy@tlen.pl>
-rw-r--r-- | board_enable.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board_enable.c b/board_enable.c index ab3916c3..6922afaa 100644 --- a/board_enable.c +++ b/board_enable.c @@ -270,7 +270,7 @@ static int board_via_epia_sp(const char *name) } /** - * Suited for EPoX EP-8K5A2. + * Suited for EPoX EP-8K5A2 and Albatron PM266A. */ static int board_epox_ep_8k5a2(const char *name) { @@ -685,6 +685,7 @@ struct board_pciid_enable board_pciid_enables[] = { /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */ {0x8086, 0x1130, 0, 0, 0x105a, 0x0d30, 0x105a, 0x4d33, "acorp", "6a815epd", "Acorp", "6A815EPD", board_acorp_6a815epd}, {0x1022, 0x746B, 0x1022, 0x36C0, 0, 0, 0, 0, "AGAMI", "ARUMA", "agami", "Aruma", w83627hf_gpio24_raise_2e}, + {0x1106, 0x3177, 0x17F2, 0x3177, 0x1106, 0x3148, 0x17F2, 0x3148, NULL, NULL, "Albatron", "PM266A", board_epox_ep_8k5a2}, {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x}, {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x}, {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8-MX SE", board_asus_a7v8x_mx}, |