diff options
author | Drew Moseley <drew_moseley@mentor.com> | 2014-06-26 13:01:16 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-29 09:02:50 +0100 |
commit | 78ee4d8b1782445caecce8331e68efe83fc32044 (patch) | |
tree | 66e4d72b61390c647428caefbba6d176f02fde02 /meta | |
parent | cd1fdd05cc7457706d1e40042854c154cbb3d9e9 (diff) | |
download | openembedded-core-78ee4d8b1782445caecce8331e68efe83fc32044.tar.gz openembedded-core-78ee4d8b1782445caecce8331e68efe83fc32044.tar.bz2 openembedded-core-78ee4d8b1782445caecce8331e68efe83fc32044.zip |
classes/kernel: Use full path for symlink in update-alternatives.
Use a fully qualified path for the <path> parameter in calls
to update-alternatives. The chkconfig-alternatives version
requires a full path and without it, the symlink is not
properly created.
Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 6ed1cb73c8..f5d725878f 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -374,7 +374,7 @@ pkg_postinst_kernel-base () { } pkg_postinst_kernel-image () { - update-alternatives --install /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${KERNEL_PRIORITY} || true + update-alternatives --install /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE} /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${KERNEL_PRIORITY} || true } pkg_postrm_kernel-image () { |