aboutsummaryrefslogtreecommitdiff
path: root/src/include/fmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/fmap.h')
-rw-r--r--src/include/fmap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/fmap.h b/src/include/fmap.h
index e575bbf3fc..671e802775 100644
--- a/src/include/fmap.h
+++ b/src/include/fmap.h
@@ -21,6 +21,7 @@
#define _FMAP_H_
#include <region.h>
+#include <fmap_serialized.h>
/* Locate the named area in the fmap and fill in a region device representing
* that area. The region is a sub-region of the readonly boot media. Return
@@ -32,4 +33,8 @@ int fmap_locate_area_as_rdev(const char *name, struct region_device *area);
* < 0 on error. */
int fmap_locate_area(const char *name, struct region *r);
+/* Find fmap area name by offset and size.
+ * Return 0 on success, < 0 on error. */
+int fmap_find_region_name(const struct region * const ar,
+ char name[FMAP_STRLEN]);
#endif