2019-07-31 16:17:44 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
#
|
|
|
|
# Copy firmware files based on WHENCE list
|
|
|
|
#
|
|
|
|
|
|
|
|
verbose=:
|
2019-09-30 11:17:03 +00:00
|
|
|
prune=no
|
2023-06-05 13:58:12 +00:00
|
|
|
# shellcheck disable=SC2209
|
|
|
|
compress=cat
|
|
|
|
compext=
|
2019-07-31 16:17:44 +00:00
|
|
|
|
2019-09-30 11:17:03 +00:00
|
|
|
while test $# -gt 0; do
|
|
|
|
case $1 in
|
|
|
|
-v | --verbose)
|
2023-06-05 13:58:11 +00:00
|
|
|
# shellcheck disable=SC2209
|
2019-09-30 11:17:03 +00:00
|
|
|
verbose=echo
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
|
|
|
|
-P | --prune)
|
|
|
|
prune=yes
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
|
2023-06-05 13:58:12 +00:00
|
|
|
--xz)
|
2023-07-18 11:20:24 +00:00
|
|
|
if test "$compext" = ".zst"; then
|
2023-06-05 13:58:12 +00:00
|
|
|
echo "ERROR: cannot mix XZ and ZSTD compression"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
compress="xz --compress --quiet --stdout --check=crc32"
|
|
|
|
compext=".xz"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
|
|
|
|
--zstd)
|
2023-07-18 11:20:24 +00:00
|
|
|
if test "$compext" = ".xz"; then
|
2023-06-05 13:58:12 +00:00
|
|
|
echo "ERROR: cannot mix XZ and ZSTD compression"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# shellcheck disable=SC2209
|
|
|
|
compress="zstd --compress --quiet --stdout"
|
|
|
|
compext=".zst"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
|
2023-08-09 09:23:58 +00:00
|
|
|
-*)
|
|
|
|
if test "$compress" = "cat"; then
|
|
|
|
echo "ERROR: unknown command-line option: $1"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
compress="$compress $1"
|
|
|
|
shift
|
|
|
|
;;
|
2019-09-30 11:17:03 +00:00
|
|
|
*)
|
|
|
|
if test "x$destdir" != "x"; then
|
2023-06-05 13:58:11 +00:00
|
|
|
echo "ERROR: unknown command-line options: $*"
|
2019-09-30 11:17:03 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
destdir="$1"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2019-07-31 16:17:44 +00:00
|
|
|
|
2023-11-08 23:13:51 +00:00
|
|
|
if [ -z "$destdir" ]; then
|
|
|
|
echo "ERROR: destination directory was not specified"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
Makefile, copy-firmware: Use portable "command -v" to detect installed programs
The "which" utility is not guaranteed to be installed either, and if it
is, its behavior is not portable either. This means that when rdfind /
pre-commit are installed, the `which` check will report a fatal error
because the which tool did not exist and the shell returned a nonzero
status when attempting to fork+exec. If it did exist, it might not be an
implementation of `which` that returns nonzero when commands do not
exist.
Conversely, the "command -v" shell builtin is required to exist in all
POSIX 2008 compliant shells, and is thus guaranteed to work everywhere.
For some in-depth discussions on the topic, see:
- https://mywiki.wooledge.org/BashFAQ/081
- https://unix.stackexchange.com/questions/85249/why-not-use-which-what-to-use-then/85250#85250
Examples of open-source shells likely to be installed as /bin/sh on
Linux, which implement the 15-year-old standard: ash, bash, busybox,
dash, ksh, mksh and zsh.
A side benefit of using the POSIX portable option is that it requires
neither an external disk executable, nor (because unlike "which", the
exit code is reliable) a subshell fork. This therefore represents a mild
speedup.
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
2023-11-26 17:01:51 +00:00
|
|
|
if ! command -v rdfind >/dev/null; then
|
2023-11-08 23:14:52 +00:00
|
|
|
echo "ERROR: rdfind is not installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-06-05 13:58:11 +00:00
|
|
|
# shellcheck disable=SC2162 # file/folder name can include escaped symbols
|
2023-08-09 09:40:59 +00:00
|
|
|
grep -E '^(RawFile|File):' WHENCE | sed -E -e 's/^(RawFile|File): */\1 /;s/"//g' | while read k f; do
|
2019-07-31 16:17:44 +00:00
|
|
|
test -f "$f" || continue
|
2023-06-05 13:58:08 +00:00
|
|
|
install -d "$destdir/$(dirname "$f")"
|
2023-06-05 13:58:12 +00:00
|
|
|
$verbose "copying/compressing file $f$compext"
|
2023-08-09 09:40:59 +00:00
|
|
|
if test "$compress" != "cat" && test "$k" = "RawFile"; then
|
2023-06-05 13:58:12 +00:00
|
|
|
$verbose "compression will be skipped for file $f"
|
|
|
|
cat "$f" > "$destdir/$f"
|
|
|
|
else
|
|
|
|
$compress "$f" > "$destdir/$f$compext"
|
|
|
|
fi
|
2019-07-31 16:17:44 +00:00
|
|
|
done
|
|
|
|
|
2023-11-08 23:02:06 +00:00
|
|
|
$verbose "Finding duplicate files"
|
|
|
|
rdfind -makesymlinks true -makeresultsfile false "$destdir" >/dev/null
|
|
|
|
find "$destdir" -type l | while read -r l; do
|
|
|
|
target="$(realpath "$l")"
|
|
|
|
$verbose "Correcting path for $l"
|
|
|
|
ln -fs "$(realpath --relative-to="$(dirname "$(realpath -s "$l")")" "$target")" "$l"
|
|
|
|
done
|
|
|
|
|
2023-06-05 13:58:11 +00:00
|
|
|
# shellcheck disable=SC2162 # file/folder name can include escaped symbols
|
2023-06-05 13:58:09 +00:00
|
|
|
grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g' | while read f d; do
|
2023-06-05 13:58:12 +00:00
|
|
|
if test -L "$f$compext"; then
|
|
|
|
test -f "$destdir/$f$compext" && continue
|
|
|
|
$verbose "copying link $f$compext"
|
2023-06-05 13:58:08 +00:00
|
|
|
install -d "$destdir/$(dirname "$f")"
|
2023-06-05 13:58:12 +00:00
|
|
|
cp -d "$f$compext" "$destdir/$f$compext"
|
2019-09-30 11:17:03 +00:00
|
|
|
|
|
|
|
if test "x$d" != "x"; then
|
2023-06-05 13:58:10 +00:00
|
|
|
target="$(readlink "$f")"
|
2019-09-30 11:17:03 +00:00
|
|
|
|
|
|
|
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"
|
2023-06-05 13:58:12 +00:00
|
|
|
rm -f "$f$compext"
|
2019-09-30 11:17:03 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
$verbose "WARNING: missing target for symlink $f"
|
|
|
|
fi
|
|
|
|
else
|
2023-07-18 18:23:40 +00:00
|
|
|
directory="$destdir/$(dirname "$f")"
|
|
|
|
install -d "$directory"
|
|
|
|
target="$(cd "$directory" && realpath -m -s "$d")"
|
|
|
|
if test -d "$target"; then
|
|
|
|
$verbose "creating link $f -> $d"
|
|
|
|
ln -s "$d" "$destdir/$f"
|
|
|
|
else
|
|
|
|
$verbose "creating link $f$compext -> $d$compext"
|
|
|
|
ln -s "$d$compext" "$destdir/$f$compext"
|
|
|
|
fi
|
2019-09-30 11:17:03 +00:00
|
|
|
fi
|
2019-07-31 16:17:44 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
exit 0
|
2019-09-30 11:17:03 +00:00
|
|
|
|
|
|
|
# vim: et sw=4 sts=4 ts=4
|