diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2012-11-14 23:24:18 +0200 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2012-11-27 22:42:41 +0200 |
commit | d952980bd40526cc3f0649032a991cd9e4c90102 (patch) | |
tree | af6c1d010e6296af75021ce786fd5456c9517b33 | |
parent | 4ac170e18b65e67777dfd6f917e1e7ed1a665bad (diff) | |
download | meta-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.bb | 5 |
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 | ||
16 | S = "${WORKDIR}/git/boot" | 16 | S = "${WORKDIR}/git/boot" |
17 | 17 | ||
18 | PR = "r2" | 18 | PR = "r3" |
19 | 19 | ||
20 | addtask deploy before do_package after do_install | 20 | addtask 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 |