1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-03 06:53:18 +02:00

flashrom.c: Delete legacy erase and write logic

Current code path for erase and write has been enabled in the tree
since May 2023, which is more than 1 year ago (15 months ago),
and legacy path has been disabled since the same time.

Current logic has been officially released in v1.4.0 in July 2024.

Change-Id: I08fd686fecf6a5313eea2d66b368661c664f4800
Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/83846
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aarya <aarya.chaumal@gmail.com>
Reviewed-by: Peter Marheine <pmarheine@chromium.org>
This commit is contained in:
Anastasia Klimchuk
2024-08-09 19:31:11 +10:00
parent 213fdb0f9f
commit 5ddd3b55fc
2 changed files with 1 additions and 369 deletions

View File

@ -151,7 +151,7 @@ int create_erase_layout(struct flashctx *const flashctx, struct erase_layout **e
* @param region_start pointer to start address of the region to align
* @param region_end pointer to end address of the region to align
*
* This function aligns start and end address of the region (in struct walk_info)
* This function aligns start and end address of the region
* to some erase sector boundaries and modify the region start and end addresses
* to match nearest erase sector boundaries. This function will be used in the
* new algorithm for erase function selection.