summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/bootfiles/bcm2835-bootfiles.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-bsp/bootfiles/bcm2835-bootfiles.bb')
-rw-r--r--recipes-bsp/bootfiles/bcm2835-bootfiles.bb43
1 files changed, 43 insertions, 0 deletions
diff --git a/recipes-bsp/bootfiles/bcm2835-bootfiles.bb b/recipes-bsp/bootfiles/bcm2835-bootfiles.bb
new file mode 100644
index 0000000..d20312c
--- /dev/null
+++ b/recipes-bsp/bootfiles/bcm2835-bootfiles.bb
@@ -0,0 +1,43 @@
1DESCRIPTION = "Closed source binary files to help boot the ARM on the BCM2835."
2LICENSE = "Broadcom-RPi"
3
4LIC_FILES_CHKSUM = "file://LICENCE.broadcom;md5=c403841ff2837657b2ed8e5bb474ac8d"
5
6inherit deploy nopackages
7
8include recipes-bsp/common/raspberrypi-firmware.inc
9
10INHIBIT_DEFAULT_DEPS = "1"
11
12DEPENDS = "rpi-config"
13
14COMPATIBLE_MACHINE = "^rpi$"
15
16S = "${RPIFW_S}/boot"
17
18PR = "r3"
19
20do_deploy() {
21 install -d ${DEPLOYDIR}/${PN}
22
23 for i in ${S}/*.elf ; do
24 cp $i ${DEPLOYDIR}/${PN}
25 done
26 for i in ${S}/*.dat ; do
27 cp $i ${DEPLOYDIR}/${PN}
28 done
29 for i in ${S}/*.bin ; do
30 cp $i ${DEPLOYDIR}/${PN}
31 done
32
33 # Add stamp in deploy directory
34 touch ${DEPLOYDIR}/${PN}/${PN}-${PV}.stamp
35}
36
37do_deploy[depends] += "rpi-config:do_deploy"
38
39addtask deploy before do_build after do_install
40do_deploy[dirs] += "${DEPLOYDIR}/${PN}"
41
42PACKAGE_ARCH = "${MACHINE_ARCH}"
43