Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: include/chromeos/load_util.h

Issue 6628009: Add a wrapper function of LoadKernel() (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/u-boot-next.git@chromeos-v2010.09
Patch Set: Fix bug found when integrated with recovery firmware Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 * Note: It will malloc a space for storing gbb_data. It is caller's decision
19 * and responsibility to free this space.
20 */
21 int load_kernel_wrapper(LoadKernelParams *params, uint64_t boot_flags);
22
23 #endif /* __CHROMEOS_LOAD_UTIL__ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698