On 10.09.2010 20:10, Tobias Duehr wrote:
> This is an Acer Aspiron L5100. I've got the BIOS from
> http://support.acer-euro.com/drivers/desktop/aspire_l5100.html
> (R01-B0)
>
>
> flashrom -v
> DMI string system-manufacturer: "Acer                "
> DMI string system-product-name: "Aspire L5100"
> DMI string system-version: "R02-A1"
> DMI string baseboard-manufacturer: "Acer                "
> DMI string baseboard-product-name: "FRS690L             "
> DMI string baseboard-version: " "
> DMI string chassis-type: "Desktop"
>   

Please download latest flashrom from svn, then apply the attached patch,
compile it, then use flashrom to write your backup. This will only work
for restoring the backup.
If you check with "flashrom -V backup.rom" afterwards, it should say
"VERIFIED".

If someone comes up with a patch that fixes the boot block lock, please run
"svn revert"
in the flashrom directory before applying such a patch to make sure no
trace of my patch remains.

Regards,
Carl-Daniel

-- 
http://www.hailfinger.org/

Index: flashrom-saibotd/jedec.c
===================================================================
--- flashrom-saibotd/jedec.c    (Revision 1157)
+++ flashrom-saibotd/jedec.c    (Arbeitskopie)
@@ -430,13 +430,13 @@
        mask = getaddrmask(flash);
 
        programmer_delay(10);
-       if (erase_flash(flash)) {
+       if (0 && erase_flash(flash)) {
                msg_cerr("ERASE FAILED!\n");
                return -1;
        }
 
        msg_cinfo("Programming page: ");
-       for (i = 0; i < flash->total_size; i++) {
+       for (i = 0; i < 448; i++) {
                if ((i & 0x3) == 0)
                        msg_cinfo("address: 0x%08lx", (unsigned long)i * 1024);
 
_______________________________________________
flashrom mailing list
[email protected]
http://www.flashrom.org/mailman/listinfo/flashrom

Reply via email to