diff options
author | Tom Rini <trini@konsulko.com> | 2019-04-05 09:09:56 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-05 09:09:56 -0400 |
commit | 0e62d5b2abb69ddc9e58215e2d8dfa5d33996b8a (patch) | |
tree | 5933319386cfe347915108d4cc95a5f117ff3edb /tools | |
parent | 0e708abcbba13aea6b57ecb7f0f1042eb29d0dce (diff) | |
parent | da60b4301c77fdc0ce16a4f6fb6dc04b69b6282c (diff) | |
download | u-boot-0e62d5b2abb69ddc9e58215e2d8dfa5d33996b8a.tar.gz |
Merge tag 'u-boot-imx-20190405' of git://git.denx.de/u-boot-imx
Fixes for 2019.04
- fix bashism for MX8
- fix ethernet for MX53
- fix docs for i.MX8
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/imx8m_image.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/imx8m_image.sh b/tools/imx8m_image.sh index 6346fb64d8..ec0881a128 100755 --- a/tools/imx8m_image.sh +++ b/tools/imx8m_image.sh @@ -12,7 +12,7 @@ blobs=`awk '/^SIGNED_HDMI/ {print $2} /^LOADER/ {print $2} /^SECOND_LOADER/ {pri for f in $blobs; do tmp=$srctree/$f - if [ $f == "spl/u-boot-spl-ddr.bin" ] || [ $f == "u-boot.itb" ]; then + if [ $f = "spl/u-boot-spl-ddr.bin" ] || [ $f = "u-boot.itb" ]; then continue fi @@ -28,7 +28,7 @@ for f in $blobs; do sed -in "s;$f;$tmp;" $file done -if [ $post_process == 1 ]; then +if [ $post_process = 1 ]; then if [ -f $srctree/lpddr4_pmu_train_1d_imem.bin ]; then objcopy -I binary -O binary --pad-to 0x8000 --gap-fill=0x0 $srctree/lpddr4_pmu_train_1d_imem.bin lpddr4_pmu_train_1d_imem_pad.bin objcopy -I binary -O binary --pad-to 0x4000 --gap-fill=0x0 $srctree/lpddr4_pmu_train_1d_dmem.bin lpddr4_pmu_train_1d_dmem_pad.bin |