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 <vboot_struct.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 int load_kernel(LoadKernelParams *params, uint8_t *kernel_sign_key_blob, |
| 19 void *kernel_buffer, uint64_t kernel_buffer_size, |
| 20 uint64_t boot_flags); |
| 21 |
| 22 #endif /* __CHROMEOS_LOAD_UTIL__ */ |
OLD | NEW |