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