From a device driver I am trying to print on the framebuffer console where boot logo is displayed. Please help me with any ideas to access it from driver.

I am relatively new to drivers.

Tried tty->driver->write, got the tty from current->signal->tty; but this didn't work.

my_data.tty = current->signal->tty;

struct data *foo = container_of( &my_data.tty, struct data, tty );

struct tty_struct *tty = foo->tty;

tty->driver->write( tty, message, strlen( message ) );


Also tried

struct vc_data *fg_vc = vc_cons[fg_console].d;

vga_con.con_putc(fg_vc, 'H',1,1);


Thanks in advance

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.