Linux中如何去掉LCD上闪烁的光标

2019-07-13 04:09发布

修改Linux内核中的文件:drivers/video/console/fbcon.c
去掉光标闪烁:
将函数static void fbcon_cursor(struct vc_data *vc, int mode)改为空函数即可。
去掉光标显示: 将函数static void fb_flashcursor(struct work_struct *work) 改为空函数。