pi Domo is now compiling
This commit is contained in:
22
projects/pi_domo/post-build.sh
Executable file
22
projects/pi_domo/post-build.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Catch Postbuild Error
|
||||
function error {
|
||||
|
||||
echo "Postbuild Failed."
|
||||
exit 1;
|
||||
}
|
||||
|
||||
set -e
|
||||
trap error ERR
|
||||
|
||||
echo "==> POSTBUILD:"
|
||||
|
||||
echo "BR_STAGING: ${BR_STAGING}"
|
||||
echo "BR_PROJECT: " ${BR_PROJECT}
|
||||
|
||||
cp -a ${BR_PROJECT}/configs/config.txt ${BR_STAGING}/buildroot/images/
|
||||
|
||||
cp -a ${BR_PROJECT}/dts/pi_Domo.dtb ${BR_STAGING}/buildroot/images/
|
||||
|
||||
cp -a ${BR_STAGING}/buildroot/images/uboot-env.bin ${BR_STAGING}/buildroot/images/uboot.env
|
||||
Reference in New Issue
Block a user