
On Fri, Mar 31, 2017 at 11:31:27PM +0100, Andre Przywara wrote:
When a board uses a FIT image to load U-Boot proper, it requires a list of supported device trees to be supplied, from which it chooses the right one at runtime. Add this list for the Pine64 and OrangePi PC2 board.
Signed-off-by: Andre Przywara andre.przywara@arm.com
configs/orangepi_pc2_defconfig | 1 + configs/pine64_plus_defconfig | 1 + 2 files changed, 2 insertions(+)
diff --git a/configs/orangepi_pc2_defconfig b/configs/orangepi_pc2_defconfig index 19a5c2b..9f02049 100644 --- a/configs/orangepi_pc2_defconfig +++ b/configs/orangepi_pc2_defconfig @@ -5,6 +5,7 @@ CONFIG_SPL=y CONFIG_DRAM_CLK=672 CONFIG_DRAM_ZQ=3881977 CONFIG_DEFAULT_DEVICE_TREE="sun50i-h5-orangepi-pc2" +CONFIG_OF_LIST="sun50i-h5-orangepi-pc2"
CONFIG_OF_LIST already defaults to CONFIG_DEFAULT_DEVICE_TREE, so you don't need this change.
Thanks! Maxime