diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2023-09-19 02:27:42 -0700 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2023-09-19 02:27:42 -0700 |
commit | f5a93c990a4e765760189763d63894ef75a69da9 (patch) | |
tree | 45423a7e7146a38937c4d6c213c7008363f80d9d /etc/mkinitcpio.conf | |
parent | 05d3ec8256c2b3ddff616eb01eab287f7d8bfe4b (diff) |
Add lima to mkinitcpio.conf MODULES array to fix osk-sdl error and cannot load
Danct12 pushed this commit: <https://github.com/dreemurrs-embedded/Pine64-Arch/commit/909781899bc7b1dff1be429ce3111422ef189129>, changed `CONFIG_DRM_LIMA=y` to `CONFIG_DRM_LIMA=m` in PKGBUILDS/pine64/linux-megi/config, result in "MESA-LOADER: failed to open zink/swrast/kms_swrast ..." error and osk-sdl can't load.
Danct12 said in matrix room: "i actually just moved lima and panfrost from built-in to module to save some space. you can still boot from another media and unlock the drive, mount boot and add "panfrost" to mkinitcpio's modules. then regen initramfs, that should work."[1] So I tried to add lima to to mkinitcpio.conf MODULES array and the issue is fixed.
[1]:https://matrix.to/#/!lmoJhRvQcNTuGtHgry:kde.org/$esCkS8s6e1LTwvEOUAPGPFdlex1RvkhOTFHP0dflDb0?via=kde.org&via=matrix.org&via=privacytools.io
Diffstat (limited to 'etc/mkinitcpio.conf')
-rw-r--r-- | etc/mkinitcpio.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/mkinitcpio.conf b/etc/mkinitcpio.conf index aa2b6925..64b5ae10 100644 --- a/etc/mkinitcpio.conf +++ b/etc/mkinitcpio.conf @@ -4,7 +4,7 @@ # run. Advanced users may wish to specify all system modules # in this array. For instance: # MODULES=(usbhid xhci_hcd) -MODULES=() +MODULES=(lima) # BINARIES # This setting includes any additional binaries a given user may |