blob: d3993f5c8143296c08ae3f9e4f926664d957c398 [file] [log] [blame]
Elliott Hughes253c18d2015-03-18 22:47:09 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29#ifndef _FASTBOOT_BOOTIMG_UTILS_H_
30#define _FASTBOOT_BOOTIMG_UTILS_H_
31
32#include <bootimg.h>
Elliott Hughesfc797672015-04-07 20:12:50 -070033#include <inttypes.h>
34#include <sys/types.h>
Elliott Hughes253c18d2015-03-18 22:47:09 -070035
Hridya Valsaraju88de5552018-03-30 16:15:33 -070036void bootimg_set_cmdline(boot_img_hdr_v1* h, const char* cmdline);
37boot_img_hdr_v1* mkbootimg(void* kernel, int64_t kernel_size, off_t kernel_offset, void* ramdisk,
38 int64_t ramdisk_size, off_t ramdisk_offset, void* second,
39 int64_t second_size, off_t second_offset, size_t page_size, size_t base,
40 off_t tags_offset, uint32_t header_version, int64_t* bootimg_size);
Elliott Hughes253c18d2015-03-18 22:47:09 -070041
42#endif