On SLES run depmod for every kernel version for which the modules installed
Signed-off-by: Jan Musial <jan.musial@intel.com>
This commit is contained in:
parent
1064cecbb9
commit
1bc3b66535
@ -86,7 +86,6 @@ fi
|
||||
%post modules_%{kver_filename}
|
||||
depmod
|
||||
. /etc/os-release
|
||||
if [[ ! "$ID_LIKE" =~ suse|sles ]]; then
|
||||
# Determine the exact location of installed modules to add them to weak-modules
|
||||
for file in $(rpm -ql $(rpm -qa | grep <CAS_NAME>-modules)); do
|
||||
if [[ "$file" =~ cas_.*\.ko$ ]]; then
|
||||
@ -94,7 +93,14 @@ if [[ ! "$ID_LIKE" =~ suse|sles ]]; then
|
||||
modules+=( $(realpath "$file") )
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ ! "$ID_LIKE" =~ suse|sles ]]; then
|
||||
printf "%s\n" "${modules[@]}" | weak-modules --no-initramfs --add-modules
|
||||
else
|
||||
for version in $(echo "${modules[@]}" | tr " " "\n" | cut -d"/" -f4 | sort | uniq); do
|
||||
# run depmod for all kernel versions for which the modules installed
|
||||
depmod $version
|
||||
done
|
||||
fi
|
||||
|
||||
%preun modules_%{kver_filename}
|
||||
|
Loading…
Reference in New Issue
Block a user