diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2018-02-18 21:25:45 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-19 16:06:27 +0000 |
commit | 5aa88f8eecb083d22b4c6ac1f2114054705f98e8 (patch) | |
tree | 790b7c3fdd0695763f53ebd83afe9c9f03015b48 | |
parent | cf355518a479b75f3cbf57770ba0f699f85678d8 (diff) | |
download | openembedded-core-5aa88f8eecb083d22b4c6ac1f2114054705f98e8.tar.gz openembedded-core-5aa88f8eecb083d22b4c6ac1f2114054705f98e8.tar.bz2 openembedded-core-5aa88f8eecb083d22b4c6ac1f2114054705f98e8.zip |
linux-yocto/4.15: add build dependencies
Some required build dependencies were missed when the -rt variant
for linux-yocto was created. We add them here to match the 4.15
recipe. Eventually, these can be placed in a common location and
included automatically.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb b/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb index 31f8c23cef..03726a46a4 100644 --- a/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb +++ b/meta/recipes-kernel/linux/linux-yocto-rt_4.15.bb @@ -19,6 +19,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=mac LINUX_VERSION ?= "4.15" +DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" +DEPENDS += "openssl-native util-linux-native" + PV = "${LINUX_VERSION}+git${SRCPV}" KMETA = "kernel-meta" |