fdtdec: Add weak function to patch U-Boot DT right after fdtdec_setup()
[oweals/u-boot.git] / tools / rkimage.c
index a0a3185370b89590bcb3b67c2011e868f132c070..1c5540b1c3d1d1e73aaa88e71a7ba790950771eb 100644 (file)
@@ -15,11 +15,10 @@ 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);
+               rkcommon_rc4_encode_spl(buf, 0, params->file_size);
 }
 
 static int rkimage_check_image_type(uint8_t type)
@@ -36,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,