mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-24 02:05:01 +00:00
This is part 4 of a series of changes to rearrange the vboot2 library
so that it's possible to start using the new-style data structs. This
change moves knowledge of the old vboot1 data structs into lib20; 2lib
now contains only code which is common to both vboot2.x libraries
(that is, code which is data structure version agnostic).
No functional changes; just rearranging code and tests.
BUG=chromium:423882
BRANCH=none
TEST=make runtests && VBOOT2=1 make runtests (works with/withoug VBOOT2 flag)
And compile firmware for veyron_pinky
CQ-DEPEND=CL:233051
Change-Id: I8f9e67157575e5be14952ef4809c3dfafd92596d
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/233021
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
32 lines
880 B
C
32 lines
880 B
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* APIs between calling firmware and vboot_reference
|
|
*
|
|
* DO NOT INCLUDE THE HEADERS BELOW DIRECTLY! ONLY INCLUDE THIS FILE!
|
|
*/
|
|
|
|
#ifndef VBOOT_VB2_API_H_
|
|
#define VBOOT_VB2_API_H_
|
|
|
|
/* Standard APIs */
|
|
#include "../2lib/include/2api.h"
|
|
|
|
/*
|
|
* Coreboot should not need access to vboot2 internals. But right now it does.
|
|
* At least this forces it to do so through a relatively narrow hole so vboot2
|
|
* refactoring can continue.
|
|
*
|
|
* Please do not rip this into a wider hole, or expect this hole to continue.
|
|
*
|
|
* TODO: Make cleaner APIs to this stuff.
|
|
*/
|
|
#ifdef NEED_VB20_INTERNALS
|
|
#include "../2lib/include/2struct.h"
|
|
#include "../lib20/include/vb2_struct.h"
|
|
#endif
|
|
|
|
#endif /* VBOOT_VB2_API_H_ */
|