- config.sh: Replace pulseaudio entry in the xfce panel config for

the rescue CD with a separator

- config.sh: Run depmod for all kernel module directories to support
  kmps with mismatching versions (boo#1233432)

OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Images:openSUSE-Tumbleweed/livecd-openSUSE?expand=0&rev=197
This commit is contained in:
Fabian Vogt 2025-01-09 12:55:06 +00:00 committed by Git OBS Bridge
parent 4e32fedbc4
commit bdcfa4a427
2 changed files with 18 additions and 1 deletions

View File

@ -91,6 +91,9 @@ rm -rf /usr/lib*/libmfxhw*.so.* /usr/lib*/mfx/
if [ "$desktop" = "x11" ]; then
# Generated on boot if missing
rm /etc/udev/hwdb.bin
# xfce4-pulseaudio-plugin is omitted, remove it from the panel config.
# To avoid having to mess with IDs, just replace it with a separator.
sed -i 's/"pulseaudio"/"separator"/' /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
fi
# Kernel modules (+ firmware) for X13s
@ -146,7 +149,9 @@ rm -f /boot/System.map-* /lib/modules/*/System.map
# Decompress kernel modules, better for squashfs (boo#1192457)
find /lib/modules/*/kernel -name '*.ko.xz' -exec xz -d {} +
find /lib/modules/*/kernel -name '*.ko.zst' -exec zstd --rm -d {} +
depmod $(basename /lib/modules/*)
for moddir in /lib/modules/*; do
depmod "$(basename "$moddir")"
done
# Add repos from /etc/YaST2/control.xml
add-yast-repos

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Jan 9 09:28:23 UTC 2025 - Fabian Vogt <fvogt@suse.com>
- config.sh: Replace pulseaudio entry in the xfce panel config for
the rescue CD with a separator
-------------------------------------------------------------------
Thu Jan 9 08:26:48 UTC 2025 - Fabian Vogt <fvogt@suse.com>
- config.sh: Run depmod for all kernel module directories to support
kmps with mismatching versions (boo#1233432)
-------------------------------------------------------------------
Wed Nov 27 08:56:55 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>