diff options
author | Chase Maupin <Chase.Maupin@ti.com> | 2013-04-03 14:23:58 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-04 14:08:06 +0100 |
commit | e16dc3d7fc5c010423b4675da4be5f253197f63c (patch) | |
tree | 51917e18e7847a15cdb981b5ac94751b916a9991 /meta/recipes-kernel | |
parent | c1402d67da001aabbd5128b2fe930daf99142ae1 (diff) | |
download | poky-e16dc3d7fc5c010423b4675da4be5f253197f63c.tar.gz |
linux-dtb: Add simple DTB symlinks for devicetree
* This is similar to the symlinks provided for the kernel image
in the /boot directory of a file system. The goal is to have
simply named symlinks in /boot that mirror the device tree
name in the kernel sources. This is so that programs like
U-Boot can easily find the default device tree binary in the
/boot directory and use that when booting the kernel.
* Use update-alternatives to handle proper creation and removal
of the symlinks.
(From OE-Core rev: 750a9554e1b85d9bd23d18e0630723c3c193c604)
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/linux-dtb.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-dtb.inc b/meta/recipes-kernel/linux/linux-dtb.inc index ec6c375335..421ffa336c 100644 --- a/meta/recipes-kernel/linux/linux-dtb.inc +++ b/meta/recipes-kernel/linux/linux-dtb.inc | |||
@@ -45,3 +45,23 @@ do_deploy_append() { | |||
45 | done | 45 | done |
46 | fi | 46 | fi |
47 | } | 47 | } |
48 | |||
49 | pkg_postinst_kernel-devicetree () { | ||
50 | cd /${KERNEL_IMAGEDEST} | ||
51 | for DTS_FILE in ${KERNEL_DEVICETREE} | ||
52 | do | ||
53 | DTS_BASE_NAME=`basename ${DTS_FILE} | awk -F "." '{print $1}'` | ||
54 | DTB_SYMLINK_NAME=`echo ${KERNEL_IMAGE_SYMLINK_NAME} | sed "s/${MACHINE}/${DTS_BASE_NAME}/g"` | ||
55 | update-alternatives --install /${KERNEL_IMAGEDEST}/${DTS_BASE_NAME}.dtb ${DTS_BASE_NAME}.dtb devicetree-${DTB_SYMLINK_NAME}.dtb ${KERNEL_PRIORITY} || true | ||
56 | done | ||
57 | } | ||
58 | |||
59 | pkg_postrm_kernel-devicetree () { | ||
60 | cd /${KERNEL_IMAGEDEST} | ||
61 | for DTS_FILE in ${KERNEL_DEVICETREE} | ||
62 | do | ||
63 | DTS_BASE_NAME=`basename ${DTS_FILE} | awk -F "." '{print $1}'` | ||
64 | DTB_SYMLINK_NAME=`echo ${KERNEL_IMAGE_SYMLINK_NAME} | sed "s/${MACHINE}/${DTS_BASE_NAME}/g"` | ||
65 | update-alternatives --remove ${DTS_BASE_NAME}.dtb devicetree-${DTB_SYMLINK_NAME}.dtb ${KERNEL_PRIORITY} || true | ||
66 | done | ||
67 | } | ||