diff options
author | Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> | 2025-01-07 20:42:26 -0700 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2025-03-30 14:16:15 -0600 |
commit | a36dcfe6c8031a956e138dd06f5e2fa80f05dc5c (patch) | |
tree | 14694243ef323edbe3fb6b6fbcba5ea4289d0255 | |
parent | 02242301c6f9f5a6e440a29dc0ac456882e9c7cf (diff) | |
download | meta-xilinx-a36dcfe6c8031a956e138dd06f5e2fa80f05dc5c.tar.gz |
extract-cdo: Create symlink for pmc_cdo.bin
Remove installing pmc_cdo.bin to DEPLOYDIR and create pmc_cdo.bin
symlink in DEPLOYDIR.
Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r-- | meta-xilinx-core/recipes-bsp/cdo/extract-cdo_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-core/recipes-bsp/cdo/extract-cdo_1.0.bb b/meta-xilinx-core/recipes-bsp/cdo/extract-cdo_1.0.bb index 17d8af8c..fb0ac66b 100644 --- a/meta-xilinx-core/recipes-bsp/cdo/extract-cdo_1.0.bb +++ b/meta-xilinx-core/recipes-bsp/cdo/extract-cdo_1.0.bb | |||
@@ -34,7 +34,7 @@ do_install[noexec] = '1' | |||
34 | do_deploy() { | 34 | do_deploy() { |
35 | install -d ${DEPLOYDIR}/CDO | 35 | install -d ${DEPLOYDIR}/CDO |
36 | install -m 0644 ${B}/pmc_cdo.bin ${DEPLOYDIR}/CDO/pmc_cdo.bin | 36 | install -m 0644 ${B}/pmc_cdo.bin ${DEPLOYDIR}/CDO/pmc_cdo.bin |
37 | install -m 0644 ${B}/pmc_cdo.bin ${DEPLOYDIR}/pmc_cdo.bin | 37 | ln -sf CDO/pmc_cdo.bin ${DEPLOYDIR}/pmc_cdo.bin |
38 | } | 38 | } |
39 | 39 | ||
40 | addtask deploy before do_build after do_install | 40 | addtask deploy before do_build after do_install |