db511207ed
This change creates a nice and clean API for issuing fastboot commands without using the fastboot tool itself. Test: fastboot tool itself (now using libfastboot2) on sailfish, walleye, and other devices. Test: flash bootloader bootloader.img Test: flash radio radio.img Test: -w update img.zip Test: Manually getvar and reboot commands. Bug: 111126621 Change-Id: I0022536b204ce0c5ad8329367fd522fa3c57877d
77 lines
3.2 KiB
C++
77 lines
3.2 KiB
C++
/*
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "bootimg_utils.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
void bootimg_set_cmdline(boot_img_hdr_v1* h, const std::string& cmdline) {
|
|
if (cmdline.size() >= sizeof(h->cmdline)) die("command line too large: %zu", cmdline.size());
|
|
strcpy(reinterpret_cast<char*>(h->cmdline), cmdline.c_str());
|
|
}
|
|
|
|
boot_img_hdr_v1* mkbootimg(void* kernel, int64_t kernel_size, void* ramdisk, int64_t ramdisk_size,
|
|
void* second, int64_t second_size, size_t base,
|
|
const boot_img_hdr_v1& src, int64_t* bootimg_size) {
|
|
const size_t page_mask = src.page_size - 1;
|
|
|
|
int64_t header_actual = (sizeof(boot_img_hdr_v1) + page_mask) & (~page_mask);
|
|
int64_t kernel_actual = (kernel_size + page_mask) & (~page_mask);
|
|
int64_t ramdisk_actual = (ramdisk_size + page_mask) & (~page_mask);
|
|
int64_t second_actual = (second_size + page_mask) & (~page_mask);
|
|
|
|
*bootimg_size = header_actual + kernel_actual + ramdisk_actual + second_actual;
|
|
|
|
boot_img_hdr_v1* hdr = reinterpret_cast<boot_img_hdr_v1*>(calloc(*bootimg_size, 1));
|
|
if (hdr == nullptr) die("couldn't allocate boot image: %" PRId64 " bytes", *bootimg_size);
|
|
|
|
*hdr = src;
|
|
memcpy(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE);
|
|
|
|
hdr->kernel_size = kernel_size;
|
|
hdr->ramdisk_size = ramdisk_size;
|
|
hdr->second_size = second_size;
|
|
|
|
hdr->kernel_addr += base;
|
|
hdr->ramdisk_addr += base;
|
|
hdr->second_addr += base;
|
|
hdr->tags_addr += base;
|
|
|
|
if (hdr->header_version != 0) {
|
|
hdr->header_size = sizeof(boot_img_hdr_v1);
|
|
}
|
|
|
|
memcpy(hdr->magic + hdr->page_size, kernel, kernel_size);
|
|
memcpy(hdr->magic + hdr->page_size + kernel_actual, ramdisk, ramdisk_size);
|
|
memcpy(hdr->magic + hdr->page_size + kernel_actual + ramdisk_actual, second, second_size);
|
|
return hdr;
|
|
}
|