/usr/share/tcos/hooks-addons/90usplash is in initramfs-tools-tcos 0.89.86.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # hook-addon for disable usplash support
if [ $TCOS_DISABLE_UPLASH ]; then
rm -f ${DESTDIR}/lib/usplash
rm -f ${DESTDIR}/sbin/usplash
rm -f ${DESTDIR}/sbin/usplash_write
rm -f $DESTDIR/usr/lib/usplash/*.so
cat << EOF > ${DESTDIR}/sbin/usplash
#!/bin/sh
exit 0
EOF
chmod +x ${DESTDIR}/sbin/usplash
cat << EOF > ${DESTDIR}/sbin/usplash_write
#!/bin/sh
exit 0
EOF
chmod +x ${DESTDIR}/sbin/usplash_write
_verbose "(90usplash) TCOS_DISABLE_USPLASH enabled !!!"
fi # end if TCOS_DISABLE_USPLASH
|