forked from pool/kernel-source
This commit is contained in:
parent
78fc7edda7
commit
24cd493dea
@ -1,18 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
|
|
||||||
trap 'rm -f "$filelist"' EXIT
|
|
||||||
filelist=$(mktemp -t ${0##*/}.XXXXXXXXXX)
|
|
||||||
grep -v '/kernel/drivers/staging/.*\.ko$' >"$filelist"
|
|
||||||
shopt -s nullglob
|
|
||||||
|
|
||||||
# pretend that /boot/vmlinux-* is in the -base package and not in -devel
|
|
||||||
if grep -q '/boot/System\.map\>' "$filelist"; then
|
|
||||||
prefix=$(sed -rn 's:(.*)/boot/System\.map\>.*:\1:p; T; q' "$filelist")
|
|
||||||
for f in "$prefix"/boot/vmlinux*; do
|
|
||||||
echo "$f" >>"$filelist"
|
|
||||||
done
|
|
||||||
else
|
|
||||||
perl -ni -e 'next if /\/boot\/vmlinux/ && !/\.debug$/; print' "$filelist"
|
|
||||||
fi
|
|
||||||
|
|
||||||
/usr/lib/rpm/find-provides "$@" <"$filelist"
|
|
Loading…
Reference in New Issue
Block a user