21 lines
324 B
Bash
21 lines
324 B
Bash
#!/bin/sh
|
|
|
|
OPTION=FRAMEBUFFER
|
|
PREREQ="framebuffer console_setup brltty"
|
|
|
|
prereqs()
|
|
{
|
|
echo "$PREREQ"
|
|
}
|
|
|
|
case $1 in
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
printf '\033[?25l' > /dev/tty7
|
|
/sbin/plymouthd --mode=boot --attach-to-session --pid-file=/dev/.initramfs/plymouth.pid
|
|
/bin/plymouth show-splash
|