From 7540c7a53f7bc8907b264994f440089a6fb85446 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Sat, 8 Aug 2026 17:08:48 +0200 Subject: plymouth: add version 26.134.222 SBo ships 22.02.122, four years behind upstream and predating SimpleDRM support. Written from the meson template rather than bumped, since upstream switched from autotools to meson. systemd-integration now defaults to true in meson and has to be disabled explicitly, and release-file defaults to /etc/system-release. All build deps are satisfied by stock -current, so REQUIRES is empty. -current only: PANGO_ATTR_FONT_SCALE needs pango >= 1.50 and 15.0 ships 1.48.11, so label-pango fails to compile there. Co-Authored-By: Claude Opus 5 --- plymouth/doinst.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plymouth/doinst.sh (limited to 'plymouth/doinst.sh') diff --git a/plymouth/doinst.sh b/plymouth/doinst.sh new file mode 100644 index 0000000..02db71b --- /dev/null +++ b/plymouth/doinst.sh @@ -0,0 +1,15 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/plymouth/plymouthd.conf.new +config etc/logrotate.d/bootlog.new -- cgit v1.2.3