diff options
Diffstat (limited to 'main/openrc/hwdrivers.initd')
-rw-r--r-- | main/openrc/hwdrivers.initd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/openrc/hwdrivers.initd b/main/openrc/hwdrivers.initd index eda9b65810..80184c9710 100644 --- a/main/openrc/hwdrivers.initd +++ b/main/openrc/hwdrivers.initd @@ -23,8 +23,8 @@ start() { | xargs modprobe -b -a 2> /dev/null # check if framebuffer drivers got pulled in - if [ -e /sys/module/fb ] && ! [ -e /sys/module/fbcon ]; then - modprobe fbcon + if [ -e /dev/fb0 ] && ! [ -e /sys/module/fbcon ]; then + modprobe -b -q fbcon fi eend 0 |