kexts: add generic vga/fb tty driver

This commit is contained in:
2023-06-10 21:41:46 +01:00
parent d09ad5838e
commit 4cd9ebcb4f
9 changed files with 395 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
#ifndef SOCKS_FBCON_H_
#define SOCKS_FBCON_H_
#include <socks/status.h>
struct device;
extern kern_status_t start_console_on_framebuffer(struct device *fb);
extern void early_vgacon_init(void);
#endif