[Armadeus-commitlog] armadeus branch, master, updated. armadeus-6.0-390-gf2382f1
Brought to you by:
sszy
|
From: Julien B a. A. <ar...@sf...> - 2018-03-06 15:12:54
|
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 f2382f18282e32cc91eb6c675cbf1cde8c76f7b2 (commit)
from 6a43e12493c0074f4575ffcd31f64be4c5365658 (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 f2382f18282e32cc91eb6c675cbf1cde8c76f7b2
Author: Julien BOIBESSOT <jul...@ar...>
Date: Tue Mar 6 16:12:37 2018 +0100
[ROOTFS] Fixes post_build.sh to generate correct /etc/machine for OPOS6ULNANO
-----------------------------------------------------------------------
Summary of changes:
buildroot/target/device/armadeus/rootfs/post_build.sh | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/buildroot/target/device/armadeus/rootfs/post_build.sh b/buildroot/target/device/armadeus/rootfs/post_build.sh
index 6f07f97..44a33b0 100755
--- a/buildroot/target/device/armadeus/rootfs/post_build.sh
+++ b/buildroot/target/device/armadeus/rootfs/post_build.sh
@@ -29,12 +29,16 @@ else
fi
fi
-# Not using $2 because it can be changed for customers' BSP
+# !! Beware if using $2, because it can be changed for customers' BSP !!
if [ "$3" != "imxl" ]; then
if [ "$3" != "imx6ul" ]; then
echo "APF"${3//[!0-9]/} > $1/etc/machine
else
- echo "OPOS6UL" > $1/etc/machine
+ if [ "$2" == "opos6ulnano" ]; then
+ echo "OPOS6ULNANO" > $1/etc/machine
+ else
+ echo "OPOS6UL" > $1/etc/machine
+ fi
fi
else
echo "APF9328" > $1/etc/machine
hooks/post-receive
--
armadeus
|