mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-04-02 02:49:12 +00:00
32 lines
838 B
BlitzBasic
32 lines
838 B
BlitzBasic
DESCRIPTION = "Tools to append 32KB binary header to kernel image."
|
|
LICENSE = "proprietary-binary"
|
|
PR = "${MACHINE_KERNEL_PR}.2"
|
|
|
|
SECTION = "bootloader"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=3d7292881293368c0a9f3bc521c2b87e"
|
|
|
|
SRC_URI = " \
|
|
file://LICENCE \
|
|
file://bcm2835-args-uncompressed.txt \
|
|
file://bcm2835-boot-uncompressed.txt \
|
|
file://bcm2835-mkimage.py \
|
|
file://bcm2835-kernel-first32k.bin \
|
|
"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 bcm2835-mkimage.py ${D}${bindir}
|
|
install -m 0644 bcm2835-args-uncompressed.txt ${D}${bindir}
|
|
install -m 0644 bcm2835-boot-uncompressed.txt ${D}${bindir}
|
|
install -m 0644 bcm2835-kernel-first32k.bin ${D}${bindir}
|
|
}
|
|
|
|
FILES_${PN} = " \
|
|
${bindir}/bcm2835-* \
|
|
"
|