blob: bbacb925a03f9d4ccd0ad33c03d28f37f048199f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
#
# Copy firmware files based on WHENCE list
#
verbose=:
prune=no
while test $# -gt 0; do
case $1 in
-v | --verbose)
verbose=echo
shift
;;
-P | --prune)
prune=yes
shift
;;
*)
if test "x$destdir" != "x"; then
echo "ERROR: unknown command-line options: $@"
exit 1
fi
destdir="$1"
shift
;;
esac
done
grep '^File:' WHENCE | sed -e's/^File: *//g' -e's/"//g' | while read f; do
test -f "$f" || continue
$verbose "copying file $f"
install -d $destdir/$(dirname "$f")
cp -d "$f" $destdir/"$f"
done
grep -E '^Link:' WHENCE | sed -e's/^Link: *//g' -e's/-> //g' | while read f d; do
if test -L "$f"; then
test -f "$destdir/$f" && continue
$verbose "copying link $f"
install -d $destdir/$(dirname "$f")
cp -d "$f" $destdir/"$f"
if test "x$d" != "x"; then
target=`readlink "$f"`
if test "x$target" != "x$d"; then
$verbose "WARNING: inconsistent symlink target: $target != $d"
else
if test "x$prune" != "xyes"; then
$verbose "WARNING: unneeded symlink detected: $f"
else
$verbose "WARNING: pruning unneeded symlink $f"
rm -f "$f"
fi
fi
else
$verbose "WARNING: missing target for symlink $f"
fi
else
$verbose "creating link $f -> $d"
install -d $destdir/$(dirname "$f")
ln -sf "$d" "$destdir/$f"
fi
done
exit 0
# vim: et sw=4 sts=4 ts=4
|