diff --git a/CHANGELOG.md b/CHANGELOG.md index b3e9722a1..da0bb5d2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [NEXT] +## [2021.11] 2021-12-01 - Use https protocol in github SRC_URI - Use branch setting in git uris explicitly @@ -66,6 +66,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fix PVR drivers to work with 5.10+ kernel - Add ar wrapper for determinism for native/cross recipes - Add needed sysroot dependencies for repo fetcher +- Fix launching weston without keyboard and mouse on BBB and RPI +- Update Go to 1.17 release - Assorted recipe upgrades - New recipes - ntpsec, mozjs-78, gtk4, python3-imgtool, fwupd, fwupd-efi diff --git a/sources/meta-arm b/sources/meta-arm index c55ff7035..486201447 160000 --- a/sources/meta-arm +++ b/sources/meta-arm @@ -1 +1 @@ -Subproject commit c55ff70355bfd1e272fd74778cbe3e992d8b1e0b +Subproject commit 4862014474ae57852d7eef5f77b73ce95752de91 diff --git a/sources/meta-intel b/sources/meta-intel index 922d3cb17..fe4d7319f 160000 --- a/sources/meta-intel +++ b/sources/meta-intel @@ -1 +1 @@ -Subproject commit 922d3cb1747ea657bb5668e24d6df5a606d9c5dd +Subproject commit fe4d7319ff516856f39ffb31332ae7a707935b9a diff --git a/sources/meta-openembedded b/sources/meta-openembedded index ce7ee8301..954fac6af 160000 --- a/sources/meta-openembedded +++ b/sources/meta-openembedded @@ -1 +1 @@ -Subproject commit ce7ee830167387556707152f85f5fd5f84853c60 +Subproject commit 954fac6af7d17dfade52db8d4aeca83f498efe8b diff --git a/sources/meta-raspberrypi b/sources/meta-raspberrypi index 63a3d8cb1..de1007b69 160000 --- a/sources/meta-raspberrypi +++ b/sources/meta-raspberrypi @@ -1 +1 @@ -Subproject commit 63a3d8cb17c5d1affe8f2848f45fcc6a706f9412 +Subproject commit de1007b690bba70af2c63c47022584c696a9992a diff --git a/sources/meta-yoe/conf/distro/eglfs.inc b/sources/meta-yoe/conf/distro/eglfs.inc index 6380c1a9a..814313c4e 100644 --- a/sources/meta-yoe/conf/distro/eglfs.inc +++ b/sources/meta-yoe/conf/distro/eglfs.inc @@ -6,4 +6,4 @@ DISABLE_VC4GRAPHICS = "1" # Use rdk backend for eglfs PREFERRED_PROVIDER_virtual/wpebackend = "wpebackend-rdk" -PACKAGECONFIG:pn-wpebackend-rdk_rpi = "rpi" +PACKAGECONFIG:pn-wpebackend-rdk:rpi = "rpi" diff --git a/sources/meta-yoe/conf/distro/wayland.inc b/sources/meta-yoe/conf/distro/wayland.inc index af062a519..627a26a62 100644 --- a/sources/meta-yoe/conf/distro/wayland.inc +++ b/sources/meta-yoe/conf/distro/wayland.inc @@ -1,3 +1,3 @@ DISTRO_FEATURES:append = " wayland" -PACKAGECONFIG:append:pn-cog_rpi = " drm" +PACKAGECONFIG:append:pn-cog:rpi = " drm" diff --git a/sources/meta-yoe/conf/distro/yoe.inc b/sources/meta-yoe/conf/distro/yoe.inc index 290498c24..fa083189a 100644 --- a/sources/meta-yoe/conf/distro/yoe.inc +++ b/sources/meta-yoe/conf/distro/yoe.inc @@ -6,7 +6,7 @@ MAINTAINER = "Yoe Distro Community " TARGET_VENDOR = "-yoe" SDK_VENDOR = "-yoesdk" # Distro version is YYYY.MM -DISTRO_VERSION = "2021.11-rc.1" +DISTRO_VERSION = "2021.11" DISTRO_CODENAME = "langhe" SDK_VERSION := "${DISTRO_VERSION}" diff --git a/sources/meta-yoe/dynamic-layers/meta-ti/recipes-kernel/linux/linux-ti-staging/extra.cfg b/sources/meta-yoe/dynamic-layers/meta-ti/recipes-kernel/linux/linux-ti-staging/extra.cfg new file mode 100644 index 000000000..9f35c0af7 --- /dev/null +++ b/sources/meta-yoe/dynamic-layers/meta-ti/recipes-kernel/linux/linux-ti-staging/extra.cfg @@ -0,0 +1 @@ +CONFIG_USB_HID=y diff --git a/sources/meta-yoe/dynamic-layers/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend b/sources/meta-yoe/dynamic-layers/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend index 7b6564e99..d7a09b2e6 100644 --- a/sources/meta-yoe/dynamic-layers/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend +++ b/sources/meta-yoe/dynamic-layers/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend @@ -2,8 +2,10 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" SRC_URI += "file://wireguard.cfg \ file://updater.cfg \ + file://extra.cfg \ " KERNEL_CONFIG_FRAGMENTS += "${WORKDIR}/wireguard.cfg \ ${WORKDIR}/updater.cfg \ + ${WORKDIR}/extra.cfg \ " diff --git a/sources/meta-yoe/dynamic-layers/raspberrypi/recipes-bsp/u-boot/u-boot_%.bbappend b/sources/meta-yoe/dynamic-layers/raspberrypi/recipes-bsp/u-boot/u-boot_%.bbappend index 504e0adc3..0bf550604 100644 --- a/sources/meta-yoe/dynamic-layers/raspberrypi/recipes-bsp/u-boot/u-boot_%.bbappend +++ b/sources/meta-yoe/dynamic-layers/raspberrypi/recipes-bsp/u-boot/u-boot_%.bbappend @@ -1,3 +1,3 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" -SRC_URI:append_rpi = " file://0001-enables-larger-kernel-images.patch " +SRC_URI:append:rpi = " file://0001-enables-larger-kernel-images.patch " diff --git a/sources/meta-yoe/dynamic-layers/webkit/recipes-browser/wpebackend-rdk/wpebackend-rdk_%.bbappend b/sources/meta-yoe/dynamic-layers/webkit/recipes-browser/wpebackend-rdk/wpebackend-rdk_%.bbappend index 0d8643664..8d14b0c87 100644 --- a/sources/meta-yoe/dynamic-layers/webkit/recipes-browser/wpebackend-rdk/wpebackend-rdk_%.bbappend +++ b/sources/meta-yoe/dynamic-layers/webkit/recipes-browser/wpebackend-rdk/wpebackend-rdk_%.bbappend @@ -1,4 +1,4 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" # Enable rpi backend -PACKAGECONFIG:append_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' rpi', d)}" +PACKAGECONFIG:append:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' rpi', d)}" diff --git a/sources/meta-yoe/recipes-core/images/qt5.inc b/sources/meta-yoe/recipes-core/images/qt5.inc index d9949fa5c..1ab97767f 100644 --- a/sources/meta-yoe/recipes-core/images/qt5.inc +++ b/sources/meta-yoe/recipes-core/images/qt5.inc @@ -30,6 +30,7 @@ QT5BASE = "\ qtdeclarative \ qtdeclarative-qmlplugins \ qtdeclarative-plugins \ + ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'qtwayland-plugins', '', d)} \ " QTWEBKIT ??= "\ qtwebkit \ diff --git a/sources/openembedded-core b/sources/openembedded-core index 3770d539d..af90f9681 160000 --- a/sources/openembedded-core +++ b/sources/openembedded-core @@ -1 +1 @@ -Subproject commit 3770d539d83b589b3f8bde21fcf896bb046611d4 +Subproject commit af90f9681bae3defe841ddcf80755960792faa88