Skip to content
Snippets Groups Projects
Commit 399de922 authored by Bin Meng's avatar Bin Meng
Browse files

x86: qemu: Mark ucode as optional for SPL in u-boot.dtsi


QEMU does not need ucode and this is indicated in u-boot.dtsi
for U-Boot proper. Now add the same for SPL.

Signed-off-by: default avatarBin Meng <bmeng.cn@gmail.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 2cffd90f
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,15 @@
#ifdef CONFIG_ROM_SIZE
/ {
binman {
#ifdef CONFIG_SPL
u-boot-spl-with-ucode-ptr {
optional-ucode;
};
#else
u-boot-with-ucode-ptr {
optional-ucode;
};
#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