diff options
author | Sam Ravnborg <sam@mars.(none)> | 2005-07-14 20:18:07 +0000 |
---|---|---|
committer | Sam Ravnborg <sam@mars.(none)> | 2005-07-14 20:18:07 +0000 |
commit | bd5bdd875b29e882f80d2cd6dd1da468641dad2a (patch) | |
tree | 9c01171195532d449d6897711920d764a90521ba /init/Makefile | |
parent | 6d30e3a8995c9fa9e8471bb1dff8e070638df5ea (diff) | |
download | kernel_samsung_smdk4412-bd5bdd875b29e882f80d2cd6dd1da468641dad2a.zip kernel_samsung_smdk4412-bd5bdd875b29e882f80d2cd6dd1da468641dad2a.tar.gz kernel_samsung_smdk4412-bd5bdd875b29e882f80d2cd6dd1da468641dad2a.tar.bz2 |
kbuild: "PREEMPT" in UTS_VERSION
From: Matt Mackall <mpm@selenic.com>
Add PREEMPT to UTS_VERSION where enabled as is done for SMP to make
preempt kernels easily identifiable.
Added SMP PREEMPT as comment in compile.h to force it to be
updated when they change (sam).
Signed-off-by: Matt Mackall <mpm@selenic.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'init/Makefile')
-rw-r--r-- | init/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init/Makefile b/init/Makefile index 93a53fb..a230007 100644 --- a/init/Makefile +++ b/init/Makefile @@ -25,4 +25,5 @@ $(obj)/version.o: include/linux/compile.h include/linux/compile.h: FORCE @echo ' CHK $@' - @$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CC) $(CFLAGS)" + $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \ + "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT)" "$(CC) $(CFLAGS)" |