configs: Add sam9x60ek_mmc_defconfig
[oweals/u-boot.git] / tools / rkimage.c
index a0a3185370b89590bcb3b67c2011e868f132c070..ae50de55c93b1fe32a3072d7ef1403ea5c966bda 100644 (file)
@@ -15,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);
@@ -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,