pi Domo is now compiling

This commit is contained in:
2016-11-18 22:54:49 +01:00
parent eb0cb9b037
commit 6c92722606
20 changed files with 672 additions and 39 deletions

View File

@@ -13,13 +13,13 @@ function error {
set -e
trap error ERR
echo "==> Mozart3 post-build:"
echo "==> Raspberry post-build:"
echo "AW_STAGING: ${AW_STAGING}"
echo "AW_PROJECT: " ${AW_PROJECT}
echo "BR_STAGING: ${BR_STAGING}"
echo "BR_PROJECT: " ${BR_PROJECT}
# Generate uboot scripts
for cmd_file in `ls ${AW_PROJECT}/uboot/*.cmd`
for cmd_file in `ls ${BR_PROJECT}/uboot/*.cmd`
do
echo "uboot script: $cmd_file"
# Get file name without extention.
@@ -30,8 +30,8 @@ done
# Copy the overlay of the target.
if [ -d ${PROJECT}/ovl ]; then
mkdir -p ${AW_STAGING}/buildroot/target/usr/local/
cp -a ${AW_PROJECT}/ovl/* ${AW_STAGING}/buildroot/target/
mkdir -p ${BR_STAGING}/buildroot/target/usr/local/
cp -a ${BR_PROJECT}/ovl/* ${BR_STAGING}/buildroot/target/
fi
# Finaly apply post build script of the target if the script exist.

View File

@@ -12,7 +12,7 @@ function error {
set -e
trap error ERR
echo "==> Mozart3 post-image:"
echo "==> Domo post-image:"
if [ -e ${PROJECT}/configs/genimage.config ]; then
echo "We will generate sdcard image."