Compare commits

...

1 Commits

Author SHA1 Message Date
Simon Glass
5cec2cfd35 x86: Avoid adding two SPL binaries to the image
At present two separate SPL binaries are included in the ROM. This
affects QEMU which is quite tight with only a 2MB ROM. Adjust the
image description so that space is not wasted when microcode is not
needed.

Series-to: u-boot
Signed-off-by: Simon Glass <sjg@chromium.org>
2025-05-24 08:06:27 -06:00

View File

@@ -48,11 +48,17 @@
};
#elif defined(CONFIG_SPL)
u-boot-spl-with-ucode-ptr {
no-expanded;
offset = <CONFIG_X86_OFFSET_SPL>;
};
# ifdef CONFIG_HAVE_MICROCODE
u-boot-dtb-with-ucode2 {
type = "u-boot-dtb-with-ucode";
};
#else
u-boot-spl-dtb {
};
# endif
u-boot {
offset = <CONFIG_X86_OFFSET_U_BOOT>;
};