[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-530-g7e6c15d73
Brought to you by:
sszy
|
From: sszy <ss...@us...> - 2026-08-28 20:40:03
|
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 "armadeus".
The branch, master has been updated
via 7e6c15d73f091a12f9164278d2c428e3eeeea05d (commit)
from a7ae3bc66bbee1dacd899d7c62049f6d861f0ede (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 7e6c15d73f091a12f9164278d2c428e3eeeea05d
Author: Julien BOIBESSOT <jul...@ar...>
Date: Fri Aug 28 22:16:45 2026 +0200
[BUILDROOT] post_image_creation.sh: sh doesn't support == test, so fix it
-----------------------------------------------------------------------
Summary of changes:
buildroot/target/device/armadeus/rootfs/post_image_creation.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buildroot/target/device/armadeus/rootfs/post_image_creation.sh b/buildroot/target/device/armadeus/rootfs/post_image_creation.sh
index a3066dcda..f43e099b2 100755
--- a/buildroot/target/device/armadeus/rootfs/post_image_creation.sh
+++ b/buildroot/target/device/armadeus/rootfs/post_image_creation.sh
@@ -59,7 +59,7 @@ else
fi
# if target uses ext4 for rootfs and is an APF6
-if [ -f "$1/rootfs.ext4" ] && [ "$3" == "imx6" ]; then
+if [ -f "$1/rootfs.ext4" ] && [ "$3" = "imx6" ]; then
# generate also boot.ext4:
rm -f $1/boot.ext4
$1/../host/sbin/mkfs.ext4 -L "BOOT" -r 1 -d $1/../target/boot/ $1/boot.ext4 "48M"
hooks/post-receive
--
armadeus
|