* Wed Mar 17 2021 Justin M. Forbes <jforbes@fedoraproject.org> [5.11.7-9] - Disable weak-modules again rhbz 1828455 (Justin M. Forbes) - More config updates for gcc-plugin turn off (Justin M. Forbes) - fedora: the PCH_CAN driver is x86-32 only (Peter Robinson) - common: disable legacy CAN device support (Peter Robinson) - common: Enable Microchip MCP251x/MCP251xFD CAN controllers (Peter Robinson) - common: Bosch MCAN support for Intel Elkhart Lake (Peter Robinson) - common: enable CAN_PEAK_PCIEFD PCI-E driver (Peter Robinson) - common: disable CAN_PEAK_PCIEC PCAN-ExpressCard (Peter Robinson) - common: enable common CAN layer 2 protocols (Peter Robinson) - ark: disable CAN_LEDS option (Peter Robinson) Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
26 lines
733 B
Bash
Executable file
26 lines
733 B
Bash
Executable file
#!/bin/sh
|
|
# Reads filenames on stdin, xz-compresses each in place.
|
|
# Not optimal for "compress relatively few, large files" scenario!
|
|
|
|
# How many xz's to run in parallel:
|
|
procgroup=""
|
|
while test "$#" != 0; do
|
|
# Get it from -jNUM
|
|
N="${1#-j}"
|
|
if test "$N" = "$1"; then
|
|
# Not -j<something> - warn and ignore
|
|
echo "parallel_xz: warning: unrecognized argument: '$1'"
|
|
else
|
|
procgroup="$N"
|
|
fi
|
|
shift
|
|
done
|
|
|
|
# If told to use only one cpu:
|
|
test "$procgroup" || exec xargs -r xz
|
|
test "$procgroup" = 1 && exec xargs -r xz
|
|
|
|
# xz has some startup cost. If files are really small,
|
|
# this cost might be significant. To combat this,
|
|
# process several files (in sequence) by each xz process via -n 16:
|
|
exec xargs -r -n 16 -P "$procgroup" xz
|