From 354fa22fce767ac137099c8009a411bd0499816c Mon Sep 17 00:00:00 2001
From: Shawn Landden <shawnlandden@gmail.com>
Date: Mon, 12 Mar 2012 15:13:37 -0700
Subject: [PATCH] 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: Shawn Landden <shawnlandden@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
---
 scripts/patch-kernel | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/patch-kernel b/scripts/patch-kernel
index 20fb25c233829..d000ea3a41fdb 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"
-- 
GitLab