So you need to add one entry in flash_enable.c

static FLASH_ENABLE enables[] = {
        {0x1039, 0x0630, "sis630", enable_flash_sis630},
        {0x8086, 0x2480, "E7500", enable_flash_e7500}, // should use SB name
---> add one entry to you device id
        {0x8086, 0x24d0, "ICH5ER", enable_flash_e7500},

        {0x8086, 0x24c0, "ICH4", enable_flash_ich4}, // this line is not
right
        {0x1106, 0x8231, "VT8231", enable_flash_vt8231},
        {0x1106, 0x3177, "VT8235", enable_flash_vt8235},
        {0x1078, 0x0100, "CS5530", enable_flash_cs5530},
        {0x100b, 0x0510, "SC1100", enable_flash_sc1100},
        {0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
        {0x1022, 0x7468, "AMD8111", enable_flash_amd8111}, }; 

Also you need to check your MB if there is any jumper to disable the flash
write or boot block write protection.

Some MB even use GPIO to disable that. You need to enable that via GPIO in
SB or Superio.

YH
_______________________________________________
Linuxbios mailing list
Linuxbios@clustermatic.org
http://www.clustermatic.org/mailman/listinfo/linuxbios

Reply via email to