mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 22:24:32 +00:00
2463f165a3
We already use binman's 'multiple-images' feature with Chrome OS and we want to use it for Edison. There is no real down-side. Adjust x86 to always use multiple-images. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21 lines
317 B
Text
21 lines
317 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2016 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <u-boot.dtsi>
|
|
|
|
#ifdef CONFIG_ROM_SIZE
|
|
&rom {
|
|
#ifdef CONFIG_SPL
|
|
u-boot-spl-with-ucode-ptr {
|
|
optional-ucode;
|
|
};
|
|
#else
|
|
u-boot-with-ucode-ptr {
|
|
optional-ucode;
|
|
};
|
|
#endif
|
|
};
|
|
#endif
|