Anastasia Klimchuk has submitted this change. ( 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 false to enable erase path optimisation by default.
Change-Id: Ie13e43b18b20dbb956b569e554953a19eb32ea22 Signed-off-by: Aarya Chaumal aarya.chaumal@gmail.com Reviewed-on: https://review.coreboot.org/c/flashrom/+/74872 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Anastasia Klimchuk aklm@chromium.org --- M flashrom.c 1 file changed, 17 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Anastasia Klimchuk: Looks good to me, approved
diff --git a/flashrom.c b/flashrom.c index faffe51..19afb54 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;