You are not logged in.
When updating with pacman, it prints the line
Updating module dependencies...
I'm curious what the term "module" refers to. I assume it's the packages that have their dependencies updated. But to me, "module" also suggests kernel modules.
What does pacman do when it says "Updating module dependencies..."?
Last edited by mb720 (2021-04-08 17:53:48)
Offline
running depmod
Offline
I'm curious what the term "module" refers to. I assume it's the packages that have their dependencies updated. But to me, "module" also suggests kernel modules.
$ grep -R 'Updating module dependencies' /usr/share/libalpm/
/usr/share/libalpm/hooks/60-depmod.hook:Description = Updating module dependencies...
$ cat /usr/share/libalpm/hooks/60-depmod.hook
[Trigger]
Type = Path
Operation = Install
Operation = Upgrade
Operation = Remove
Target = usr/lib/modules/*/
Target = !usr/lib/modules/*/?*
[Action]
Description = Updating module dependencies...
When = PostTransaction
Exec = /usr/share/libalpm/scripts/depmod
NeedsTargets
Your presumption was correct, it is indeed referring to kernel modules.
Managing AUR repos The Right Way -- aurpublish (now a standalone tool)
Offline