mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
399de922ff
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>
24 lines
337 B
Text
24 lines
337 B
Text
/*
|
|
* Copyright (C) 2016 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <u-boot.dtsi>
|
|
|
|
#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
|