Ron,
Please commit the changes in tyan dir to make tyan MB to work with 1.1.6 that Eric committed today.
Only two is outside of tyan dir.
Src/southbridge/amd/amd8131/amd8131_bridge.c
static void ioapic_enable(device_t dev) { uint32_t value; value = pci_read_config32(dev, 0x44); if (dev->enable) { value |= ((1 << 1) | (1 << 0)); } else { value &= ~((1 << 1) | (1 << 0)); } pci_write_config32(dev, 0x44, value);
//BY LYH value = pci_read_config32(dev, 0x4); value |= 6; pci_write_config32(dev, 0x4, value); //BY LYH END }
The other one is amd8151_agp.c
Regards
YH