forked from OERV-BSP/u-boot
SPL and proper U-Boot are split into two images with default binman
configuration of StarFive VisionFive 2, thus proper U-Boot symbols
cannot be found in the SPL image. This fixes errors like
Section '/binman/spl-img': Symbol '_binman_u_boot_any_prop_size'
in entry '/binman/spl-img/mkimage/u-boot-spl/u-boot-spl-nodtb':
Entry 'u-boot-any' not found in list (u-boot-spl-nodtb,
u-boot-spl-dtb,u-boot-spl,mkimage,spl-img)
Fixes: 90602e779d ("riscv: dts: starfive: generate u-boot-spl.bin.normal.out")
Suggested-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Yao Zi <ziyao@disroot.org>
28 lines
368 B
Plaintext
28 lines
368 B
Plaintext
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
|
/*
|
|
* Copyright (C) 2023 StarFive Technology Co., Ltd.
|
|
*/
|
|
|
|
#include "binman.dtsi"
|
|
|
|
/ {
|
|
config {
|
|
bootph-pre-ram;
|
|
u-boot,spl-payload-offset = <0x100000>;
|
|
};
|
|
};
|
|
|
|
&binman {
|
|
spl-img {
|
|
filename = "spl/u-boot-spl.bin.normal.out";
|
|
|
|
mkimage {
|
|
args = "-T sfspl";
|
|
|
|
u-boot-spl {
|
|
no-write-symbols;
|
|
};
|
|
};
|
|
};
|
|
};
|