OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 #ifndef __CHROMEOS_LOAD_UTIL__ | |
8 #define __CHROMEOS_LOAD_UTIL__ | |
9 | |
10 #include <linux/types.h> | |
11 #include <load_kernel_fw.h> | |
12 | |
13 /* | |
14 * Wrapper of LoadKernel() function. Returns the return value of LoadKernel(). | |
15 * | |
16 * See vboot_reference/firmware/include/load_kernel_fw.h for documentation. | |
17 * | |
18 * When LoadKernel() returns LOAD_KERNEL_SUCCESS, the wrapper will malloc a | |
19 * space for storing gbb_data, it is caller's decision and responsibility to | |
20 * free this space. | |
21 * | |
22 * On other return values, the wrapper will set gbb_data to NULL and | |
23 * gbb_size to zero. | |
24 */ | |
25 int load_kernel_wrapper(LoadKernelParams *params, uint64_t boot_flags); | |
Tom Wai-Hong Tam
2011/03/14 09:37:27
It seems confused that we mix loading GBB with loa
Che-Liang Chiou
2011/03/14 10:39:35
Good point! Will do.
| |
26 | |
27 #endif /* __CHROMEOS_LOAD_UTIL__ */ | |
OLD | NEW |