1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-06-05 14:30:10 +00:00

arm/scp-firmware: Fix build location

The build location is dependent on whether
debug or release version of scp is being built.

Change-Id: I22e0777c316ea59a49a6f178d620a59d24372e00
Signed-off-by: Usama Arif <usama.arif@arm.com>
Signed-off-by: Ross Burton <ross.burton@arm.com>
This commit is contained in:
Usama Arif
2020-08-27 16:56:10 +01:00
committed by Ross Burton
parent 46941a67b7
commit f7ec7a1278
@@ -58,7 +58,7 @@ do_install() {
install -d ${D}/firmware
for FW in ${FW_TARGETS}; do
for TYPE in ${FW_INSTALL}; do
install -D "${B}/product/${SCP_PLATFORM}/${FW}_${TYPE}/release/bin/${FW}_${TYPE}.bin" "${D}/firmware/"
install -D "${B}/product/${SCP_PLATFORM}/${FW}_${TYPE}/${SCP_BUILD_STR}/bin/${FW}_${TYPE}.bin" "${D}/firmware/"
done
done
}