From: Shawn Landden Date: Mon, 12 Mar 2012 22:13:37 +0000 (-0700) Subject: scripts/patch-kernel: digest kernel.org hosted .xz patches X-Git-Url: http://git.alex.org.uk scripts/patch-kernel: digest 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: Shawn Landden Signed-off-by: Michal Marek --- diff --git a/scripts/patch-kernel b/scripts/patch-kernel index 20fb25c..d000ea3 100755 --- a/scripts/patch-kernel +++ b/scripts/patch-kernel @@ -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"