Currently, in CappuccinOS, drivers like the [keyboard driver](https://github.com/juls0730/CappuccinOS/blob/main/src/drivers/keyboard.rs) and the [serial driver](https://github.com/juls0730/CappuccinOS/blob/main/src/drivers/serial.rs) are always loaded and in the kernel. These drivers should only be loaded if either, manually called for via something similar to `modprobe` on Linux, or defined to load based on device detection (or something like this). Of course, this is currently not possible until #6 is complete.