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>
This commit is contained in:
Bin Meng 2017-01-18 03:32:58 -08:00
parent 2cffd90f14
commit 399de922ff
1 changed files with 6 additions and 0 deletions

View File

@ -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