From 470861206100f8f1aab63fda5359c31b3583cd2b Mon Sep 17 00:00:00 2001 From: Hung-Te Lin Date: Fri, 1 Mar 2019 10:45:13 +0800 Subject: fmap: Add FMAP_AREA_PRESERVE When updating firmware, we may need to preserve some sections like VPD, calibration data, ... etc. The logic can be hard-coded in updater as a list of known names, but a better solution is to have that directly declared inside FMAP area flags. To do that, the first step is to apply the changes in flash map (http://crosreview.com/1493767). A new FMAP_AREA_PRESERVE is now defined and will be set in future with new syntax in FMD parser. BUG=chromium:936768 TEST=make; boots an x86 image. Change-Id: Idba5c8d4a4c5d272f22be85d2054c6c0ce020b1b Signed-off-by: Hung-Te Lin Reviewed-on: https://review.coreboot.org/c/31676 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh --- util/cbfstool/flashmap/fmap.c | 1 + 1 file changed, 1 insertion(+) (limited to 'util/cbfstool/flashmap/fmap.c') diff --git a/util/cbfstool/flashmap/fmap.c b/util/cbfstool/flashmap/fmap.c index 733f468390..f1d2fb9e0c 100644 --- a/util/cbfstool/flashmap/fmap.c +++ b/util/cbfstool/flashmap/fmap.c @@ -59,6 +59,7 @@ const struct valstr flag_lut[] = { { FMAP_AREA_STATIC, "static" }, { FMAP_AREA_COMPRESSED, "compressed" }, { FMAP_AREA_RO, "ro" }, + { FMAP_AREA_PRESERVE, "preserve" }, }; /* returns size of fmap data structure if successful, <0 to indicate error */ -- cgit v1.2.3