* High CVE-2025-13630: Type Confusion in V8 * High CVE-2025-13631: Inappropriate implementation in Google Updater * High CVE-2025-13632: Inappropriate implementation in DevTools * High CVE-2025-13633: Use after free in Digital Credentials * Medium CVE-2025-13634: Inappropriate implementation in Downloads * Medium CVE-2025-13720: Bad cast in Loader * Medium CVE-2025-13721: Race in v8 * Low CVE-2025-13635: Inappropriate implementation in Downloads * Low CVE-2025-13636: Inappropriate implementation in Split View * Low CVE-2025-13637: Inappropriate implementation in Downloads * Low CVE-2025-13638: Use after free in Media Stream * Low CVE-2025-13639: Inappropriate implementation in WebRTC * Low CVE-2025-13640: Inappropriate implementation in Passwords - Drop workaround darkmode-image-policy.patch - Fix build error due to Unresolved dependencies - Fix swiftshader to compile with llvm-16.0 - Refresh python-3.9-ftbfs patch for el9 - Refresh ppc64le patches - Refresh chromium.conf
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
Index: chromium-143.0.7499.40/components/variations/proto/study.proto
|
|
===================================================================
|
|
--- chromium-143.0.7499.40.orig/components/variations/proto/study.proto
|
|
+++ chromium-143.0.7499.40/components/variations/proto/study.proto
|
|
@@ -293,6 +293,9 @@ message Study {
|
|
// A Mac-only value, indicating an x86-64 binary running on an arm64 host
|
|
// via "Rosetta 2" binary translation.
|
|
TRANSLATED_X86_64 = 4;
|
|
+
|
|
+ // A POSIX-only value, indicating an OpenPOWER host
|
|
+ PPC64 = 5;
|
|
}
|
|
|
|
// Enum to pass as optional bool.
|
|
Index: chromium-143.0.7499.40/components/variations/service/variations_field_trial_creator.cc
|
|
===================================================================
|
|
--- chromium-143.0.7499.40.orig/components/variations/service/variations_field_trial_creator.cc
|
|
+++ chromium-143.0.7499.40/components/variations/service/variations_field_trial_creator.cc
|
|
@@ -105,6 +105,9 @@ Study::CpuArchitecture GetCurrentCpuArch
|
|
if (process_arch == "x86") {
|
|
return Study::X86_32;
|
|
}
|
|
+ if (process_arch == "PPC_64") {
|
|
+ return Study::PPC64;
|
|
+ }
|
|
if (process_arch == "x86_64") {
|
|
std::string os_arch = base::SysInfo::OperatingSystemArchitecture();
|
|
if (base::StartsWith(os_arch, "arm",
|