mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-25 22:27:49 +08:00
Notes
- GCC 14
- Wayland is mandatory to use as X11 has been removed
- DISPLAY=:0 should not be used anymore as it's for X11
- Java JDK 21
- mysql replaced by mariadb
- gstreamer1-plugin-openh264 not available
- nodejs-16 upgraded to nodejs-22
- Squish is no longer installed in provisioning
- SBOM needs jsonschema > 4.19 to work with Python 3.12
- Has these to bypass 'Activities Overview'
- 'GNOME Classic' Desktop Session
- 'No Overview' GNOME extension
- 7z >= 25.01 multi-hop symlinks restricted with -snl switch levels
--> 7z x -snld10 allows minimal usage to use multi symlinks
EGL support
- No longer need to install mesa-libEGL with pinned version
- As there is no longer Xorg to crash when Wayland is used instead
Pick-to: 6.11
Task-number: QTQAINFRA-7203
Task-number: QTQAINFRA-7202
Change-Id: If8b7bfdbc2b84259fd09276e0566b3967c364668
Reviewed-by: Simo Fält <simo.falt@qt.io>
38 lines
1.5 KiB
Bash
38 lines
1.5 KiB
Bash
#!/usr/bin/env bash
|
|
# Copyright (C) 2026 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
set -ex
|
|
|
|
echo "set WritePreparedUpdates=false" | sudo tee -a /etc/PackageKit/PackageKit.conf
|
|
sudo systemctl stop packagekit
|
|
sudo systemctl mask --now packagekit
|
|
while sudo fuser /usr/libexec/packagekitd >/dev/null 2>&1; do
|
|
echo "Waiting for PackageKit to finish..."
|
|
sleep 1
|
|
sudo systemctl stop packagekit
|
|
done
|
|
sudo yum -y remove PackageKit gnome-software
|
|
|
|
sudo subscription-manager config --rhsm.manage_repos=1
|
|
sudo subscription-manager refresh
|
|
|
|
# List available RHEL versions and bind with correct one
|
|
sudo subscription-manager release --list
|
|
|
|
# Do not update Tier 1 via GUI without using this same --set
|
|
# - To avoid System to have newer packages than RPMS which will cause update issues
|
|
sudo subscription-manager release --set=10.0
|
|
sudo yum clean all
|
|
|
|
# sudo yum config-manager --enable 'rhceph-4-tools-for-rhel-8-x86_64-rpms'
|
|
sudo yum config-manager --enable 'codeready-builder-for-rhel-10-x86_64-rpms'
|
|
sudo yum config-manager --enable 'rhel-10-for-x86_64-baseos-rpms'
|
|
sudo yum config-manager --enable 'rhel-10-for-x86_64-appstream-rpms'
|
|
# Epel is required for 'double-conversion-devel', 'libsqlite3x' and 'p7zip'
|
|
sudo dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm
|
|
|
|
sudo yum clean all
|
|
# As well as this fetching the repository data, we also get a printout of the used repos
|
|
sudo yum repolist
|