You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
![]()
14 years ago
|
#!/bin/bash
|
||
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
||
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
||
|
|
||
|
check() {
|
||
|
[[ -x /sbin/plymouthd && -x /bin/plymouth && -x /usr/sbin/plymouth-set-default-theme ]]
|
||
|
}
|
||
|
|
||
|
depends() {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
installkernel() {
|
||
|
# Include KMS capable drm drivers
|
||
|
for modname in $(find "$srcmods/kernel/drivers/gpu/drm" "$srcmods/extra" -name '*.ko' 2>/dev/null); do
|
||
|
grep -q drm_crtc_init $modname && instmods $modname
|
||
|
done
|
||
|
}
|
||
|
|
||
|
install() {
|
||
|
if grep -q nash /usr/libexec/plymouth/plymouth-populate-initrd \
|
||
|
|| ! grep -q PLYMOUTH_POPULATE_SOURCE_FUNCTIONS /usr/libexec/plymouth/plymouth-populate-initrd \
|
||
|
|| [ ! -x /usr/libexec/plymouth/plymouth-populate-initrd ]; then
|
||
|
. "$moddir"/plymouth-populate-initrd
|
||
|
else
|
||
|
PLYMOUTH_POPULATE_SOURCE_FUNCTIONS="$dracutfunctions" \
|
||
|
/usr/libexec/plymouth/plymouth-populate-initrd -t $initdir
|
||
|
fi
|
||
|
|
||
|
inst_hook pre-pivot 90 "$moddir"/plymouth-newroot.sh
|
||
|
inst_hook pre-trigger 10 "$moddir"/plymouth-pretrigger.sh
|
||
|
inst_hook emergency 50 "$moddir"/plymouth-emergency.sh
|
||
|
inst readlink
|
||
|
}
|
||
|
|