kexts: add stub VGA16 framebuffer driver
This commit is contained in:
12
kexts/drivers/video/vga16fb/main.c
Normal file
12
kexts/drivers/video/vga16fb/main.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <socks/printk.h>
|
||||
#include <socks/kext.h>
|
||||
|
||||
static kern_status_t online(struct kext *self)
|
||||
{
|
||||
printk("vga16fb: online");
|
||||
return KERN_OK;
|
||||
}
|
||||
|
||||
DEFINE_KEXT("net.doorstuck.socks.vga16fb",
|
||||
online, NULL,
|
||||
KEXT_NO_DEPENDENCIES);
|
||||
Reference in New Issue
Block a user