18 lines
218 B
Bash
18 lines
218 B
Bash
#!/bin/sh
|
|
|
|
PREREQ=""
|
|
prereqs()
|
|
{
|
|
echo "$PREREQ"
|
|
}
|
|
case $1 in
|
|
# get pre-requisites
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
# Always load the fbcon module for KMS, won't do any harm for
|
|
# other users anyway.
|
|
modprobe fbcon
|