summaryrefslogtreecommitdiff
path: root/firmware/include/gbb_access.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/gbb_access.h')
-rw-r--r--firmware/include/gbb_access.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/firmware/include/gbb_access.h b/firmware/include/gbb_access.h
index 965f7fac..7b11dc85 100644
--- a/firmware/include/gbb_access.h
+++ b/firmware/include/gbb_access.h
@@ -49,35 +49,4 @@ VbError_t VbGbbReadRootKey(VbCommonParams *cparams,
VbError_t VbGbbReadRecoveryKey(VbCommonParams *cparams,
struct VbPublicKey **keyp);
-/**
- * Read the bitmap block header from the GBB
- *
- * @param cparams Vboot common parameters
- * @param hdr The header is placed in this block
- * @return VBERROR_... error, VBERROR_SUCCESS on success,
- */
-VbError_t VbGbbReadBmpHeader(VbCommonParams *cparams,
- struct BmpBlockHeader *hdr);
-
-/**
- * Read a image from the GBB
- *
- * The caller must call free() on *image_datap when finished with it.
- *
- * @param cparams Vboot common parameters
- * @param localization Localization/language number
- * @param screen_index Index of screen to display (VB_SCREEN_...)
- * @param image_num Image number within the screen
- * @param layout Returns layout information (x, y position)
- * @param image_info Returns information about the image (format)
- * @param image_datap Returns a pointer to the image data
- * @param iamge_data_sizep Return size of image data
- * @return VBERROR_... error, VBERROR_SUCCESS on success,
- */
-VbError_t VbGbbReadImage(VbCommonParams *cparams,
- uint32_t localization, uint32_t screen_index,
- uint32_t image_num, struct ScreenLayout *layout,
- struct ImageInfo *image_info, char **image_datap,
- uint32_t *image_data_sizep);
-
#endif