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>
This commit is contained in:
Andrei Gherzan 2012-11-14 23:24:18 +02:00
parent 4ac170e18b
commit d952980bd4

View File

@ -15,7 +15,7 @@ SRC_URI = " \
S = "${WORKDIR}/git/boot"
PR = "r2"
PR = "r3"
addtask deploy before do_package after do_install
@ -24,6 +24,9 @@ do_deploy() {
for i in *.elf ; do
cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
done
for i in *.dat ; do
cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
done
for i in *.bin ; do
cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
done