13 lines
238 B
C
13 lines
238 B
C
#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);
|