Skip to content
Snippets Groups Projects
Commit e76caa62 authored by Andreas Bießmann's avatar Andreas Bießmann Committed by Tom Rini
Browse files

spl: move comment to the right place


Commit ae83d882 moved the fixed size mentioned
in the comment but missed the comment.

Signed-off-by: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
parent 4a8c3f69
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,7 @@ DECLARE_GLOBAL_DATA_PTR; ...@@ -23,6 +23,7 @@ DECLARE_GLOBAL_DATA_PTR;
#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
#endif #endif
#ifndef CONFIG_SYS_MONITOR_LEN #ifndef CONFIG_SYS_MONITOR_LEN
/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
#define CONFIG_SYS_MONITOR_LEN (200 * 1024) #define CONFIG_SYS_MONITOR_LEN (200 * 1024)
#endif #endif
...@@ -92,7 +93,6 @@ void spl_parse_image_header(const struct image_header *header) ...@@ -92,7 +93,6 @@ void spl_parse_image_header(const struct image_header *header)
/* Signature not found - assume u-boot.bin */ /* Signature not found - assume u-boot.bin */
debug("mkimage signature not found - ih_magic = %x\n", debug("mkimage signature not found - ih_magic = %x\n",
header->ih_magic); header->ih_magic);
/* Let's assume U-Boot will not be more than 200 KB */
spl_image.size = CONFIG_SYS_MONITOR_LEN; spl_image.size = CONFIG_SYS_MONITOR_LEN;
spl_image.entry_point = CONFIG_SYS_UBOOT_START; spl_image.entry_point = CONFIG_SYS_UBOOT_START;
spl_image.load_addr = CONFIG_SYS_TEXT_BASE; spl_image.load_addr = CONFIG_SYS_TEXT_BASE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment