1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 07:02:34 +02:00

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>
This commit is contained in:
Aarya Chaumal 2023-05-01 18:13:22 +05:30 committed by Anastasia Klimchuk
parent 083c5c2fe3
commit 42b6346571

View File

@ -35,7 +35,7 @@
#include "chipdrivers.h" #include "chipdrivers.h"
#include "erasure_layout.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; const char flashrom_version[] = FLASHROM_VERSION;