diff options
author | Jeffy Chen <jeffy.chen@rock-chips.com> | 2015-11-27 12:07:16 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-12-13 17:07:06 -0700 |
commit | 5cc5b901e6d319af18b8dc59537c503bbd3ca7f0 (patch) | |
tree | 1a1f8acf7594f27ce86623db443fef261446a72f /tools/rkspi.c | |
parent | 5076c64a08d2083af5a7761b12a30116ef0da967 (diff) | |
download | u-boot-5cc5b901e6d319af18b8dc59537c503bbd3ca7f0.tar.gz |
Revert "rockchip: Add max spl size & spl header configs"
This reverts commit 10b4615f9d7e177ec7fe644fbb2616e0e0956f6e
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/rkspi.c')
-rw-r--r-- | tools/rkspi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rkspi.c b/tools/rkspi.c index 69a12f02e2..eb8119bf53 100644 --- a/tools/rkspi.c +++ b/tools/rkspi.c @@ -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 */ |