mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00

The name `bootfiles` is too generic, we should use `rpi-bootfiles` instead. Signed-off-by: Paul Barker <pbarker@konsulko.com>
44 lines
1.0 KiB
BlitzBasic
44 lines
1.0 KiB
BlitzBasic
DESCRIPTION = "Closed source binary files to help boot all raspberry pi devices."
|
|
LICENSE = "Broadcom-RPi"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENCE.broadcom;md5=c403841ff2837657b2ed8e5bb474ac8d"
|
|
|
|
inherit deploy nopackages
|
|
|
|
include recipes-bsp/common/raspberrypi-firmware.inc
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
DEPENDS = "rpi-config rpi-cmdline"
|
|
|
|
COMPATIBLE_MACHINE = "^rpi$"
|
|
|
|
S = "${RPIFW_S}/boot"
|
|
|
|
PR = "r3"
|
|
|
|
do_deploy() {
|
|
install -d ${DEPLOYDIR}/${BOOTFILES_DIR_NAME}
|
|
|
|
for i in ${S}/*.elf ; do
|
|
cp $i ${DEPLOYDIR}/${BOOTFILES_DIR_NAME}
|
|
done
|
|
for i in ${S}/*.dat ; do
|
|
cp $i ${DEPLOYDIR}/${BOOTFILES_DIR_NAME}
|
|
done
|
|
for i in ${S}/*.bin ; do
|
|
cp $i ${DEPLOYDIR}/${BOOTFILES_DIR_NAME}
|
|
done
|
|
|
|
# Add stamp in deploy directory
|
|
touch ${DEPLOYDIR}/${BOOTFILES_DIR_NAME}/${PN}-${PV}.stamp
|
|
}
|
|
|
|
do_deploy[depends] += "rpi-config:do_deploy rpi-cmdline:do_deploy"
|
|
|
|
addtask deploy before do_build after do_install
|
|
do_deploy[dirs] += "${DEPLOYDIR}/${BOOTFILES_DIR_NAME}"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|