> When Red Hat compiles thier kernel for you to have an smp and a
> regular kernel. I was wondering how they can have their specifically
> named directory. I don't wan't to move my current /lib/modules/2.2.12-20
> folder because I want it there just in case I need to revert back to using
> it. (for safety backup reason)
At the top of the kernel Makefile, you'll find some lines that look like
this:
VERSION = 2
PATCHLEVEL = 2
SUBLEVEL = 13
EXTRAVERSION =
These values get stuck together and determine, among other things, the
name of the modules directory. You could change EXTRAVERSION:
EXTRAVERSION = test
Which would result in a kernel version of "2.2.13test" and a modules
directory of /lib/modules/2.2.13test.
-- Lars
--
Lars Kellogg-Stedman <[EMAIL PROTECTED]> --> http://www.larsshack.org/
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.