mirror of
https://git.proxmox.com/git/mirror_linux-firmware
synced 2025-05-26 01:00:59 +00:00
Merge branch 'compress-in-parallel' into 'main'
Add support to install files/symlinks in parallel. See merge request kernel-firmware/linux-firmware!396
This commit is contained in:
commit
e40adff766
11
Makefile
11
Makefile
@ -1,7 +1,6 @@
|
|||||||
# This file implements the GNOME Build API:
|
|
||||||
# http://people.gnome.org/~walters/docs/build-api.txt
|
|
||||||
|
|
||||||
FIRMWAREDIR = /lib/firmware
|
FIRMWAREDIR = /lib/firmware
|
||||||
|
NUM_JOBS := $(or $(patsubst -j%,%,$(filter -j%,$(MAKEFLAGS))),\
|
||||||
|
1)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
||||||
@ -36,17 +35,17 @@ install:
|
|||||||
false; \
|
false; \
|
||||||
fi
|
fi
|
||||||
install -d $(DESTDIR)$(FIRMWAREDIR)
|
install -d $(DESTDIR)$(FIRMWAREDIR)
|
||||||
./copy-firmware.sh $(DESTDIR)$(FIRMWAREDIR)
|
./copy-firmware.sh -j$(NUM_JOBS) $(DESTDIR)$(FIRMWAREDIR)
|
||||||
@echo "Now run \"make dedup\" to de-duplicate any firmware files"
|
@echo "Now run \"make dedup\" to de-duplicate any firmware files"
|
||||||
|
|
||||||
install-xz:
|
install-xz:
|
||||||
install -d $(DESTDIR)$(FIRMWAREDIR)
|
install -d $(DESTDIR)$(FIRMWAREDIR)
|
||||||
./copy-firmware.sh --xz $(DESTDIR)$(FIRMWAREDIR)
|
./copy-firmware.sh -j$(NUM_JOBS) --xz $(DESTDIR)$(FIRMWAREDIR)
|
||||||
@echo "Now run \"make dedup\" to de-duplicate any firmware files"
|
@echo "Now run \"make dedup\" to de-duplicate any firmware files"
|
||||||
|
|
||||||
install-zst:
|
install-zst:
|
||||||
install -d $(DESTDIR)$(FIRMWAREDIR)
|
install -d $(DESTDIR)$(FIRMWAREDIR)
|
||||||
./copy-firmware.sh --zstd $(DESTDIR)$(FIRMWAREDIR)
|
./copy-firmware.sh -j$(NUM_JOBS) --zstd $(DESTDIR)$(FIRMWAREDIR)
|
||||||
@echo "Now run \"make dedup\" to de-duplicate any firmware files"
|
@echo "Now run \"make dedup\" to de-duplicate any firmware files"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import os, re, stat, sys
|
import os, re, stat, sys
|
||||||
from io import open
|
from io import open
|
||||||
|
@ -9,6 +9,7 @@ verbose=:
|
|||||||
compress=cat
|
compress=cat
|
||||||
compext=
|
compext=
|
||||||
destdir=
|
destdir=
|
||||||
|
num_jobs=1
|
||||||
|
|
||||||
err() {
|
err() {
|
||||||
printf "ERROR: %s\n" "$*"
|
printf "ERROR: %s\n" "$*"
|
||||||
@ -19,6 +20,15 @@ warn() {
|
|||||||
printf "WARNING: %s\n" "$*"
|
printf "WARNING: %s\n" "$*"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
has_gnu_parallel() {
|
||||||
|
if command -v parallel > /dev/null; then
|
||||||
|
if parallel --version | grep -Fq 'GNU Parallel'; then
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
while test $# -gt 0; do
|
while test $# -gt 0; do
|
||||||
case $1 in
|
case $1 in
|
||||||
-v | --verbose)
|
-v | --verbose)
|
||||||
@ -27,6 +37,16 @@ while test $# -gt 0; do
|
|||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
-j*)
|
||||||
|
num_jobs=$(echo "$1" | sed 's/-j//')
|
||||||
|
if [ "$num_jobs" -gt 1 ] && ! has_gnu_parallel; then
|
||||||
|
err "the GNU parallel command is required to use -j"
|
||||||
|
fi
|
||||||
|
parallel_args_file=$(mktemp)
|
||||||
|
trap 'rm -f $parallel_args_file' EXIT INT QUIT TERM
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
--xz)
|
--xz)
|
||||||
if test "$compext" = ".zst"; then
|
if test "$compext" = ".zst"; then
|
||||||
err "cannot mix XZ and ZSTD compression"
|
err "cannot mix XZ and ZSTD compression"
|
||||||
@ -76,12 +96,24 @@ grep -E '^(RawFile|File):' WHENCE | sed -E -e 's/^(RawFile|File): */\1 /;s/"//g'
|
|||||||
$verbose "copying/compressing file $f$compext"
|
$verbose "copying/compressing file $f$compext"
|
||||||
if test "$compress" != "cat" && test "$k" = "RawFile"; then
|
if test "$compress" != "cat" && test "$k" = "RawFile"; then
|
||||||
$verbose "compression will be skipped for file $f"
|
$verbose "compression will be skipped for file $f"
|
||||||
cat "$f" > "$destdir/$f"
|
if [ "$num_jobs" -gt 1 ]; then
|
||||||
|
echo "cat \"$f\" > \"$destdir/$f\"" >> "$parallel_args_file"
|
||||||
|
else
|
||||||
|
cat "$f" > "$destdir/$f"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
$compress "$f" > "$destdir/$f$compext"
|
if [ "$num_jobs" -gt 1 ]; then
|
||||||
|
echo "$compress \"$f\" > \"$destdir/$f$compext\"" >> "$parallel_args_file"
|
||||||
|
else
|
||||||
|
$compress "$f" > "$destdir/$f$compext"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
if [ "$num_jobs" -gt 1 ]; then
|
||||||
|
parallel -j"$num_jobs" -a "$parallel_args_file"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo > "$parallel_args_file"
|
||||||
# shellcheck disable=SC2162 # file/folder name can include escaped symbols
|
# shellcheck disable=SC2162 # file/folder name can include escaped symbols
|
||||||
grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g' | while read l t; do
|
grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g' | while read l t; do
|
||||||
directory="$destdir/$(dirname "$l")"
|
directory="$destdir/$(dirname "$l")"
|
||||||
@ -89,16 +121,27 @@ grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g' | while read l t; do
|
|||||||
target="$(cd "$directory" && realpath -m -s "$t")"
|
target="$(cd "$directory" && realpath -m -s "$t")"
|
||||||
if test -e "$target"; then
|
if test -e "$target"; then
|
||||||
$verbose "creating link $l -> $t"
|
$verbose "creating link $l -> $t"
|
||||||
ln -s "$t" "$destdir/$l"
|
if [ "$num_jobs" -gt 1 ]; then
|
||||||
|
echo "ln -s \"$t\" \"$destdir/$l\"" >> "$parallel_args_file"
|
||||||
|
else
|
||||||
|
ln -s "$t" "$destdir/$l"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
$verbose "creating link $l$compext -> $t$compext"
|
$verbose "creating link $l$compext -> $t$compext"
|
||||||
ln -s "$t$compext" "$destdir/$l$compext"
|
if [ "$num_jobs" -gt 1 ]; then
|
||||||
|
echo "ln -s \"$t$compext\" \"$destdir/$l$compext\"" >> "$parallel_args_file"
|
||||||
|
else
|
||||||
|
ln -s "$t$compext" "$destdir/$l$compext"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
if [ "$num_jobs" -gt 1 ]; then
|
||||||
|
parallel -j"$num_jobs" -a "$parallel_args_file"
|
||||||
|
fi
|
||||||
|
|
||||||
# Verify no broken symlinks
|
# Verify no broken symlinks
|
||||||
if test "$(find "$destdir" -xtype l | wc -l)" -ne 0 ; then
|
if test "$(find "$destdir" -xtype l | wc -l)" -ne 0 ; then
|
||||||
err "Broken symlinks found:\\n$(find "$destdir" -xtype l)"
|
err "Broken symlinks found:\n$(find "$destdir" -xtype l)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user