diff options
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/linux-dtb.inc | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/meta/recipes-kernel/linux/linux-dtb.inc b/meta/recipes-kernel/linux/linux-dtb.inc index cebc76a9a9..6b8f1a54b8 100644 --- a/meta/recipes-kernel/linux/linux-dtb.inc +++ b/meta/recipes-kernel/linux/linux-dtb.inc | |||
@@ -15,8 +15,12 @@ do_install_append() { | |||
15 | DTB_BASE_NAME=`basename ${DTB} .dtb` | 15 | DTB_BASE_NAME=`basename ${DTB} .dtb` |
16 | DTB_NAME=`echo ${KERNEL_IMAGE_BASE_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` | 16 | DTB_NAME=`echo ${KERNEL_IMAGE_BASE_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` |
17 | DTB_SYMLINK_NAME=`echo ${KERNEL_IMAGE_SYMLINK_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` | 17 | DTB_SYMLINK_NAME=`echo ${KERNEL_IMAGE_SYMLINK_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` |
18 | DTB_PATH="${B}/arch/${ARCH}/boot/dts/${DTB}" | ||
18 | oe_runmake ${DTB} | 19 | oe_runmake ${DTB} |
19 | install -m 0644 ${B}/arch/${ARCH}/boot/${DTB} ${D}/${KERNEL_IMAGEDEST}/devicetree-${DTB_SYMLINK_NAME}.dtb | 20 | if [ ! -e "${DTB_PATH}" ]; then |
21 | DTB_PATH="${B}/arch/${ARCH}/boot/${DTB}" | ||
22 | fi | ||
23 | install -m 0644 ${DTB_PATH} ${D}/${KERNEL_IMAGEDEST}/devicetree-${DTB_SYMLINK_NAME}.dtb | ||
20 | done | 24 | done |
21 | fi | 25 | fi |
22 | } | 26 | } |
@@ -31,8 +35,12 @@ do_deploy_append() { | |||
31 | DTB_BASE_NAME=`basename ${DTB} .dtb` | 35 | DTB_BASE_NAME=`basename ${DTB} .dtb` |
32 | DTB_NAME=`echo ${KERNEL_IMAGE_BASE_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` | 36 | DTB_NAME=`echo ${KERNEL_IMAGE_BASE_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` |
33 | DTB_SYMLINK_NAME=`echo ${KERNEL_IMAGE_SYMLINK_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` | 37 | DTB_SYMLINK_NAME=`echo ${KERNEL_IMAGE_SYMLINK_NAME} | sed "s/${MACHINE}/${DTB_BASE_NAME}/g"` |
38 | DTB_PATH="${B}/arch/${ARCH}/boot/dts/${DTB}" | ||
39 | if [ ! -e "${DTB_PATH}" ]; then | ||
40 | DTB_PATH="${B}/arch/${ARCH}/boot/${DTB}" | ||
41 | fi | ||
34 | install -d ${DEPLOYDIR} | 42 | install -d ${DEPLOYDIR} |
35 | install -m 0644 ${B}/arch/${ARCH}/boot/${DTB} ${DEPLOYDIR}/${DTB_NAME}.dtb | 43 | install -m 0644 ${DTB_PATH} ${DEPLOYDIR}/${DTB_NAME}.dtb |
36 | cd ${DEPLOYDIR} | 44 | cd ${DEPLOYDIR} |
37 | ln -sf ${DTB_NAME}.dtb ${DTB_SYMLINK_NAME}.dtb | 45 | ln -sf ${DTB_NAME}.dtb ${DTB_SYMLINK_NAME}.dtb |
38 | cd - | 46 | cd - |