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 <chromeos/firmware_storage.h> |
| 12 |
| 13 #include <load_kernel_fw.h> |
| 14 |
| 15 /* |
| 16 * Helper function for loading GBB |
| 17 * |
| 18 * On success, return a pointer to a malloc'ed area storing GBB, and caller is |
| 19 * responsible to free this area. On error, return NULL. |
| 20 */ |
| 21 void *load_gbb(firmware_storage_t *file, uint64_t *gbb_size_ptr); |
| 22 |
| 23 /* |
| 24 * Wrapper of LoadKernel() function. Returns the return value of LoadKernel(). |
| 25 * |
| 26 * See vboot_reference/firmware/include/load_kernel_fw.h for documentation. |
| 27 */ |
| 28 int load_kernel_wrapper(LoadKernelParams *params, |
| 29 void *gbb_data, uint64_t gbb_size, uint64_t boot_flags); |
| 30 |
| 31 #endif /* __CHROMEOS_LOAD_UTIL__ */ |
OLD | NEW |