summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorHeiko Schocher <[email protected]>2023-01-24 18:06:50 +0100
committerTom Rini <[email protected]>2023-02-06 13:04:53 -0500
commit12ae7bc83a9b16a43be805ff168845e7d2ed8472 (patch)
treebba2112094c47062cde3f892fcff81b008fbf0b1 /arch
parent01d85e7a0c78c0c56ca0bf98712489a899bab3a4 (diff)
powerpc/mpc85xx: socrates: rework build process
U-Boot build process for socrates board produces final U-Boot binary in file u-boot-socrates.bin (by binman) And as a bonus it produces two unusable broken binaries u-boot-dtb.bin and u-boot.bin (by Makefile). Clean this up, so final U-Boot binary is in u-boot-dtb.bin Signed-off-by: Pali Rohár <[email protected]> Signed-off-by: Heiko Schocher <[email protected]>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/dts/socrates-u-boot.dtsi4
-rw-r--r--arch/powerpc/dts/u-boot.dtsi2
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/dts/socrates-u-boot.dtsi b/arch/powerpc/dts/socrates-u-boot.dtsi
index 14a7c245dc4..f6af611b513 100644
--- a/arch/powerpc/dts/socrates-u-boot.dtsi
+++ b/arch/powerpc/dts/socrates-u-boot.dtsi
@@ -5,11 +5,11 @@
*/
/ {
binman {
- filename = "u-boot-socrates.bin";
+ filename = "u-boot-dtb.bin";
pad-byte = <0xff>;
// Place dtb one sector before u-boot-nodtb.bin
blob {
- filename = "dts/dt.dtb";
+ filename = "u-boot.dtb";
};
u-boot-nodtb {
filename = "u-boot-nodtb.bin";
diff --git a/arch/powerpc/dts/u-boot.dtsi b/arch/powerpc/dts/u-boot.dtsi
index 6b7375cff21..c39ab6f0cac 100644
--- a/arch/powerpc/dts/u-boot.dtsi
+++ b/arch/powerpc/dts/u-boot.dtsi
@@ -9,7 +9,7 @@
/ {
binman {
- filename = "u-boot.bin";
+ filename = "u-boot-dtb.bin";
skip-at-start = <CONFIG_TEXT_BASE>;
sort-by-offset;
pad-byte = <0xff>;