diff options
author | Paul Barker <paul.barker@commagility.com> | 2015-05-05 18:33:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-29 14:49:37 +0100 |
commit | f07a4e0d80f5e0dd94514f6aae11a7bd56034f30 (patch) | |
tree | 8c7864814e110238a5e94b6957116868948315df | |
parent | 8c5396bd3b7f1eef3d53ebf0404189fd75f1d5e1 (diff) | |
download | openembedded-core-dylan.tar.gz openembedded-core-dylan.tar.bz2 openembedded-core-dylan.zip |
kernel.bbclass: Complete fix for modules symlinkdylan
The fix backported in commit aa9fc551 of oe-core does not completely fix the
issue (Yocto #4595) as intended. The modules symlink is still created in the
working directory instead of in the deploy directory. To fix this, we just need
to use an absolute path to ${DEPLOYDIR} when creating the symlink.
Signed-off-by: Paul Barker <paul.barker@commagility.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 324e8120b9..67b662ac08 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -372,7 +372,7 @@ kernel_do_deploy() { if [ ${MODULE_TARBALL_DEPLOY} = "1" ] && (grep -q -i -e '^CONFIG_MODULES=y$' .config); then mkdir -p ${D}/lib tar -cvzf ${DEPLOYDIR}/${MODULE_TARBALL_BASE_NAME} -C ${D} lib - ln -sf ${MODULE_TARBALL_BASE_NAME} ${MODULE_TARBALL_SYMLINK_NAME} + ln -sf ${MODULE_TARBALL_BASE_NAME} ${DEPLOYDIR}/${MODULE_TARBALL_SYMLINK_NAME} fi cd ${DEPLOYDIR} |