summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2017-01-18 03:32:58 -0800
committerBin Meng <bmeng.cn@gmail.com>2017-02-07 13:27:13 +0800
commit399de922ff74a215964cd039c5025538f75e6b73 (patch)
tree9af60edda5962c195e89d486dcf2b946d04bad23
parent2cffd90f14de4fafe953145f3a72fd0fdbf631b2 (diff)
downloadu-boot-imx-399de922ff74a215964cd039c5025538f75e6b73.zip
u-boot-imx-399de922ff74a215964cd039c5025538f75e6b73.tar.gz
u-boot-imx-399de922ff74a215964cd039c5025538f75e6b73.tar.bz2
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: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--arch/x86/dts/emulation-u-boot.dtsi6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/dts/emulation-u-boot.dtsi b/arch/x86/dts/emulation-u-boot.dtsi
index 56d34af..7714ed0 100644
--- a/arch/x86/dts/emulation-u-boot.dtsi
+++ b/arch/x86/dts/emulation-u-boot.dtsi
@@ -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