summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware
diff options
context:
space:
mode:
authorJaewon Lee <jaewon.lee@xilinx.com>2020-02-20 18:10:44 -0800
committerJaewon Lee <jaewon.lee@xilinx.com>2020-02-26 16:22:34 -0800
commitdfa679b21e3e55fa300082fcb18dfad0267425a4 (patch)
treec66740ba9cd5e2b796c76fb1d1b5d43ac3adf418 /meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware
parent3abc67c6f1ae7bd51a3780e0a3af2535d543d47f (diff)
downloadmeta-xilinx-dfa679b21e3e55fa300082fcb18dfad0267425a4.tar.gz
arm-trusted-firmware.inc: installing elf with standard name
Installing the elf with a standard name with PN and SRCPV. Needed for update boot wiring Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com>
Diffstat (limited to 'meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware')
-rw-r--r--meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc b/meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc
index 2bba1381..074e26b8 100644
--- a/meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc
+++ b/meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc
@@ -75,7 +75,8 @@ do_compile() {
75} 75}
76 76
77do_install() { 77do_install() {
78 install -Dm 0644 ${OUTPUT_DIR}/bl31/bl31.elf ${D}/boot/arm-trusted-firmware.elf 78 install -d ${D}/boot
79 install -Dm 0644 ${OUTPUT_DIR}/bl31/bl31.elf ${D}/boot/${PN}-${SRCPV}.elf
79} 80}
80 81
81do_deploy() { 82do_deploy() {
@@ -94,4 +95,4 @@ do_deploy() {
94 ln -sf ${ATF_BASE_NAME}.ub ${DEPLOYDIR}/atf-uboot.ub 95 ln -sf ${ATF_BASE_NAME}.ub ${DEPLOYDIR}/atf-uboot.ub
95} 96}
96addtask deploy before do_build after do_compile 97addtask deploy before do_build after do_compile
97FILES_${PN} = "/boot/arm-trusted-firmware.elf" 98FILES_${PN} += "/boot/${PN}-${SRCPV}.elf"