3cb3054de7
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/redhat-rpm-config#68541612591bce70d6ea46de1f747e6259d71636
22 lines
505 B
Plaintext
22 lines
505 B
Plaintext
%__kmod_path ^/lib/modules/.*/(modules.builtin|.*ko)
|
|
%__kmod_provides() %{lua:
|
|
function basename(fn)
|
|
return string.gsub(fn, "(.*/)(.*)", "%2")
|
|
end
|
|
function printdep(mod)
|
|
print("kmod("..mod..")")
|
|
end
|
|
local fn = rpm.expand("%{1}")
|
|
local bn = basename(fn)
|
|
if bn == "modules.builtin" then
|
|
for l in io.lines(fn) do
|
|
printdep(basename(l))
|
|
end
|
|
else
|
|
local mod = string.match(bn, "%g+.ko")
|
|
if mod then
|
|
printdep(mod)
|
|
end
|
|
end
|
|
}
|