You are not logged in.
During the initial ramdisk environment creation process, I see this WARNING:
[myhost ~ ] >sudo mkinitcpio -k 6.12.0 -g /boot/initramfs-6.12.0-x86_64x.img
==> Starting build: '6.12.0'
-> Running build hook: [base]
-> Running build hook: [udev]
-> Running build hook: [autodetect]
-> Running build hook: [modconf]
-> Running build hook: [kms]
==> WARNING: No module containing the symbol 'drm_privacy_screen_register' found in: 'drivers/platform'
-> Running build hook: [block]
-> Running build hook: [keyboard]
-> Running build hook: [keymap]
-> Running build hook: [filesystems]
-> Running build hook: [fsck]
==> Generating module dependencies
==> Creating zstd-compressed initcpio image: '/boot/initramfs-6.12.0-x86_64x.img'
-> Early uncompressed CPIO image generation successful
==> Initcpio image generation successful
Some modules are missing?
Last edited by Honstyxi (2024-11-19 20:26:53)
Offline
Do you have the kernel from [core-testing] installed or the one from aur/linux-mainline? This is most likely due to uncompressed modules and should already be fixed (by me hehe) in mkinitcpio mainline: https://gitlab.archlinux.org/archlinux/ … e0f159efd3
Offline
Do you have the kernel from [core-testing] installed or the one from aur/linux-mainline? This is most likely due to uncompressed modules and should already be fixed (by me hehe) in mkinitcpio mainline: https://gitlab.archlinux.org/archlinux/ … e0f159efd3
I have download mainline kernel from https://www.kernel.org.
Offline
I have download mainline kernel from https://www.kernel.org.
kernel.org does not provide built kernels that I know of. Do you mean built a kernel from the source you obtained from kernel.org. If so does the kernel you built use modules and if so so are they compressed by default and is DRM_PRIVACY_SCREEN
enabled in your kernels config?
Offline
Honstyxi wrote:I have download mainline kernel from https://www.kernel.org.
kernel.org does not provide built kernels that I know of. Do you mean built a kernel from the source you obtained from kernel.org. If so does the kernel you built use modules and if so so are they compressed by default and is DRM_PRIVACY_SCREEN
enabled in your kernels config?
Yes, i built from the source i obtained from kernel.org.
Excuse me but i don't know if DRM_PRIVACY_SCREEN is enabled in my kernels config!
How can i verify or set it?!
Thanks in advance
Offline
To search the config of the running kernel
zgrep CONFIG_DRM_PRIVACY_SCREEN /proc/config.gz
zgrep CONFIG_MODULE_COMPRESS /proc/config.gz
If you are not running that kernel but have the source used for the build you can use grep instead of zgrep and replace /proc/config with /path/to/your/kernel/build/.config.
Last edited by loqs (2024-11-19 21:11:08)
Offline
Do you have the kernel from [core-testing] installed or the one from aur/linux-mainline? This is most likely due to uncompressed modules and should already be fixed (by me hehe) in mkinitcpio mainline: https://gitlab.archlinux.org/archlinux/ … e0f159efd3
Thanks!
So the warning disappears with the next mkinitcpio release?
Offline
Yes with the new mkinitcpio release of if you use module compression of some sort
Offline