In my /etc/mkinitcpio.conf
, I have added the hid_apple
module, see the output of head /etc/mkinitcpio.conf
below:
# vim:set ft=sh# MODULES# The following modules are loaded before any boot hooks are# run. Advanced users may wish to specify all system modules# in this array. For instance:# MODULES=(usbhid xhci_hcd)MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm hid_apple)# BINARIES# This setting includes any additional binaries a given user may
I then re-generated my initramfs
by doing sudo mkinitcpio --config /etc/mkinitcpio.conf --generate /boot/initramfs-custom.img
Finally I rebooted.
However, I still don't see a /sys/module/hid_apple
directory! What am I missing?
Here is the output of ls /sys/module/ | grep hid
:
~ ❯ ls /sys/module/ | grep hid 18:17:32hidhid_logitech_djhid_logitech_hidppmac_hidusbhid~ ❯
Any help would be greatly appreciated