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

It doesn't make sense to install to ${libexecdir}/rpi-mkimage as it changes the path on fido and earlier branches from: [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage to: [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage/rpi-mkimage Using ${libexecdir} instead of ${libexecdir}/rpi-mkimage preserves the path for fido and earlier. Signed-off-by: Jonathan Liu <net147@gmail.com>
23 lines
553 B
BlitzBasic
23 lines
553 B
BlitzBasic
SUMMARY = "RaspberryPi tool to produce kernel.img"
|
|
LICENSE = "Broadcom"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/License;md5=957f6640d5e2d2acfce73a36a56cb32f"
|
|
SECTION = "bootloader"
|
|
|
|
DEPENDS = "python"
|
|
|
|
SRCREV = "f5642106425d430e1f82ee064121a5fd0e05a386"
|
|
SRC_URI = " \
|
|
git://github.com/raspberrypi/tools.git;branch=master;protocol=git \
|
|
file://License \
|
|
file://open-files-relative-to-script.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install () {
|
|
install -d ${D}${libexecdir}
|
|
install -t ${D}${libexecdir} mkimage/*
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|