diff options
author | Heiko Schocher <hs@denx.de> | 2023-01-24 18:06:50 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-06 13:04:53 -0500 |
commit | 12ae7bc83a9b16a43be805ff168845e7d2ed8472 (patch) | |
tree | bba2112094c47062cde3f892fcff81b008fbf0b1 /arch | |
parent | 01d85e7a0c78c0c56ca0bf98712489a899bab3a4 (diff) | |
download | u-boot-12ae7bc83a9b16a43be805ff168845e7d2ed8472.tar.gz u-boot-12ae7bc83a9b16a43be805ff168845e7d2ed8472.tar.bz2 u-boot-12ae7bc83a9b16a43be805ff168845e7d2ed8472.zip |
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 <pali@kernel.org>
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/dts/socrates-u-boot.dtsi | 4 | ||||
-rw-r--r-- | arch/powerpc/dts/u-boot.dtsi | 2 |
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 14a7c245dc..f6af611b51 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 6b7375cff2..c39ab6f0ca 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>; |