Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Towards 2021.11 release #624

Merged
merged 6 commits into from
Nov 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sources/meta-raspberrypi
2 changes: 1 addition & 1 deletion sources/meta-yoe/conf/distro/eglfs.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion sources/meta-yoe/conf/distro/wayland.inc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
DISTRO_FEATURES:append = " wayland"

PACKAGECONFIG:append:pn-cog_rpi = " drm"
PACKAGECONFIG:append:pn-cog:rpi = " drm"
2 changes: 1 addition & 1 deletion sources/meta-yoe/conf/distro/yoe.inc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MAINTAINER = "Yoe Distro Community <http://yoedistro.org>"
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}"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONFIG_USB_HID=y
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
"
Original file line number Diff line number Diff line change
@@ -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 "
Original file line number Diff line number Diff line change
@@ -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)}"
1 change: 1 addition & 0 deletions sources/meta-yoe/recipes-core/images/qt5.inc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ QT5BASE = "\
qtdeclarative \
qtdeclarative-qmlplugins \
qtdeclarative-plugins \
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'qtwayland-plugins', '', d)} \
"
QTWEBKIT ??= "\
qtwebkit \
Expand Down
2 changes: 1 addition & 1 deletion sources/openembedded-core
Submodule openembedded-core updated 41 files
+6 −12 meta/classes/sanity.bbclass
+3 −1 meta/classes/testimage.bbclass
+1 −1 meta/conf/distro/include/tcmode-default.inc
+1 −1 meta/lib/oe/distro_check.py
+3 −4 meta/lib/oe/terminal.py
+19 −0 meta/lib/oeqa/runtime/cases/go.py
+7 −7 meta/lib/oeqa/runtime/cases/parselogs.py
+0 −32 meta/recipes-core/ovmf/ovmf/0004-Strip-build-paths.patch
+0 −1 meta/recipes-core/ovmf/ovmf_git.bb
+7 −0 meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
+2 −4 meta/recipes-devtools/go/go-1.17.3.inc
+0 −0 meta/recipes-devtools/go/go-1.17/0001-allow-CC-and-CXX-to-have-multiple-words.patch
+41 −23 meta/recipes-devtools/go/go-1.17/0002-cmd-go-make-content-based-hash-generation-less-pedan.patch
+10 −5 meta/recipes-devtools/go/go-1.17/0003-allow-GOTOOLDIR-to-be-overridden-in-the-environment.patch
+0 −0 meta/recipes-devtools/go/go-1.17/0004-ld-add-soname-to-shareable-objects.patch
+9 −7 meta/recipes-devtools/go/go-1.17/0005-make.bash-override-CC-when-building-dist-and-go_boot.patch
+35 −26 meta/recipes-devtools/go/go-1.17/0006-cmd-dist-separate-host-and-target-builds.patch
+0 −0 meta/recipes-devtools/go/go-1.17/0007-cmd-go-make-GOROOT-precious-by-default.patch
+0 −0 meta/recipes-devtools/go/go-1.17/0008-use-GOBUILDMODE-to-set-buildmode.patch
+13 −14 meta/recipes-devtools/go/go-1.17/0009-Revert-cmd-go-make-sure-CC-and-CXX-are-absolute.patch
+2 −2 meta/recipes-devtools/go/go-binary-native_1.17.3.bb
+0 −0 meta/recipes-devtools/go/go-cross-canadian_1.17.3.bb
+0 −0 meta/recipes-devtools/go/go-cross_1.17.3.bb
+0 −0 meta/recipes-devtools/go/go-crosssdk_1.17.3.bb
+0 −0 meta/recipes-devtools/go/go-native_1.17.3.bb
+0 −0 meta/recipes-devtools/go/go-runtime_1.17.3.bb
+0 −0 meta/recipes-devtools/go/go_1.17.3.bb
+0 −50 meta/recipes-devtools/libcomps/libcomps/0001-Add-crc32.c-to-sources-list.patch
+0 −1 meta/recipes-devtools/libcomps/libcomps_0.1.18.bb
+1 −1 meta/recipes-devtools/libdnf/libdnf/0001-Add-WITH_TESTS-option.patch
+1 −1 meta/recipes-devtools/libdnf/libdnf/0001-Look-fo-sphinx-only-if-documentation-is-actually-ena.patch
+2 −8 meta/recipes-devtools/meson/meson/0001-gtkdoc-fix-issues-that-arise-when-cross-compiling.patch
+1 −1 meta/recipes-devtools/perl-cross/files/0001-configure_path.sh-do-not-hardcode-prefix-lib-as-libr.patch
+1 −1 meta/recipes-devtools/perl-cross/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch
+1 −1 meta/recipes-devtools/perl-cross/files/0001-perl-cross-add-LDFLAGS-when-linking-libperl.patch
+1 −1 meta/recipes-devtools/perl/files/0001-ExtUtils-MakeMaker-add-LDFLAGS-when-linking-binary-m.patch
+1 −0 meta/recipes-devtools/python/python3-rfc3339-validator_0.1.4.bb
+1 −0 meta/recipes-devtools/python/python3-rfc3986-validator_0.1.1.bb
+3 −3 meta/recipes-extended/go-examples/go-helloworld_0.1.bb
+1 −1 meta/recipes-graphics/wayland/weston-init/init
+1 −1 meta/recipes-graphics/wayland/weston-init/weston.service