[Armadeus-commitlog] UNNAMED PROJECT branch, armadeus-2020.07, updated. 634601b5c443b5827de2442cda
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2020-07-31 07:26:53
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "UNNAMED PROJECT".
The branch, armadeus-2020.07 has been updated
via 634601b5c443b5827de2442cdad7292649a9176e (commit)
from e7396a82ff30bf4b15515e94379d0442f957b29c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 634601b5c443b5827de2442cdad7292649a9176e
Author: Sébastien Szymanski <seb...@ar...>
Date: Fri Jul 31 09:25:22 2020 +0200
tools: imx8m_image: don't use <<< redirection
It does not work on Dash (Ubuntu default shell)
-----------------------------------------------------------------------
Summary of changes:
tools/imx8m_image.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/imx8m_image.sh b/tools/imx8m_image.sh
index fef8814ddf..67fcbf4050 100755
--- a/tools/imx8m_image.sh
+++ b/tools/imx8m_image.sh
@@ -30,7 +30,7 @@ for f in $blobs; do
done
if [ $post_process = 1 ]; then
- if grep -q 'lpddr4_' <<< $blobs; then
+ if echo "$blobs" | grep -q 'lpddr4_'; then
objcopy -I binary -O binary --pad-to 0x8000 --gap-fill=0x0 ${ddr_fw_path}lpddr4_pmu_train_1d_imem.bin lpddr4_pmu_train_1d_imem_pad.bin
objcopy -I binary -O binary --pad-to 0x4000 --gap-fill=0x0 ${ddr_fw_path}lpddr4_pmu_train_1d_dmem.bin lpddr4_pmu_train_1d_dmem_pad.bin
objcopy -I binary -O binary --pad-to 0x8000 --gap-fill=0x0 ${ddr_fw_path}lpddr4_pmu_train_2d_imem.bin lpddr4_pmu_train_2d_imem_pad.bin
hooks/post-receive
--
UNNAMED PROJECT
|