diff options
author | Denys Dmytriyenko <denys@konsulko.com> | 2023-05-08 18:15:51 +0000 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2023-05-08 15:24:40 -0500 |
commit | f22ea63f66b02297e5a1e66b1d90ebc356bc5eeb (patch) | |
tree | ea92a6f30cc8c3578e27200a6dba66811d89d337 | |
parent | 8cf212808594e4dc1c9f3b67e0890b204c5b41b1 (diff) | |
download | meta-ti-f22ea63f66b02297e5a1e66b1d90ebc356bc5eeb.tar.gz |
linux-bb.org: also package DT overlays in separate dir
OE-Core recently added non-flat directory structure for device trees
and overlays packaging:
https://git.openembedded.org/openembedded-core/commit/?id=04ab57d20009d85eb566e83ae6fe1dcea4db7300
But it only packages 2 levels - top KERNEL_DTBDEST and one level down
for vendored device trees. But linux-bb.org installs own overlays in
"overlays" subdir of the "ti" vendor directory, making it the third
level. Add those overlays into the package as weel.
Cc: Randolph Sapp <rs@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-bsp/recipes-kernel/linux/linux-bb.org_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-ti-bsp/recipes-kernel/linux/linux-bb.org_git.bb b/meta-ti-bsp/recipes-kernel/linux/linux-bb.org_git.bb index 8604e028..ca137c71 100644 --- a/meta-ti-bsp/recipes-kernel/linux/linux-bb.org_git.bb +++ b/meta-ti-bsp/recipes-kernel/linux/linux-bb.org_git.bb | |||
@@ -33,3 +33,7 @@ SRC_URI = "git://github.com/beagleboard/linux.git;protocol=https;branch=${BRANCH | |||
33 | 33 | ||
34 | SRC_URI:append:armv7a = " file://0001-defconfig-switch-default-kernel-compression-to-LZMA.patch" | 34 | SRC_URI:append:armv7a = " file://0001-defconfig-switch-default-kernel-compression-to-LZMA.patch" |
35 | 35 | ||
36 | FILES:${KERNEL_PACKAGE_NAME}-devicetree += " \ | ||
37 | /${KERNEL_DTBDEST}/*/overlays/*.dtb \ | ||
38 | /${KERNEL_DTBDEST}/*/overlays/*.dtbo \ | ||
39 | " | ||