summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2023-04-25 06:54:57 -0700
committerMark Hatle <mark.hatle@amd.com>2023-05-13 10:20:48 -0500
commitb0efcddc5b3a35d143614698a39ecb5a9d134aac (patch)
treeb0b56e08e063b379fdff24bc16ac7ca7b3cd5fa1
parentfed09bb2f9a4d3b38e8b3452549e1e3cc2e555c9 (diff)
downloadmeta-xilinx-b0efcddc5b3a35d143614698a39ecb5a9d134aac.tar.gz
device-tree: Disable default virtual/kernel dependency
KERNEL_INCLUDE implies a virtual/kernel dependency. Disable this, as our device-tree recipe does not use the Linux kernel. This greatly speeds up the build process. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r--meta-xilinx-core/recipes-bsp/device-tree/device-tree.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-xilinx-core/recipes-bsp/device-tree/device-tree.bb b/meta-xilinx-core/recipes-bsp/device-tree/device-tree.bb
index 4662c558..718857e8 100644
--- a/meta-xilinx-core/recipes-bsp/device-tree/device-tree.bb
+++ b/meta-xilinx-core/recipes-bsp/device-tree/device-tree.bb
@@ -9,6 +9,11 @@ LIC_FILES_CHKSUM = " \
9 file://${COMMON_LICENSE_DIR}/GPL-2.0-or-later;md5=fed54355545ffd980b814dab4a3b312c \ 9 file://${COMMON_LICENSE_DIR}/GPL-2.0-or-later;md5=fed54355545ffd980b814dab4a3b312c \
10 " 10 "
11 11
12# Since we're not based on a kernel default to nothing.
13# This needs to be before the devicetree inherit, as it configured for use
14# with a linux kernel by default.
15KERNEL_INCLUDE ?= ""
16
12inherit devicetree image-artifact-names 17inherit devicetree image-artifact-names
13 18
14# Fall back to SYSTEM_DTFILE if specified... 19# Fall back to SYSTEM_DTFILE if specified...