22 lines
229 B
Bash
Executable file
22 lines
229 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PREREQ=""
|
|
|
|
prereqs()
|
|
{
|
|
echo "$PREREQ"
|
|
}
|
|
|
|
case $1 in
|
|
# get pre-requisites
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
# Hook to add the fbcon module
|
|
. /usr/share/initramfs-tools/hook-functions
|
|
manual_add_modules fbcon
|
|
|
|
exit 0
|