diff options
| author | Jaewon Lee <jaewon.lee@xilinx.com> | 2020-02-20 18:10:44 -0800 |
|---|---|---|
| committer | Jaewon Lee <jaewon.lee@xilinx.com> | 2020-02-26 16:22:34 -0800 |
| commit | dfa679b21e3e55fa300082fcb18dfad0267425a4 (patch) | |
| tree | c66740ba9cd5e2b796c76fb1d1b5d43ac3adf418 /meta-xilinx-bsp/recipes-bsp/arm-trusted-firmware | |
| parent | 3abc67c6f1ae7bd51a3780e0a3af2535d543d47f (diff) | |
| download | meta-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.inc | 5 |
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 | ||
| 77 | do_install() { | 77 | do_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 | ||
| 81 | do_deploy() { | 82 | do_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 | } |
| 96 | addtask deploy before do_build after do_compile | 97 | addtask deploy before do_build after do_compile |
| 97 | FILES_${PN} = "/boot/arm-trusted-firmware.elf" | 98 | FILES_${PN} += "/boot/${PN}-${SRCPV}.elf" |
