public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/chromium] epel9-next: fixed rhbz#2293202, chromium Wayland UI regression
@ 2026-08-07 16:06 Than Ngo
0 siblings, 0 replies; only message in thread
From: Than Ngo @ 2026-08-07 16:06 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/chromium
Branch : epel9-next
Commit : b58288b7fb97f2dde216da38bbc5a83217aec0bc
Author : Than Ngo <than@redhat.com>
Date : 2024-07-07T11:19:11+02:00
Stats : +20/-8 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/chromium/c/b58288b7fb97f2dde216da38bbc5a83217aec0bc?branch=epel9-next
Log:
fixed rhbz#2293202, chromium Wayland UI regression
---
diff --git a/chromium-browser.sh b/chromium-browser.sh
index 26f6a7c..4ed62f5 100755
--- a/chromium-browser.sh
+++ b/chromium-browser.sh
@@ -39,7 +39,6 @@ CHROMIUM_DISTRO_FLAGS=" --enable-plugins \
--enable-extensions \
--enable-user-scripts \
--enable-printing \
- --enable-gpu-rasterization \
--enable-sync \
--auto-ssl-client-auth @@EXTRA_FLAGS@@"
diff --git a/chromium.conf b/chromium.conf
index 267f62e..62cecce 100644
--- a/chromium.conf
+++ b/chromium.conf
@@ -1,17 +1,25 @@
# system wide chromium flags
+ARCH="$(arch)"
+
# GRAPHIC_DRIVER=[amd|intel|nvidia|default]
GRAPHIC_DRIVER=default
# WEB_DARKMODE=[on|off]
WEB_DARKMODE=off
+# NATIVE_WAYLAND=[on|off]
+NATIVE_WAYLAND=off
+
CHROMIUM_FLAGS=""
-CHROMIUM_FLAGS+=" --enable-native-gpu-memory-buffers"
-CHROMIUM_FLAGS+=" --enable-gpu-memory-buffer-video-frames"
-CHROMIUM_FLAGS+=" --enable-zero-copy"
-CHROMIUM_FLAGS+=" --ignore-gpu-blocklist --disable-gpu-driver-bug-workaround"
-CHROMIUM_FLAGS+=" --enable-chrome-browser-cloud-management"
+if [ "$NATIVE_WAYLAND" == "off" ] ; then
+ CHROMIUM_FLAGS+=" --enable-native-gpu-memory-buffers"
+ CHROMIUM_FLAGS+=" --enable-gpu-memory-buffer-video-frames"
+ CHROMIUM_FLAGS+=" --enable-zero-copy"
+ CHROMIUM_FLAGS+=" --ignore-gpu-blocklist --disable-gpu-driver-bug-workaround"
+ CHROMIUM_FLAGS+=" --enable-chrome-browser-cloud-management"
+ CHROMIUM_FLAGS+=" --enable-gpu-rasterization"
+fi
FEATURES=""
@@ -45,4 +53,6 @@ if [ "$WEB_DARKMODE" == "on" ] ; then
FEATURES+=",$darktype"
fi
-CHROMIUM_FLAGS+=" --enable-features=$FEATURES"
+if [ "$ARCH" == "x86_64" ] ; then
+ CHROMIUM_FLAGS+=" --enable-features=$FEATURES"
+fi
diff --git a/chromium.spec b/chromium.spec
index 8f1e924..5c6a9ed 100644
--- a/chromium.spec
+++ b/chromium.spec
@@ -311,7 +311,7 @@
Name: chromium%{chromium_channel}
Version: 126.0.6478.126
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A WebKit (Blink) powered web browser that Google doesn't want you to use
Url: http://www.chromium.org/Home
License: BSD-3-Clause AND LGPL-2.1-or-later AND Apache-2.0 AND IJG AND MIT AND GPL-2.0-or-later AND ISC AND OpenSSL AND (MPL-1.1 OR GPL-2.0-only OR LGPL-2.0-only)
@@ -2131,6 +2131,9 @@ getent group chrome-remote-desktop >/dev/null || groupadd -r chrome-remote-deskt
%endif
%changelog
+* Sun Jul 07 2024 Than Ngo <than@redhat.com> - 126.0.6478.126-2
+- fixed rhbz#2293202, chromium Wayland UI regression
+
* Tue Jun 25 2024 Than Ngo <than@redhat.com> - 126.0.6478.126-1
- update to 126.0.6478.126
* High CVE-2024-6290: Use after free in Dawn
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-07 16:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-07 16:06 [rpms/chromium] epel9-next: fixed rhbz#2293202, chromium Wayland UI regression Than Ngo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox