/dev/fb0 problem

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

/dev/fb0 problem

1,747 次查看
carmilili
Contributor III

Hello

     My board is IMX6Q-SDB. When I test the node of /dev/fb0,the video output by HDMI.I find a black point on the left of the screen.You can use the demo of mxc_fb_test.out to see it.

     How can I solve it?

     Thank you.

123.jpg

标签 (5)
5 回复数

1,362 次查看
justin_jiang
NXP Employee
NXP Employee

Which release are you using? Can you change another HDMI display to test?

1,362 次查看
carmilili
Contributor III

LTIB:3.0.35_4.0_130816

I find it is the cursor.

0 项奖励
回复

1,362 次查看
Yuri
NXP Employee
NXP Employee

As for cursor, You may try the following to stop blinking cursor:

# echo 0 > /sys/class/graphics/fbcon/cursor_blink

or in order to  hide cursor:


# echo -e '\033[?17;0;0c' > /dev/tty1 (from serial console)

or

# echo -e '\033[?17;0;0c'    (from framebuffer console)


Have a great day,
Yuri

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

1,362 次查看
carmilili
Contributor III

Now ,I  through modify the kernel file of fbcon.c to stop blinking cursor .

0 项奖励
回复

1,362 次查看
justin_jiang
NXP Employee
NXP Employee

OK. Thanks for update. This version should have no problem, I verified it on my side.