X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=tools%2Frkimage.c;h=1c5540b1c3d1d1e73aaa88e71a7ba790950771eb;hb=221c4d982698d9f537237108f779b8174ce24c87;hp=f9fdcfa712f00496a88404a0181f783b158859fa;hpb=e6ac28b60be2d670948332197862e314b7977177;p=oweals%2Fu-boot.git diff --git a/tools/rkimage.c b/tools/rkimage.c index f9fdcfa712..1c5540b1c3 100644 --- a/tools/rkimage.c +++ b/tools/rkimage.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2015 Google, Inc * Written by Simon Glass * - * SPDX-License-Identifier: GPL-2.0+ - * * See README.rockchip for details of the rkimage format */ @@ -13,31 +12,13 @@ static uint32_t header; -static int rkimage_check_params(struct image_tool_params *params) -{ - return 0; -} - -static int rkimage_verify_header(unsigned char *buf, int size, - struct image_tool_params *params) -{ - return 0; -} - -static void rkimage_print_header(const void *buf) -{ -} - static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd, struct image_tool_params *params) { - memcpy(buf + RK_SPL_HDR_START, rkcommon_get_spl_hdr(params), - RK_SPL_HDR_SIZE); -} + memcpy(buf, rkcommon_get_spl_hdr(params), RK_SPL_HDR_SIZE); -static int rkimage_extract_subimage(void *buf, struct image_tool_params *params) -{ - return 0; + if (rkcommon_need_rc4_spl(params)) + rkcommon_rc4_encode_spl(buf, 0, params->file_size); } static int rkimage_check_image_type(uint8_t type) @@ -54,13 +35,13 @@ static int rkimage_check_image_type(uint8_t type) U_BOOT_IMAGE_TYPE( rkimage, "Rockchip Boot Image support", - 4, + 0, &header, - rkimage_check_params, - rkimage_verify_header, - rkimage_print_header, + rkcommon_check_params, + NULL, + NULL, rkimage_set_header, - rkimage_extract_subimage, + NULL, rkimage_check_image_type, NULL, NULL