summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2012-11-14 23:24:18 +0200
committerAndrei Gherzan <andrei@gherzan.ro>2012-11-27 22:42:41 +0200
commitd952980bd40526cc3f0649032a991cd9e4c90102 (patch)
treeaf6c1d010e6296af75021ce786fd5456c9517b33
parent4ac170e18b65e67777dfd6f917e1e7ed1a665bad (diff)
downloadmeta-raspberrypi-d952980bd40526cc3f0649032a991cd9e4c90102.tar.gz
bcm2835-bootfiles: Deploy .dat files too
These files are used in the boot process with the updated bootloader. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r--recipes-bcm/bootfiles/bcm2835-bootfiles.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-bcm/bootfiles/bcm2835-bootfiles.bb b/recipes-bcm/bootfiles/bcm2835-bootfiles.bb
index 89df7a0..28d1639 100644
--- a/recipes-bcm/bootfiles/bcm2835-bootfiles.bb
+++ b/recipes-bcm/bootfiles/bcm2835-bootfiles.bb
@@ -15,7 +15,7 @@ SRC_URI = " \
15 15
16S = "${WORKDIR}/git/boot" 16S = "${WORKDIR}/git/boot"
17 17
18PR = "r2" 18PR = "r3"
19 19
20addtask deploy before do_package after do_install 20addtask deploy before do_package after do_install
21 21
@@ -24,6 +24,9 @@ do_deploy() {
24 for i in *.elf ; do 24 for i in *.elf ; do
25 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles 25 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
26 done 26 done
27 for i in *.dat ; do
28 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
29 done
27 for i in *.bin ; do 30 for i in *.bin ; do
28 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles 31 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
29 done 32 done