blob: fb3d6545f8d1c66854f7f33f3343a5cd5eab0b6b [file] [log] [blame]
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#ifndef __VBOOT_SYMBOLS_H__
17#define __VBOOT_SYMBOLS_H__
18
19extern u8 _vboot2_work[];
20extern u8 _evboot2_work[];
21#define _vboot2_work_size (_evboot2_work - _vboot2_work)
22
23/* Careful: _e<stage> and _<stage>_size only defined for the current stage! */
24extern u8 _verstage[];
25extern u8 _everstage[];
26#define _verstage_size (_everstage - _verstage)
27
28#endif /* __VBOOT_SYMBOLS_H__ */