Must have lost it, but it was simple to recreate. :)
The fixlevel must also include the leading dot, so it will fold into
nothing for normal (non-fixed) kernels.
Marcelo, would/should this be included in Mainline as well?
Jörn
-- Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is a universal interface. -- Doug MacIlroy--- linux-2.4.20/Makefile~FIXLEVEL 2002-11-29 00:53:16.000000000 +0100 +++ linux-2.4.20/Makefile 2003-04-14 16:14:18.000000000 +0200 @@ -1,9 +1,10 @@ VERSION = 2 PATCHLEVEL = 4 SUBLEVEL = 20 +FIXLEVEL = EXTRAVERSION = -KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) +KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(FIXLEVEL)$(EXTRAVERSION) ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/) KERNELPATH=kernel-$(shell echo $(KERNELRELEASE) | sed -e "s/-//g") - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/