Bump linux buildroot (#1032)

* Update buildroot to 2020.11-rc3

Signed-off-by: Stefan Agner <stefan@agner.ch>

* ODROID: Update kernel 5.9.11

* Remove patch which has been applied upstream

* Linux: Update kernel 5.4.80
This commit is contained in:
Stefan Agner
2020-11-28 16:19:21 +01:00
committed by GitHub
parent bda9c3d715
commit 18cc261e35
93 changed files with 1219 additions and 407 deletions

View File

@@ -1,42 +0,0 @@
From 1ca7dea56db25969844699bc82fe7c78cb3d2eda Mon Sep 17 00:00:00 2001
From: Peter Seiderer <ps.report@gmx.net>
Date: Tue, 10 Nov 2020 23:06:45 +0100
Subject: [PATCH] WebProcess/InjectedBundle: fix compile without video support
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Fixes:
.../wpewebkit-2.30.2/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.cpp:242:30: error: class WebCore::Settings has no member named setGenericCueAPIEnabled; did you mean setBeaconAPIEnabled?
page->settings().setGenericCueAPIEnabled(enabled);
^~~~~~~~~~~~~~~~~~~~~~~
setBeaconAPIEnabled
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.cpp b/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.cpp
index 61326f2e..d7776997 100644
--- a/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.cpp
+++ b/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.cpp
@@ -236,12 +236,14 @@ void InjectedBundle::overrideBoolPreferenceForTestRunner(WebPageGroupProxy* page
RuntimeEnabledFeatures::sharedFeatures().setWebRTCMDNSICECandidatesEnabled(enabled);
#endif
+#if ENABLE(VIDEO)
if (preference == "WebKitGenericCueAPIEnabled") {
WebPreferencesStore::overrideBoolValueForKey(WebPreferencesKey::genericCueAPIEnabledKey(), enabled);
for (auto* page : pages)
page->settings().setGenericCueAPIEnabled(enabled);
return;
}
+#endif
#if ENABLE(GPU_PROCESS)
if (preference == "WebKitUseGPUProcessForMedia" || preference == "WebKitCaptureAudioInGPUProcessEnabledKey") {
--
2.29.2

View File

@@ -1,7 +1,7 @@
# From https://wpewebkit.org/releases/wpewebkit-2.30.2.tar.xz.sums
md5 5b0fed3333b53dbb36e572935fd54a7b wpewebkit-2.30.2.tar.xz
sha1 a143723fb77c2ea20bad888b95ccc37a7dd5b375 wpewebkit-2.30.2.tar.xz
sha256 c94925ca2d655c7fc07dbc2d4b7a47a822c7699816a8cca35ed9efd676b5ba86 wpewebkit-2.30.2.tar.xz
# From https://wpewebkit.org/releases/wpewebkit-2.30.3.tar.xz.sums
md5 75f6ef1819b182043a25b916272ebec6 wpewebkit-2.30.3.tar.xz
sha1 2ed723f779513205449e0c5b7c080eb19d635aee wpewebkit-2.30.3.tar.xz
sha256 f2dfc1a6279810353f601bb9bd0d8ef671b41b38352d679b93d01631c2bf7b4b wpewebkit-2.30.3.tar.xz
# Hashes for license files:
sha256 0b5d3a7cc325942567373b0ecd757d07c132e0ebd7c97bfc63f7e1a76094edb4 Source/WebCore/LICENSE-APPLE

View File

@@ -4,7 +4,7 @@
#
################################################################################
WPEWEBKIT_VERSION = 2.30.2
WPEWEBKIT_VERSION = 2.30.3
WPEWEBKIT_SITE = http://www.wpewebkit.org/releases
WPEWEBKIT_SOURCE = wpewebkit-$(WPEWEBKIT_VERSION).tar.xz
WPEWEBKIT_INSTALL_STAGING = YES