]> git.sur5r.net Git - u-boot/blobdiff - tools/rkspi.c
Revert "rockchip: Add max spl size & spl header configs"
[u-boot] / tools / rkspi.c
index 69a12f02e29a3448e886cb78c07deb87fb41df0f..eb8119bf53fb8ce3f04baead9e5e190594eb6663 100644 (file)
@@ -53,7 +53,7 @@ static void rkspi_set_header(void *buf, struct stat *sbuf, int ifd,
                       size);
        }
 
-       memcpy(buf + RKSPI_SPL_HDR_START, CONFIG_ROCKCHIP_SPL_HDR, 4);
+       memcpy(buf + RKSPI_SPL_HDR_START, "RK32", 4);
 
        /*
         * Spread the image out so we only use the first 2KB of each 4KB
@@ -89,7 +89,7 @@ static int rkspi_vrec_header(struct image_tool_params *params,
 {
        int pad_size;
 
-       pad_size = (CONFIG_ROCKCHIP_MAX_SPL_SIZE + 0x7ff) / 0x800 * 0x800;
+       pad_size = (RK_MAX_CODE1_SIZE + 0x7ff) / 0x800 * 0x800;
        params->orig_file_size = pad_size;
 
        /* We will double the image size due to the SPI format */