Answers:
您正在使用所谓的内核模式设置(KMS)来确保在启动过程中尽早加载了Intel图形驱动程序,因此可以正确显示“花式”启动屏幕。
内核模式设置(KMS)将选择和设置图形模式的责任从X.org转移到了内核。启动X.org时,它将检测并使用该模式,而无需任何其他模式更改。这有望使启动速度更快,图形更多,闪烁更少 /ubuntu/1080/what-is-kernel-mode-setting
另请参阅https://wiki.archlinux.org/index.php/Kernel_Mode_Setting#Early_KMS_start
我的情况是在Intel Atom D2500HN主板上,grub后有黑屏/黑屏
我的解决方案:
~$ sudo <your_editor> /etc/default/grub
##video=LVDS-1:d is disabling LVDS-1 port which some kernel version might be directing the video to that port on default despite your mobo might not have such a port available to you
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.modeset=1 video=LVDS-1:d"
因此,以上仅将视频输出定向到VGA端口。
由于https://bbs.archlinux.org/viewtopic.php?id=145648 ,我的问题得到了解决,而这又从http://permalink.gmane.org/gmane.linux.mageia.devel/获得了该解决方案 13667