summaryrefslogtreecommitdiff
path: root/scripts/plymouth-populate-initrd.in
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-06-13 17:16:44 -0400
committerPeter Jones <pjones@vroomfondel.internal.datastacks.com>2008-06-13 17:16:44 -0400
commita6f91f55b1ed638ebb6fcf8823a8dd4b7049fc39 (patch)
treec192fbe9dcba77b2d01a81148d21fa1f3d17c077 /scripts/plymouth-populate-initrd.in
parent54a651f30cb40c4adbba610aff86d20a4bc38e52 (diff)
Name the default plugin "default.so", not "graphical.so", so that it's obvious what's going on there.
Diffstat (limited to 'scripts/plymouth-populate-initrd.in')
-rwxr-xr-xscripts/plymouth-populate-initrd.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/plymouth-populate-initrd.in b/scripts/plymouth-populate-initrd.in
index 453a41fd..c2ba60b6 100755
--- a/scripts/plymouth-populate-initrd.in
+++ b/scripts/plymouth-populate-initrd.in
@@ -102,20 +102,20 @@ install -m755 ${LIBDIR}/plymouth/details.so ${INITRDDIR}${LIBDIR}/plymouth
install -D -m644 ${PLYMOUTH_LOGO_FILE} ${INITRDDIR}${PLYMOUTH_LOGO_FILE}
mkdir -p ${INITRDDIR}${DATADIR}/plymouth
-if [ ! -L ${LIBDIR}/plymouth/graphical.so ]; then
- echo "${LIBDIR}/plymouth/graphical.so needs to be a symlink to desired plugin" > /dev/stderr
+if [ ! -L ${LIBDIR}/plymouth/default.so ]; then
+ echo "${LIBDIR}/plymouth/default.so needs to be a symlink to desired plugin" > /dev/stderr
exit 1;
fi
-PLUGIN_NAME=$(basename $(readlink ${LIBDIR}/plymouth/graphical.so) .so)
+PLUGIN_NAME=$(basename $(readlink ${LIBDIR}/plymouth/default.so) .so)
if [ ! -f ${LIBDIR}/plymouth/${PLUGIN_NAME}.so ]; then
- echo "${LIBDIR}/plymouth/graphical.so links to ${LIBDIR}/plymouth/${PLUGIN_NAME}.so which doesn't exist" > /dev/stderr
+ echo "${LIBDIR}/plymouth/default.so links to ${LIBDIR}/plymouth/${PLUGIN_NAME}.so which doesn't exist" > /dev/stderr
exit 1;
fi
install -m755 ${LIBDIR}/plymouth/${PLUGIN_NAME}.so ${INITRDDIR}${LIBDIR}/plymouth
-(cd ${INITRDDIR}${LIBDIR}/plymouth; ln -sf ${PLUGIN_NAME}.so graphical.so)
+(cd ${INITRDDIR}${LIBDIR}/plymouth; ln -sf ${PLUGIN_NAME}.so default.so)
mkdir -p ${INITRDDIR}${DATADIR}/plymouth/${PLUGIN_NAME}
install -m644 ${DATADIR}/plymouth/${PLUGIN_NAME}/* ${INITRDDIR}${DATADIR}/plymouth/${PLUGIN_NAME}
install -D -m644 ${DATADIR}/plymouth/${PLUGIN_NAME}/* ${INITRDDIR}${DATADIR}/plymouth/${PLUGIN_NAME}