Skip to content
Snippets Groups Projects
Commit 354fa22f authored by Shawn Landden's avatar Shawn Landden Committed by Michal Marek
Browse files

scripts/patch-kernel: digest kernel.org hosted .xz patches


kernel.org is hosting patches and kernel compressed with xz (lzma2+).
Allow scripts/patch-kernel to decompress these files.

Signed-off-by: default avatarShawn Landden <shawnlandden@gmail.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 468db961
No related branches found
No related tags found
No related merge requests found
......@@ -116,6 +116,10 @@ findFile () {
ext=".bz2"
name="bzip2"
uncomp="bunzip2 -dc"
elif [ -r ${filebase}.xz ]; then
ext=".xz"
name="xz"
uncomp="xz -dc"
elif [ -r ${filebase}.zip ]; then
ext=".zip"
name="zip"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment