diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-12-28 22:28:25 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-05 13:48:41 +0000 |
commit | 2fa16484703f934061be399ea7bd07fa671e6caa (patch) | |
tree | 103c2761c02eab9a74bf64a5859fc426b3576c8b /meta-yocto-bsp | |
parent | dd4297f586cb8914988dd5eb73d05e0cab1c0c98 (diff) | |
download | poky-2fa16484703f934061be399ea7bd07fa671e6caa.tar.gz |
yocto-bsp: explicitly set preferred version for reference boards
When we are bumping the default kernel version for the qemu*
reference boards, but before the h/w reference boards have been
updated, we need to explicitly set the default kernel version
for those boards. Otherwise, we'll end up with warnings about
preferred versions of kernel modules not being available
(From meta-yocto rev: da27ca50eebf80463cb8d7b85f3b705254823413)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp')
-rw-r--r-- | meta-yocto-bsp/conf/layer.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-yocto-bsp/conf/layer.conf b/meta-yocto-bsp/conf/layer.conf index bf0c1bfece..eb9f55ea97 100644 --- a/meta-yocto-bsp/conf/layer.conf +++ b/meta-yocto-bsp/conf/layer.conf | |||
@@ -5,6 +5,12 @@ BBPATH .= ":${LAYERDIR}" | |||
5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ | 5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ |
6 | ${LAYERDIR}/recipes-*/*/*.bbappend" | 6 | ${LAYERDIR}/recipes-*/*/*.bbappend" |
7 | 7 | ||
8 | |||
9 | PREFERRED_VERSION_linux-yocto_genericx86 ?= "5.8%" | ||
10 | PREFERRED_VERSION_linux-yocto_genericx86-64 ?= "5.8%" | ||
11 | PREFERRED_VERSION_linux-yocto_edgerouter ?= "5.8%" | ||
12 | PREFERRED_VERSION_linux-yocto_beaglebone-yocto ?= "5.8%" | ||
13 | |||
8 | BBFILE_COLLECTIONS += "yoctobsp" | 14 | BBFILE_COLLECTIONS += "yoctobsp" |
9 | BBFILE_PATTERN_yoctobsp = "^${LAYERDIR}/" | 15 | BBFILE_PATTERN_yoctobsp = "^${LAYERDIR}/" |
10 | BBFILE_PRIORITY_yoctobsp = "5" | 16 | BBFILE_PRIORITY_yoctobsp = "5" |