2019-08-15 19:52:36 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2023-08-30 17:16:26 +02:00
|
|
|
# Read WHENCE from stdin create files-xxx for each topic
|
2019-08-15 19:52:36 +02:00
|
|
|
#
|
2023-08-30 17:16:26 +02:00
|
|
|
# usage: make-files.sh [-v] topics.list DESTDIR < WHENCE
|
2019-08-15 19:52:36 +02:00
|
|
|
#
|
|
|
|
|
2019-10-23 11:50:13 +02:00
|
|
|
verbose=:
|
|
|
|
|
|
|
|
if [ x"$1" = x"-v" ]; then
|
|
|
|
verbose=echo
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2019-08-15 19:52:36 +02:00
|
|
|
topics="$1"
|
|
|
|
DESTDIR="$2"
|
2020-11-11 14:28:48 +01:00
|
|
|
fwdir=${3:-/lib/firmware}
|
2019-08-15 19:52:36 +02:00
|
|
|
dest=$DESTDIR/$fwdir
|
|
|
|
|
|
|
|
do_compress=1
|
|
|
|
|
|
|
|
if [ -n "$do_compress" ]; then
|
|
|
|
cext=".xz"
|
|
|
|
else
|
|
|
|
cext=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
make_dirs () {
|
|
|
|
local f="$1"
|
|
|
|
local d=$(dirname "$f")
|
|
|
|
if [ "$d" != "." ]; then
|
|
|
|
while true; do
|
|
|
|
if ! grep -q '%dir '"$fwdir/$d"'$' files-$topic; then
|
|
|
|
echo "%dir $fwdir/$d" >> files-$topic
|
|
|
|
fi
|
|
|
|
case "$d" in
|
|
|
|
*/*) d=${d%/*};;
|
|
|
|
*) break;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2023-09-22 16:38:02 +02:00
|
|
|
add_file () {
|
2019-08-15 19:52:36 +02:00
|
|
|
local f="$1"
|
|
|
|
make_dirs "$f"
|
2023-11-28 12:28:32 +01:00
|
|
|
if [ -e "$dest/$f" ]; then
|
2022-10-03 13:46:36 +02:00
|
|
|
echo "\"$fwdir/$f\"" >> files-$topic
|
|
|
|
else
|
|
|
|
echo "\"$fwdir/$f$cext\"" >> files-$topic
|
|
|
|
fi
|
2019-08-15 19:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub="xxx"
|
|
|
|
while read l; do
|
|
|
|
test -z "$l" && continue
|
|
|
|
case "$l" in
|
|
|
|
----*)
|
|
|
|
sub=""
|
|
|
|
topic=""
|
|
|
|
;;
|
|
|
|
Driver:*)
|
|
|
|
test -n "$sub" && continue
|
|
|
|
sub=$(echo "$l" | sed -e's/Driver: *//' -e's/[ :].*$//')
|
|
|
|
m=$(grep -m1 "^$sub": "$topics" | sed -e's/^.*:[[:space:]]*//')
|
|
|
|
test -z "$m" && continue
|
|
|
|
set -- $m
|
|
|
|
topic="$1"
|
|
|
|
if [ "$topic" = "SKIP" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
2019-10-23 11:50:13 +02:00
|
|
|
$verbose "Switching to topic $topic"
|
2019-08-15 19:52:36 +02:00
|
|
|
if [ -n "$topic" ]; then
|
|
|
|
if [ ! -s files-$topic ]; then
|
2020-11-11 14:28:48 +01:00
|
|
|
echo "%dir $fwdir" > files-$topic
|
2019-08-15 19:52:36 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
2023-08-30 17:16:26 +02:00
|
|
|
File:*|RawFile:*)
|
2019-08-15 19:52:36 +02:00
|
|
|
test "$topic" = "SKIP" && continue
|
|
|
|
if [ -z "$topic" ]; then
|
|
|
|
echo "ERROR: no topic found for $l"
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-09-22 16:38:02 +02:00
|
|
|
f=$(echo "$l" | sed -e's/^File: *//' -e's/^RawFile: *//' -e's/"//g' -e's/\\//g')
|
2023-08-30 17:16:26 +02:00
|
|
|
case "$f" in
|
2023-09-22 16:38:02 +02:00
|
|
|
*/README*)
|
2023-08-30 17:16:26 +02:00
|
|
|
continue;;
|
|
|
|
esac
|
2023-09-22 16:38:02 +02:00
|
|
|
add_file "$f"
|
2019-08-15 19:52:36 +02:00
|
|
|
;;
|
|
|
|
Link:*)
|
|
|
|
test "$topic" = "SKIP" && continue
|
|
|
|
if [ -z "$topic" ]; then
|
|
|
|
echo "ERROR: no topic found for $l"
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-01-27 11:02:43 +01:00
|
|
|
f=$(echo "$l" | sed -e's/^Link: *//' -e's/ *->.*$//' -es'/\\//g')
|
2023-09-22 16:38:02 +02:00
|
|
|
add_file "$f"
|
2019-08-15 19:52:36 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2020-10-11 23:35:11 +02:00
|
|
|
|
|
|
|
exit 0
|