Add new plymouth-set-default-plugin script

This script updates which plugin graphical.so points to
calculate-0.9.5
Ray Strode 16 years ago
parent ec3d0a0e5c
commit e86a9268dc

@ -3,10 +3,13 @@ noinst_SCRIPTS = new-object.sh
initrdscriptdir = $(libexecdir)/plymouth
initrdscript_SCRIPTS = plymouth-update-initrd plymouth-populate-initrd
sbinscriptsdir = $(sbindir)
sbinscripts_SCRIPTS = plymouth-set-default-plugin
if ADD_BOOT_ENTRY
install-data-hook:
PLYMOUTH_LOGO_FILE=$(logofile) $(initrdscriptdir)/plymouth-update-initrd
endif
EXTRA_DIST=$(initrdscript_SCRIPTS) $(noinst_SCRIPTS) default.cfg
EXTRA_DIST=$(initrdscript_SCRIPTS) $(sbinscripts_SCRIPTS) $(noinst_SCRIPTS) default.cfg
MAINTAINERCLEANFILES = Makefile.in

@ -0,0 +1,27 @@
#!/bin/bash
set -e
[ -z "$LIBEXECDIR" ] && LIBEXECDIR="/usr/libexec"
[ -z "$DATADIR" ] && DATADIR="/usr/share"
[ -z "$LIB" ] && $(eu-readelf -h /usr/bin/plymouth | grep Class | grep -q ELF64) && LIB="lib64" || LIB="lib"
[ -z "$LIBDIR" ] && LIBDIR="/usr/$LIB"
[ -z "$BINDIR" ] && BINDIR="/usr/bin"
if [ $# -lt 1 ]; then
basename $(readlink ${LIBDIR}/plymouth/graphical.so) .so
exit $?
fi
if [ `id -u` -ne 0 ]; then
echo "This program must be run as root" > /dev/stderr
exit 1
fi
if [ ! -e ${LIBDIR}/plymouth/$1.so ]; then
echo "${LIBDIR}/plymouth/$1.so does not exist" > /dev/stderr
exit 1
fi
(cd ${LIBDIR}/plymouth; ln -sf $1 graphical.so)
Loading…
Cancel
Save