From e114134037fed2cb7d256eaf5abd1eb2ad0b272b Mon Sep 17 00:00:00 2001 From: Jiri Konecny Date: Tue, 10 Sep 2024 08:57:32 +0200 Subject: [PATCH] TEMP: Add lorax support Remove this when new Lorax version is released. --- dockerfile/anaconda-iso-creator/Dockerfile | 2 +- .../adjust-templates-for-wayland.patch | 68 +++++++++++++++++++ dockerfile/anaconda-iso-creator/lorax-build | 4 ++ .../anaconda-iso-creator/lorax-build.j2 | 4 ++ 4 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 dockerfile/anaconda-iso-creator/adjust-templates-for-wayland.patch diff --git a/dockerfile/anaconda-iso-creator/Dockerfile b/dockerfile/anaconda-iso-creator/Dockerfile index 98e32b9b7a02..ce5b5ddada38 100644 --- a/dockerfile/anaconda-iso-creator/Dockerfile +++ b/dockerfile/anaconda-iso-creator/Dockerfile @@ -42,7 +42,7 @@ RUN set -ex; \ COPY ["lorax-build", "/"] COPY ["lorax-build-webui", "/"] -COPY ["adjust-templates-for-webui.patch", "/"] +COPY ["adjust-templates-for-webui.patch", "adjust-templates-for-wayland.patch", "/"] RUN mkdir /lorax /anaconda-rpms /images diff --git a/dockerfile/anaconda-iso-creator/adjust-templates-for-wayland.patch b/dockerfile/anaconda-iso-creator/adjust-templates-for-wayland.patch new file mode 100644 index 000000000000..d0db07647f6d --- /dev/null +++ b/dockerfile/anaconda-iso-creator/adjust-templates-for-wayland.patch @@ -0,0 +1,68 @@ +From 6d04f50669ace117270c00709a245c67ed104276 Mon Sep 17 00:00:00 2001 +From: Jiri Konecny +Date: Tue, 13 Aug 2024 16:10:00 +0200 +Subject: [PATCH] Adjust Lorax templates for Xorg to Wayland switch + +Make sure packages and files needed for Wayland to work +are not purged during boot.iso generation time. + +Resolves: RHEL-38740 +Related: https://fedoraproject.org/wiki/Changes/Anaconda_As_Native_Wayland_Application +--- + share/templates.d/99-generic/runtime-cleanup.tmpl | 12 ++---------- + 1 file changed, 2 insertions(+), 10 deletions(-) + +diff --git a/share/templates.d/99-generic/runtime-cleanup.tmpl b/share/templates.d/99-generic/runtime-cleanup.tmpl +index 801514f1..12c45189 100644 +--- a/share/templates.d/99-generic/runtime-cleanup.tmpl ++++ b/share/templates.d/99-generic/runtime-cleanup.tmpl +@@ -9,8 +9,6 @@ remove usr/share/i18n + ## perl needed for powerpc-utils + ## perl is needed by /usr/bin/rxe_cfg from libibverbs + +-## no sound support, thanks +-removepkg flac-libs libsndfile pipewire pulseaudio* rtkit sound-theme-freedesktop wireplumber* + ## we don't create new initramfs/bootloader conf inside anaconda + ## (that happens inside the target system after we install dracut/grubby) + removepkg dracut-network grubby anaconda-dracut +@@ -52,7 +50,6 @@ removepkg mtools glibc-gconv-extra + + ## various other things we remove to save space + removepkg diffutils file +-removepkg libasyncns + removepkg lvm2-libs + removepkg mobile-broadband-provider-info + removepkg rmt rpcbind squashfs-tools +@@ -200,7 +197,6 @@ removefrom libidn2 /usr/share/locale/* + removefrom libnotify /usr/bin/* + removefrom libsemanage /etc/selinux/* + removefrom libstdc++ /usr/share/* +-removefrom libvorbis /usr/${libdir}/libvorbisenc.* + removefrom libxml2 /usr/bin/* + removefrom linux-firmware /usr/lib/firmware/dvb* + removefrom linux-firmware /usr/lib/firmware/*_12mhz* +@@ -293,7 +289,7 @@ removefrom openssh /usr/libexec/* + removefrom openssh-clients /etc/ssh/* /usr/bin/ssh-* + removefrom openssh-clients /usr/libexec/* + removefrom openssh-server /etc/ssh/* /usr/libexec/openssh/sftp-server +-removefrom pam /usr/*bin/* /usr/share/locale/* ++removefrom pam /usr/share/locale/* + removefrom policycoreutils /etc/* /usr/bin/* /usr/share/locale/* + removefrom polkit /usr/bin/* + removefrom popt /usr/share/locale/* +@@ -370,11 +366,7 @@ removefrom gstreamer1-plugins-base --allbut \ + removepkg geoclue2 + + ## And remove the packages that those extra libraries pulled in +-removepkg cdparanoia-libs opus libtheora libvisual flac-libs gsm avahi-glib avahi-libs \ +- ModemManager-glib +- +-## metacity requires libvorbis and libvorbisfile, but enc/dec are no longer needed +-removefrom libvorbis --allbut /usr/${libdir}/libvorbisfile.* /usr/${libdir}/libvorbis.* ++removepkg cdparanoia-libs libvisual avahi-glib avahi-libs ModemManager-glib + + ## Remove build-id links, they are used with debuginfo + remove /usr/lib/.build-id +-- +2.46.0 + diff --git a/dockerfile/anaconda-iso-creator/lorax-build b/dockerfile/anaconda-iso-creator/lorax-build index 8deb0affb86b..0070b988b4e1 100755 --- a/dockerfile/anaconda-iso-creator/lorax-build +++ b/dockerfile/anaconda-iso-creator/lorax-build @@ -31,6 +31,10 @@ INPUT_RPMS=/anaconda-rpms/ OUT_DIR=/images/ REPO_DIR=/tmp/anaconda-rpms/ +pushd /usr/share/lorax +patch -p2 -i /adjust-templates-for-wayland.patch +popd + # create repo from provided Anaconda RPMs mkdir -p $REPO_DIR cp -a $INPUT_RPMS/* $REPO_DIR || echo "RPM files can't be copied!" # We could just do the build with official repositories only diff --git a/dockerfile/anaconda-iso-creator/lorax-build.j2 b/dockerfile/anaconda-iso-creator/lorax-build.j2 index b568c8468ce0..813102824f90 100755 --- a/dockerfile/anaconda-iso-creator/lorax-build.j2 +++ b/dockerfile/anaconda-iso-creator/lorax-build.j2 @@ -24,6 +24,10 @@ INPUT_RPMS=/anaconda-rpms/ OUT_DIR=/images/ REPO_DIR=/tmp/anaconda-rpms/ +pushd /usr/share/lorax +patch -p2 -i /adjust-templates-for-wayland.patch +popd + # create repo from provided Anaconda RPMs mkdir -p $REPO_DIR cp -a $INPUT_RPMS/* $REPO_DIR || echo "RPM files can't be copied!" # We could just do the build with official repositories only