d78588a13c
* Add a script to load fbcon module very early so that KMS doesn't fail. * Removed all_generic_ide, it's obsolete. --HG-- extra : convert_revision : 415ea2975ff900d4b2f2d9dfdf0c3c57ec98167e
18 lines
218 B
Bash
Executable file
18 lines
218 B
Bash
Executable file
#!/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
|