0e261d956d
VirtualTerminal.cpp uses the Linux/FreeBSD VT ioctls (VT_ACTIVATE, VT_WAITACTIVE, VT_SETMODE, KDSETMODE, ...) which Redox does not have -> "VT_ACTIVATE was not declared". Redox has no VT switching; the greeter runs directly on the compositor/framebuffer. Add a #if defined(__redox__) branch providing no-op stubs for the public API (path/currentVt/setUpNewVt/jumpToVt) and skip the linux/vt.h + linux/kd.h includes. Durable patch.