Aarya has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/74872 )
Change subject: flashrom.c: Enable erase path optimisation ......................................................................
flashrom.c: Enable erase path optimisation
Set the use_legacy_erase_path flag to flase to enable erase path optmisatoptimisation by default.
Change-Id: Ie13e43b18b20dbb956b569e554953a19eb32ea22 Signed-off-by: Aarya Chaumal aarya.chaumal@gmail.com --- M flashrom.c 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/72/74872/1
diff --git a/flashrom.c b/flashrom.c index 07ed0df..7b0ceed 100644 --- a/flashrom.c +++ b/flashrom.c @@ -35,7 +35,7 @@ #include "chipdrivers.h" #include "erasure_layout.h"
-static bool use_legacy_erase_path = true; +static bool use_legacy_erase_path = false;
const char flashrom_version[] = FLASHROM_VERSION;