[Armadeus-commitlog] armadeus branch, master, updated. armadeus-6.0-49-g942afa7
Brought to you by:
sszy
|
From: Julien B a. A. <ar...@us...> - 2016-03-29 07:51:22
|
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 942afa77c91340cbe303670dd27a883aedc0cd8c (commit)
from 7a6f17588db2e8c1385e7f543e2a3819c5843bdd (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 942afa77c91340cbe303670dd27a883aedc0cd8c
Author: Julien BOIBESSOT <jul...@ar...>
Date: Tue Mar 29 09:47:43 2016 +0200
[BUILDROOT] Fixes post_build.sh to correctly generate /etc/machine on APF9328
-----------------------------------------------------------------------
Summary of changes:
.../target/device/armadeus/rootfs/post_build.sh | 8 ++++++--
1 files 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 469cedd..1a21c10 100755
--- a/buildroot/target/device/armadeus/rootfs/post_build.sh
+++ b/buildroot/target/device/armadeus/rootfs/post_build.sh
@@ -63,9 +63,13 @@ symlink_image $1/boot uImage $2-linux.bin
symlink_image $1/boot zImage $2-linux.bin
# Not using $2 because it can be changed for customers' BSP
-echo "APF"${3//[!0-9]/} > $1/etc/machine
+if [ "$3" != "imxl" ]; then
+ echo "APF"${3//[!0-9]/} > $1/etc/machine
+else
+ echo "APF9328" > $1/etc/machine
+fi
-# Remove APF6 WiFi init script if not building BSP for an APF6 board
+# Remove APF6 Wi-Fi init script if not building BSP for an APF6 board
if [ "$3" != "imx6" ]; then
rm -rf $1/etc/init.d/S30wifi
fi
hooks/post-receive
--
armadeus
|