summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2021-11-09 19:44:43 -0600
committerCommit Bot <commit-bot@chromium.org>2021-11-18 04:52:52 +0000
commitee4d6d1321d3b3ce20405f61979f8612388c3ce9 (patch)
tree6307069b0b5f45eec0efd2754d7b1e25d988e400 /test
parentaf71b33619fdd9ec4f787c829b8fdde326ab1920 (diff)
downloadchrome-ec-ee4d6d1321d3b3ce20405f61979f8612388c3ce9.tar.gz
Revert "EFS: Add support for early firmware selection"
This reverts commit 4dcee1c545c31d288b23221d8e07bc452214ce7b. BUG=b:200823466 TEST=make buildall -j Change-Id: I5226e749decc26e1af05172353327a368610def3 Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3273449 Reviewed-by: Vadim Sukhomlinov <sukhomlinov@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/flash.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/flash.c b/test/flash.c
index 7fcb672f29..7ca1e43c3a 100644
--- a/test/flash.c
+++ b/test/flash.c
@@ -364,14 +364,11 @@ static int test_region_info(void)
VERIFY_REGION_INFO(EC_FLASH_REGION_RO,
CONFIG_EC_PROTECTED_STORAGE_OFF +
CONFIG_RO_STORAGE_OFF, CONFIG_RO_SIZE);
- VERIFY_REGION_INFO(EC_FLASH_REGION_ACTIVE,
+ VERIFY_REGION_INFO(EC_FLASH_REGION_RW,
CONFIG_EC_WRITABLE_STORAGE_OFF +
CONFIG_RW_STORAGE_OFF, CONFIG_RW_SIZE);
VERIFY_REGION_INFO(EC_FLASH_REGION_WP_RO,
CONFIG_WP_STORAGE_OFF, CONFIG_WP_STORAGE_SIZE);
- VERIFY_REGION_INFO(EC_FLASH_REGION_UPDATE,
- CONFIG_EC_WRITABLE_STORAGE_OFF +
- CONFIG_RW_STORAGE_OFF, CONFIG_RW_SIZE);
return EC_SUCCESS;
}