Skip to content
Snippets Groups Projects
Commit 164f0414 authored by Simon Glass's avatar Simon Glass Committed by Bin Meng
Browse files

x86: link: Add SPL declarations to the binman image


When building for 64-bit we need to put an SPL binary into the image. Update
the binman image description to reflect this.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent 19f8b32c
No related branches found
No related tags found
No related merge requests found
...@@ -21,9 +21,22 @@ ...@@ -21,9 +21,22 @@
intel-me { intel-me {
}; };
#endif #endif
#ifdef CONFIG_SPL
u-boot-spl-with-ucode-ptr {
pos = <CONFIG_SPL_TEXT_BASE>;
};
u-boot-dtb-with-ucode2 {
type = "u-boot-dtb-with-ucode";
};
u-boot {
pos = <0xfff00000>;
};
#else
u-boot-with-ucode-ptr { u-boot-with-ucode-ptr {
pos = <CONFIG_SYS_TEXT_BASE>; pos = <CONFIG_SYS_TEXT_BASE>;
}; };
#endif
u-boot-dtb-with-ucode { u-boot-dtb-with-ucode {
}; };
u-boot-ucode { u-boot-ucode {
...@@ -57,9 +70,15 @@ ...@@ -57,9 +70,15 @@
pos = <CONFIG_X86_REFCODE_ADDR>; pos = <CONFIG_X86_REFCODE_ADDR>;
}; };
#endif #endif
#ifdef CONFIG_SPL
x86-start16-spl {
pos = <CONFIG_SYS_X86_START16>;
};
#else
x86-start16 { x86-start16 {
pos = <CONFIG_SYS_X86_START16>; pos = <CONFIG_SYS_X86_START16>;
}; };
#endif
}; };
}; };
#endif #endif
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