Hi Jonathan, I've swapped both id blocks around, so it could actually work this time :)
Luc Verhaegen.
>From 518433bd67576fadce4f8f25399a61238dde5c7a Mon Sep 17 00:00:00 2001 From: Luc Verhaegen <[email protected]> Date: Sat, 28 Nov 2009 20:06:01 +0100 Subject: [PATCH] Board: Make Acorp 6A815EPD autodetectable. Add subsystem id for hostbridge match for Acorp 6A815EPD; even though it reads "intel", NULL, this, together with the promise ultra100 chip and subsystem ids, should form a unique enough match for us to depend upon. This version swaps both id blocks around to pass through board id matching code unharmed. Future board id matching code will no longer stop such things, but for now, we need to still do this. Signed-off-by: Luc Verhaegen <[email protected]> --- board_enable.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board_enable.c b/board_enable.c index e6d37c1..aa18e71 100644 --- a/board_enable.c +++ b/board_enable.c @@ -1147,7 +1147,7 @@ static int board_asus_a7v600x(const char *name) 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, 0x2926, 0x147b, 0x1084, 0x11ab, 0x4364, 0x147b, 0x1084, NULL, NULL, "Abit", "IP35", intel_ich_gpio16_raise}, - {0x8086, 0x1130, 0, 0, 0x105a, 0x0d30, 0x105a, 0x4d33, "acorp", "6a815epd", "Acorp", "6A815EPD", board_acorp_6a815epd}, + {0x105a, 0x0d30, 0x105a, 0x4d33, 0x8086, 0x1130, 0x8086, 0, NULL, NULL, "Acorp", "6A815EPD", board_acorp_6a815epd}, {0x8086, 0x24D4, 0x1849, 0x24D0, 0x8086, 0x24D5, 0x1849, 0x9739, NULL, NULL, "ASRock", "P4i65GV", intel_ich_gpio23_raise}, {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}, -- 1.6.0.2
_______________________________________________ flashrom mailing list [email protected] http://www.flashrom.org/mailman/listinfo/flashrom
