-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: inactive keyboard in initramfs on encrypted partitions #488
base: master
Are you sure you want to change the base?
Issue: inactive keyboard in initramfs on encrypted partitions #488
Conversation
otherwise, the keyboard will not be available at the initramfs step
information about encryption is mentioned here: https://wiki.t2linux.org/guides/postinstall/#make-modules-load-on-early-boot Also, is hid_apple really needed on T2 Macs cause apple-bce is the driver that manages keyboard? |
|
for arch, do you have the keyboard hook enabled? i think that one will automatically include hid-apple (but unfortunately not apple-bce) |
I haven't found an alternative in the wiki for this case. If there's anything I missed or if you have other suggestions, I'd appreciate your insights!
Yes, the |
can you check if you have the keyboard mkinitcpio hook before the encrypt hook? I think it might have to be in that order. HOOKS=(base udev autodetect modconf kms keyboard keymap consolefont block encrypt filesystems fsck) |
Yes, confirming that the order aligns with the mentioned one, |
Request for review from @Redecorating |
Description:
This pull request addresses an issue related to keyboard availability during the
initramfs
step. If the partition is encrypted,hid_apple
must be added to theMODULES
list in/etc/mkinitcpio.conf
to ensure proper functionality. This step is necessary to prevent the keyboard from becoming unavailable while entering the encryption password.