blob: 714e9a97623c2d3e8ccc0e0ce15eb0b8798c2b8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/sh
PREREQ=""
prereqs()
{
echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
esac
# Hooks for loading extra kernel bits into the initramfs
. /usr/share/initramfs-tools/hook-functions
fbcon=n
for x in ${MODULESDIR}/initrd/*; do
x=${x##*/}
x=${x%.*}
case ${x} in
'*')
break
;;
*fb)
fbcon=y
;;
esac
force_load ${x}
done
# And add vga16fb for usplash to use as well
manual_add_modules vga16fb
if [ ${fbcon} = "y" ]; then
force_load fbcon
fi
|