util/liveiso/nixos: Install various extractor tools
[coreboot.git] / util / smmstoretool / fv.h
blobb28db4cbf26bdb848f4929d3525392ec2b1c66e2
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #ifndef SMMSTORETOOL__FV_H__
4 #define SMMSTORETOOL__FV_H__
6 #include <stdbool.h>
8 #include "utils.h"
10 // Firmware volume is what's stored in SMMSTORE region of CBFS. It wraps
11 // variable store.
13 bool fv_init(struct mem_range_t fv);
15 bool fv_parse(struct mem_range_t fv,
16 struct mem_range_t *var_store,
17 bool *auth_vars);
19 #endif // SMMSTORETOOL__FV_H__