From 091c7b17f09f287da115ca247d39e7128158a581 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Thu, 26 Mar 2015 16:58:49 -0700 Subject: futility: put all the BIOS stuff into a separate file This moves the functions that handle BIOS file types into a separate set of source files. BIOSes are constructed from other components arranged in particular ways, so they shouldn't be mixed in with the code specifically for those components. BUG=chromium:231574 BRANCH=none TEST=make runtests Signed-off-by: Bill Richardson Change-Id: I15c3fec61498925f9b8c672092fd97e7ea2d90e9 Reviewed-on: https://chromium-review.googlesource.com/262898 Reviewed-by: Randall Spangler --- futility/vb1_helper.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'futility/vb1_helper.h') diff --git a/futility/vb1_helper.h b/futility/vb1_helper.h index 2cf71f4e..59732e7a 100644 --- a/futility/vb1_helper.h +++ b/futility/vb1_helper.h @@ -6,6 +6,11 @@ #ifndef VBOOT_REFERENCE_FUTILITY_VB1_HELPER_H_ #define VBOOT_REFERENCE_FUTILITY_VB1_HELPER_H_ +/* Display a public key with variable indentation */ +void show_pubkey(VbPublicKey *pubkey, const char *sp); + +/* Other random functions needed for backward compatibility */ + uint8_t *ReadConfigFile(const char *config_file, uint64_t *config_size); uint8_t *CreateKernelBlob(uint8_t *vmlinuz_buf, uint64_t vmlinuz_size, -- cgit v1.2.1