Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc/boot: Add missing compression methods to usage

lzma and lzo are also supported.

Signed-off-by: Antonio Alvarez Feijoo <antonio.feijoo@suse.com>
Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
Link: https://patch.msgid.link/20250916061840.5492-1-antonio.feijoo@suse.com

authored by

Antonio Alvarez Feijoo and committed by
Madhavan Srinivasan
cbc8bd1b d2be62d5

+2 -2
+2 -2
arch/powerpc/boot/wrapper
··· 21 21 # (default ./arch/powerpc/boot) 22 22 # -W dir specify working directory for temporary files (default .) 23 23 # -z use gzip (legacy) 24 - # -Z zsuffix compression to use (gz, xz or none) 24 + # -Z zsuffix compression to use (gz, xz, lzma, lzo or none) 25 25 26 26 # Stop execution if any command fails 27 27 set -e ··· 69 69 echo 'Usage: wrapper [-o output] [-p platform] [-i initrd]' >&2 70 70 echo ' [-d devtree] [-s tree.dts] [-e esm_blob]' >&2 71 71 echo ' [-c] [-C cross-prefix] [-D datadir] [-W workingdir]' >&2 72 - echo ' [-Z (gz|xz|none)] [--no-compression] [vmlinux]' >&2 72 + echo ' [-Z (gz|xz|lzma|lzo|none)] [--no-compression] [vmlinux]' >&2 73 73 exit 1 74 74 } 75 75