You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
/*
|
|
* (C) Copyright 2019 Rockchip Electronics Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <android_image.h>
|
|
#include <blk.h>
|
|
#include <boot_rkimg.h>
|
|
#include <command.h>
|
|
#include <malloc.h>
|
|
|
|
static int do_android_print_hdr(cmd_tbl_t *cmdtp, int flag,
|
|
int argc, char * const argv[])
|
|
{
|
|
struct blk_desc *dev_desc;
|
|
struct andr_img_hdr *hdr;
|
|
disk_partition_t part_info;
|
|
const char *part_name;
|
|
|
|
if (argc != 2)
|
|
return CMD_RET_USAGE;
|
|
|
|
part_name = argv[1];
|
|
|
|
dev_desc = rockchip_get_bootdev();
|
|
if (!dev_desc) {
|
|
printf("dev_desc is NULL!\n");
|
|
return -ENODEV;
|
|
}
|
|
|
|
if (part_get_info_by_name(dev_desc, part_name, &part_info) < 0) {
|
|
printf("Failed to get \"%s\" part\n", part_name);
|
|
return -ENODEV;
|
|
}
|
|
|
|
hdr = populate_andr_img_hdr(dev_desc, &part_info);
|
|
if (!hdr) {
|
|
printf("Not an android image\n");
|
|
return -EINVAL;
|
|
} else {
|
|
printf("Partition \"%s\"\n", part_info.name);
|
|
android_print_contents(hdr);
|
|
}
|
|
|
|
free(hdr);
|
|
|
|
return 0;
|
|
}
|
|
|
|
U_BOOT_CMD(
|
|
android_print_hdr, 2, 1, do_android_print_hdr,
|
|
"print android image header", "<partition name>"
|
|
);
|
|
|