Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace gzip/bzip2 with xz in README #150

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 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-3.X.tar.gz | tar xvf -

or

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

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

Expand All @@ -80,11 +76,7 @@ INSTALLING the kernel source:
install by patching, get all the newer patch files, enter the
top level directory of the kernel source (linux-3.X) and execute:

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

or

bzip2 -dc ../patch-3.x.bz2 | patch -p1
xz -cd ../patch-3.x.gz | 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