blob: 4eacb4940c9f5aab3b5c976859e466971cd89169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
SUMMARY = "Toradex BSP device tree overlays"
DESCRIPTION = "Toradex BSP device tree overlays from within layer."
SRC_URI = "git://git.toradex.com/device-tree-overlays.git;branch=${SRCBRANCH};protocol=https"
SRCBRANCH = "toradex_5.4-2.3.x-imx"
SRCREV = "88d3156a5417a7b3e06812c4c7aefe09b1a4742f"
SRCREV_use-head-next = "${AUTOREV}"
PV = "${SRCBRANCH}+git${SRCPV}"
inherit devicetree
S = "${WORKDIR}/git/overlays"
COMPATIBLE_MACHINE = ".*(mx[678]).*"
# we have dtbo's in arm and arm64 architecture, set the include paths
# to include both architectures.
KERNEL_INCLUDE = " \
${STAGING_KERNEL_DIR}/arch/arm/boot/dts \
${STAGING_KERNEL_DIR}/arch/arm/boot/dts*/* \
${STAGING_KERNEL_DIR}/arch/arm64/boot/dts \
${STAGING_KERNEL_DIR}/arch/arm64/boot/dts/* \
${STAGING_KERNEL_DIR}/scripts/dtc/include-prefixes \
"
|