10-plymouth 370 Bytes
Newer Older
1 2 3 4 5 6 7 8
#!/bin/sh

CONFIG=/etc/plymouth/plymouthd.conf

if [ -f "$CONFIG" ]; then
	grep -q '^Theme=' "$CONFIG" || sed -i 's/#\([T\[]\)/\1/' "$CONFIG"
fi

9 10 11 12 13
CONFIG="$destdir/etc/initrd.mk"
if [ -f "$CONFIG" ]; then
	grep -q plymouth "$CONFIG" || echo 'FEATURES += plymouth' >> "$CONFIG"
fi

14 15
cp -a /usr/share/plymouth/default-install-duration \
	/var/lib/plymouth/boot-duration ||: