diff options
author | John Klug <john.klug@multitech.com> | 2018-12-03 10:29:01 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2019-07-03 11:22:01 -0500 |
commit | 003a0be3868ff3a6b11874611f1ad061f5e4c58d (patch) | |
tree | df504496f31982760f9fa73ddaf1ce22ab1d3dec /recipes-kernel | |
parent | e247f9dbd6f623e05102f31c2d0e1ed230dfdd67 (diff) | |
download | meta-multitech-003a0be3868ff3a6b11874611f1ad061f5e4c58d.tar.gz meta-multitech-003a0be3868ff3a6b11874611f1ad061f5e4c58d.tar.bz2 meta-multitech-003a0be3868ff3a6b11874611f1ad061f5e4c58d.zip |
Add device tree bingings to machine SYSROOT
Diffstat (limited to 'recipes-kernel')
-rw-r--r-- | recipes-kernel/linux/linux-at91_4.9.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux-at91_4.9.bb b/recipes-kernel/linux/linux-at91_4.9.bb index 2e1bc5e..b0f9a4a 100644 --- a/recipes-kernel/linux/linux-at91_4.9.bb +++ b/recipes-kernel/linux/linux-at91_4.9.bb @@ -104,8 +104,10 @@ pkg_postinst_kernel-image-uimage-inst() { # Install dtc to build any device tree overlays in other recipes/modules. do_install_append() { install -D -m 0755 scripts/dtc/dtc ${STAGING_DIR_NATIVE}${USRBINPATH_class-native}/dtc - mkdir -p ${D}${includedir}/linux + install -d -m 0755 ${D}${includedir}/linux cp -a ${STAGING_KERNEL_DIR}/include/dt-bindings ${D}${includedir}/linux/ + install -d -m 0755 ${STAGING_DIR_TARGET}/${includedir}/linux + cp -a ${STAGING_KERNEL_DIR}/include/dt-bindings ${STAGING_DIR_TARGET}/${includedir}/linux } FILES_kernel-dt-bindings-dev = "/usr/include/linux/dt-bindings" |