X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=tools%2Frkimage.c;h=ae50de55c93b1fe32a3072d7ef1403ea5c966bda;hb=93e078807f2e31c25a6fbbb153f62652d75ffe0a;hp=9880b1569f165a3709c7de9fd48d1dd5dcb1b93e;hpb=1f5541c8818d3ecd243f9bbf58db9ea5f55a3195;p=oweals%2Fu-boot.git diff --git a/tools/rkimage.c b/tools/rkimage.c index 9880b1569f..ae50de55c9 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 */ @@ -16,8 +15,7 @@ static uint32_t header; 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); if (rkcommon_need_rc4_spl(params)) rkcommon_rc4_encode_spl(buf, 4, params->file_size); @@ -37,7 +35,7 @@ static int rkimage_check_image_type(uint8_t type) U_BOOT_IMAGE_TYPE( rkimage, "Rockchip Boot Image support", - 4, + 0, &header, rkcommon_check_params, NULL,