Skip to content

Commit

Permalink
README: Change gzip/bzip2 to xz compression format
Browse files Browse the repository at this point in the history
Kernel.org is only hosting patches and kernel compressed with xz,
so change the old gzip/bzip2 instances to xz.

Signed-off-by: Yaowei Bai <[email protected]>
Signed-off-by: Jonathan Corbet <[email protected]>
  • Loading branch information
baihuahua authored and Jonathan Corbet committed Mar 20, 2015
1 parent 49d86dc commit 1913c6f
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,7 @@ INSTALLING the kernel source:
directory where you have permissions (eg. your home directory) and
unpack it:

gzip -cd linux-4.X.tar.gz | tar xvf -

or

bzip2 -dc linux-4.X.tar.bz2 | tar xvf -
xz -cd linux-4.X.tar.xz | tar xvf -

Replace "X" with the version number of the latest kernel.

Expand All @@ -76,15 +72,11 @@ INSTALLING the kernel source:
whatever the kernel-du-jour happens to be.

- You can also upgrade between 4.x releases by patching. Patches are
distributed in the traditional gzip and the newer bzip2 format. To
install by patching, get all the newer patch files, enter the
top level directory of the kernel source (linux-4.X) and execute:

gzip -cd ../patch-4.x.gz | patch -p1

or
distributed in the xz format. To install by patching, get all the
newer patch files, enter the top level directory of the kernel source
(linux-4.X) and execute:

bzip2 -dc ../patch-4.x.bz2 | patch -p1
xz -cd ../patch-4.x.xz | patch -p1

Replace "x" for all versions bigger than the version "X" of your current
source tree, _in_order_, and you should be ok. You may want to remove
Expand Down

0 comments on commit 1913c6f

Please sign in to comment.