aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorPetri T. Koistinen <petri.koistinen@iki.fi>2003-02-18 05:51:29 -0800
committerLinus Torvalds <torvalds@home.transmeta.com>2003-02-18 05:51:29 -0800
commitffb5450c435e42e0eaa206cb13e6f4731e0f3ba8 (patch)
treea2058c370195f112e4f4c3ae23019febdecb7b2b /README
parentcdec9245fbf39918f5af7bc73b4164b02a442a1f (diff)
downloadhistory-ffb5450c435e42e0eaa206cb13e6f4731e0f3ba8.tar.gz
[PATCH] update README file to current realities.
Document "patch -p1" behaviour of modern patches, and remove make dep phase that isn't needed any more.
Diffstat (limited to 'README')
-rw-r--r--README8
1 files changed, 3 insertions, 5 deletions
diff --git a/README b/README
index 471a8c87377eb0..40fe4cf60d35ea 100644
--- a/README
+++ b/README
@@ -67,12 +67,12 @@ INSTALLING the kernel:
- You can also upgrade between 2.5.xx releases by patching. Patches are
distributed in the traditional gzip and the new bzip2 format. To
install by patching, get all the newer patch files, enter the
- directory in which you unpacked the kernel source and execute:
+ top level directory of the kernel source (linux-2.5.xx) and execute:
- gzip -cd patchXX.gz | patch -p0
+ gzip -cd ../patch-2.5.xx.gz | patch -p1
or
- bzip2 -dc patchXX.bz2 | patch -p0
+ bzip2 -dc ../patch-2.5.xx.bz2 | patch -p1
(repeat xx for all versions bigger than the version of your current
source tree, _in_order_) and you should be ok. You may want to remove
@@ -149,8 +149,6 @@ CONFIGURING the kernel:
- Check the top Makefile for further site-dependent configuration
(default SVGA mode etc).
- - Finally, do a "make dep" to set up all the dependencies correctly.
-
COMPILING the kernel:
- Make sure you have gcc 2.95.3 available.