]> git.sur5r.net Git - u-boot/blobdiff - tools/rkimage.c
board: sama5d4ek: fix DD2 configuration
[u-boot] / tools / rkimage.c
index f9fdcfa712f00496a88404a0181f783b158859fa..44d098c77578f9241595254d9e6669b89ee66aa5 100644 (file)
 
 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)
 {
@@ -33,6 +28,9 @@ static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd,
 {
        memcpy(buf + RK_SPL_HDR_START, rkcommon_get_spl_hdr(params),
               RK_SPL_HDR_SIZE);
+
+       if (rkcommon_need_rc4_spl(params))
+               rkcommon_rc4_encode_spl(buf, 4, params->file_size);
 }
 
 static int rkimage_extract_subimage(void *buf, struct image_tool_params *params)
@@ -56,7 +54,7 @@ U_BOOT_IMAGE_TYPE(
        "Rockchip Boot Image support",
        4,
        &header,
-       rkimage_check_params,
+       rkcommon_check_params,
        rkimage_verify_header,
        rkimage_print_header,
        rkimage_set_header,