diff options
author | Ben Collins <bcollins@ubuntu.com> | 2008-03-18 11:46:44 -0400 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2009-03-20 22:48:05 +0100 |
commit | 7e3f1f2ef6477cf9ab93793d12168ee9ae8c5571 (patch) | |
tree | 673686a2369204731fffa08493cc60bc07954c09 /scripts | |
parent | 966fb31cdcae2bb9f47c9f5a1f39b37514a81b7b (diff) | |
download | initramfs-tools-7e3f1f2ef6477cf9ab93793d12168ee9ae8c5571.tar.gz initramfs-tools-7e3f1f2ef6477cf9ab93793d12168ee9ae8c5571.zip |
init-top/framebuffer: ignore blacklist for forced vga= usage.
DO NOT USE -Qb for framebuffer.
Blank ttys when using vesafb (vga=xxx) LP: #129910
[ s/-Q/-q/ for modprobe options -maks ]
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/init-top/framebuffer | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/init-top/framebuffer b/scripts/init-top/framebuffer index 0ed798e..c5c18b9 100755 --- a/scripts/init-top/framebuffer +++ b/scripts/init-top/framebuffer @@ -87,8 +87,9 @@ uvesafb) esac if [ -n "${FB}" ]; then - modprobe fbcon - modprobe ${FB} ${OPTS} + unset MODPROBE_OPTIONS + modprobe -q fbcon + modprobe -q ${FB} ${OPTS} fi if [ -e /proc/fb ]; then |