diff options
author | Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com> | 2022-04-11 16:38:40 +0530 |
---|---|---|
committer | Mark Hatle <mhatle@xilinx.com> | 2022-04-11 12:28:40 -0700 |
commit | 7aeb23ee3072153f20c9a09d71f47505a2bc8a41 (patch) | |
tree | 5f92a7b2356f7a8990cf70e20ae65a4c08581bf9 /meta-xilinx-standalone-experimental | |
parent | 9403fc26b709c6babf868b8b6e2fab927220563d (diff) | |
download | meta-xilinx-7aeb23ee3072153f20c9a09d71f47505a2bc8a41.tar.gz |
meta-xilinx-standalone-experimental: Deploy images to sub folder having component/recipe name
This commit updates the deploy task to deploy images to a
sub folder having component name.
Signed-off-by: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
Signed-off-by: Mark Hatle <mhatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-standalone-experimental')
8 files changed, 16 insertions, 16 deletions
diff --git a/meta-xilinx-standalone-experimental/classes/esw_examples.bbclass b/meta-xilinx-standalone-experimental/classes/esw_examples.bbclass index 64e0810c..0ebc38a0 100644 --- a/meta-xilinx-standalone-experimental/classes/esw_examples.bbclass +++ b/meta-xilinx-standalone-experimental/classes/esw_examples.bbclass | |||
@@ -26,8 +26,8 @@ do_install() { | |||
26 | } | 26 | } |
27 | 27 | ||
28 | do_deploy() { | 28 | do_deploy() { |
29 | install -d ${DEPLOYDIR}/ | 29 | install -d ${DEPLOYDIR}/${BPN}/ |
30 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/ | 30 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
31 | } | 31 | } |
32 | addtask deploy before do_build after do_package | 32 | addtask deploy before do_build after do_package |
33 | 33 | ||
diff --git a/meta-xilinx-standalone-experimental/recipes-drivers/clockps-example_git.bb b/meta-xilinx-standalone-experimental/recipes-drivers/clockps-example_git.bb index 0bc67b11..97871326 100644 --- a/meta-xilinx-standalone-experimental/recipes-drivers/clockps-example_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-drivers/clockps-example_git.bb | |||
@@ -31,8 +31,8 @@ do_install() { | |||
31 | } | 31 | } |
32 | 32 | ||
33 | do_deploy() { | 33 | do_deploy() { |
34 | install -d ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 34 | install -d ${DEPLOYDIR}/${BPN}/ |
35 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 35 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
36 | } | 36 | } |
37 | addtask deploy before do_build after do_package | 37 | addtask deploy before do_build after do_package |
38 | 38 | ||
diff --git a/meta-xilinx-standalone-experimental/recipes-libraries/xilffs-example_git.bb b/meta-xilinx-standalone-experimental/recipes-libraries/xilffs-example_git.bb index d5c90bba..7f3618c8 100644 --- a/meta-xilinx-standalone-experimental/recipes-libraries/xilffs-example_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-libraries/xilffs-example_git.bb | |||
@@ -20,8 +20,8 @@ do_install() { | |||
20 | } | 20 | } |
21 | 21 | ||
22 | do_deploy() { | 22 | do_deploy() { |
23 | install -d ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 23 | install -d ${DEPLOYDIR}/${BPN}/ |
24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
25 | } | 25 | } |
26 | addtask deploy before do_build after do_package | 26 | addtask deploy before do_build after do_package |
27 | 27 | ||
diff --git a/meta-xilinx-standalone-experimental/recipes-libraries/xilfpga-example_git.bb b/meta-xilinx-standalone-experimental/recipes-libraries/xilfpga-example_git.bb index e1af36e0..5137c591 100644 --- a/meta-xilinx-standalone-experimental/recipes-libraries/xilfpga-example_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-libraries/xilfpga-example_git.bb | |||
@@ -20,8 +20,8 @@ do_install() { | |||
20 | } | 20 | } |
21 | 21 | ||
22 | do_deploy() { | 22 | do_deploy() { |
23 | install -d ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 23 | install -d ${DEPLOYDIR}/${BPN}/ |
24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
25 | } | 25 | } |
26 | addtask deploy before do_build after do_package | 26 | addtask deploy before do_build after do_package |
27 | 27 | ||
diff --git a/meta-xilinx-standalone-experimental/recipes-libraries/xilmailbox-example_git.bb b/meta-xilinx-standalone-experimental/recipes-libraries/xilmailbox-example_git.bb index 0fb74a63..a525e1bc 100644 --- a/meta-xilinx-standalone-experimental/recipes-libraries/xilmailbox-example_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-libraries/xilmailbox-example_git.bb | |||
@@ -29,8 +29,8 @@ do_install() { | |||
29 | } | 29 | } |
30 | 30 | ||
31 | do_deploy() { | 31 | do_deploy() { |
32 | install -d ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 32 | install -d ${DEPLOYDIR}/${BPN}/ |
33 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 33 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
34 | } | 34 | } |
35 | addtask deploy before do_build after do_package | 35 | addtask deploy before do_build after do_package |
36 | 36 | ||
diff --git a/meta-xilinx-standalone-experimental/recipes-libraries/xilnvm-example_git.bb b/meta-xilinx-standalone-experimental/recipes-libraries/xilnvm-example_git.bb index 7a931ed4..ef8b6e64 100644 --- a/meta-xilinx-standalone-experimental/recipes-libraries/xilnvm-example_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-libraries/xilnvm-example_git.bb | |||
@@ -20,8 +20,8 @@ do_install() { | |||
20 | } | 20 | } |
21 | 21 | ||
22 | do_deploy() { | 22 | do_deploy() { |
23 | install -d ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 23 | install -d ${DEPLOYDIR}/${BPN}/ |
24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
25 | } | 25 | } |
26 | addtask deploy before do_build after do_package | 26 | addtask deploy before do_build after do_package |
27 | 27 | ||
diff --git a/meta-xilinx-standalone-experimental/recipes-libraries/xilpuf-example_git.bb b/meta-xilinx-standalone-experimental/recipes-libraries/xilpuf-example_git.bb index 64f49d71..d43b4da9 100644 --- a/meta-xilinx-standalone-experimental/recipes-libraries/xilpuf-example_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-libraries/xilpuf-example_git.bb | |||
@@ -20,8 +20,8 @@ do_install() { | |||
20 | } | 20 | } |
21 | 21 | ||
22 | do_deploy() { | 22 | do_deploy() { |
23 | install -d ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 23 | install -d ${DEPLOYDIR}/${BPN}/ |
24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
25 | } | 25 | } |
26 | addtask deploy before do_build after do_package | 26 | addtask deploy before do_build after do_package |
27 | 27 | ||
diff --git a/meta-xilinx-standalone-experimental/recipes-libraries/xilsecure-example_git.bb b/meta-xilinx-standalone-experimental/recipes-libraries/xilsecure-example_git.bb index 3c424215..4c2be337 100644 --- a/meta-xilinx-standalone-experimental/recipes-libraries/xilsecure-example_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-libraries/xilsecure-example_git.bb | |||
@@ -20,8 +20,8 @@ do_install() { | |||
20 | } | 20 | } |
21 | 21 | ||
22 | do_deploy() { | 22 | do_deploy() { |
23 | install -d ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 23 | install -d ${DEPLOYDIR}/${BPN}/ |
24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${MACHINE}-${BPN}/ | 24 | install -Dm 0644 ${WORKDIR}/package/${base_libdir}/firmware/*.elf ${DEPLOYDIR}/${BPN}/ |
25 | } | 25 | } |
26 | addtask deploy before do_build after do_package | 26 | addtask deploy before do_build after do_package |
27 | 27 | ||