diff options
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 | ||
