mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
The dtb files were not being installed into a location compatible with sstate and the do_deploy task. This means in builds just using sstate, the dtb files disappeared. This patch fixes the code to use the correct location for deploy files. [YOCTO #2190] (From OE-Core rev: 9815b7a95ac33d3234073cdd204d9389b4241189) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
876 B
PHP
28 lines
876 B
PHP
# Support for device tree generation
|
|
FILES_kernel-devicetree = "/boot/devicetree*"
|
|
KERNEL_DEVICETREE_FLAGS = "-R 8 -p 0x3000"
|
|
|
|
python __anonymous () {
|
|
import bb
|
|
|
|
devicetree = d.getVar("KERNEL_DEVICETREE", True) or ''
|
|
if devicetree:
|
|
depends = d.getVar("DEPENDS", True)
|
|
d.setVar("DEPENDS", "%s dtc-native" % depends)
|
|
packages = d.getVar("PACKAGES", True)
|
|
d.setVar("PACKAGES", "%s kernel-devicetree" % packages)
|
|
}
|
|
|
|
do_install_append() {
|
|
if test -n "${KERNEL_DEVICETREE}"; then
|
|
dtc -I dts -O dtb ${KERNEL_DEVICETREE_FLAGS} -o devicetree ${KERNEL_DEVICETREE}
|
|
install -m 0644 devicetree ${D}/boot/devicetree-${KERNEL_VERSION}
|
|
install -d ${DEPLOYDIR}
|
|
install -m 0644 devicetree ${DEPLOYDIR}/${KERNEL_IMAGE_BASE_NAME}.dtb
|
|
cd ${DEPLOYDIR}
|
|
rm -f ${KERNEL_IMAGE_SYMLINK_NAME}.dtb
|
|
ln -sf ${KERNEL_IMAGE_BASE_NAME}.dtb ${KERNEL_IMAGE_SYMLINK_NAME}.dtb
|
|
fi
|
|
}
|
|
|