Which is the actual console driver used by printk function? (x86, 32bit)
Hi All:
Which is the actual console driver used by printk function? (x86, 32bit)
When boot the kernel, the printk output message on the monitor,
printk function will run to struct console->write, consw-> con_putcs,
but con_putcs of the vga_con, dummy_con is DUMMY (empty deal).
I want to look for the basic output and input implement of linux kernel,
But confuse on which is the actual console driver used?
Can anybody help me? Thanks.