The widely available and standardized UEFI Graphics Output Protocol (GOP) interface is an excellent alternative to VGA or serial port consoles for printing logs to the screen.
This project aims to implement a UEFI GOP based console. For more information, check out Part I of this series.
Using a placeholder font, it is now possible to print null-terminated strings to the screens.
It is also possible to scale the font in both the axes independently
I've also implemented scrolling. When all the lines are filled and a new log needs to be printed, the current logs on the screen are scrolled up (using memcpy
)
Right now, scrolling moves all the framebuffer data in place. Reads and writes in framebuffer memory are slower because the video adapter actually syncs the framebuffer with the screen. This needs to be optimized!
I would like to thank all the great Unikraft folk for being a great community!
Feel free to ask questions, report issues, and meet new people.