diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-10 20:42:53 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-10 20:42:53 -0500 |
commit | 506c10f26c481b7f8ef27c1c79290f68989b2e9e (patch) | |
tree | 03de82e812f00957aa6276dac2fe51c3358e88d7 /Makefile | |
parent | e1df957670aef74ffd9a4ad93e6d2c90bf6b4845 (diff) | |
parent | c59765042f53a79a7a65585042ff463b69cb248c (diff) |
Merge commit 'v2.6.29-rc1' into perfcounters/core
Conflicts:
include/linux/kernel_stat.h
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 2 | 1 | VERSION = 2 |
2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
3 | SUBLEVEL = 28 | 3 | SUBLEVEL = 29 |
4 | EXTRAVERSION = | 4 | EXTRAVERSION = -rc1 |
5 | NAME = Erotic Pickled Herring | 5 | NAME = Erotic Pickled Herring |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
@@ -205,13 +205,14 @@ ifeq ($(ARCH),x86_64) | |||
205 | SRCARCH := x86 | 205 | SRCARCH := x86 |
206 | endif | 206 | endif |
207 | 207 | ||
208 | # Where to locate arch specific headers | 208 | # Additional ARCH settings for sparc |
209 | ifeq ($(ARCH),sparc64) | 209 | ifeq ($(ARCH),sparc64) |
210 | hdr-arch := sparc | 210 | SRCARCH := sparc |
211 | else | ||
212 | hdr-arch := $(SRCARCH) | ||
213 | endif | 211 | endif |
214 | 212 | ||
213 | # Where to locate arch specific headers | ||
214 | hdr-arch := $(SRCARCH) | ||
215 | |||
215 | KCONFIG_CONFIG ?= .config | 216 | KCONFIG_CONFIG ?= .config |
216 | 217 | ||
217 | # SHELL used by kbuild | 218 | # SHELL used by kbuild |
@@ -320,7 +321,8 @@ KALLSYMS = scripts/kallsyms | |||
320 | PERL = perl | 321 | PERL = perl |
321 | CHECK = sparse | 322 | CHECK = sparse |
322 | 323 | ||
323 | CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise $(CF) | 324 | CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ |
325 | -Wbitwise -Wno-return-void $(CF) | ||
324 | MODFLAGS = -DMODULE | 326 | MODFLAGS = -DMODULE |
325 | CFLAGS_MODULE = $(MODFLAGS) | 327 | CFLAGS_MODULE = $(MODFLAGS) |
326 | AFLAGS_MODULE = $(MODFLAGS) | 328 | AFLAGS_MODULE = $(MODFLAGS) |
@@ -963,6 +965,7 @@ ifneq ($(KBUILD_SRC),) | |||
963 | mkdir -p include2; \ | 965 | mkdir -p include2; \ |
964 | ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \ | 966 | ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \ |
965 | fi | 967 | fi |
968 | ln -fsn $(srctree) source | ||
966 | endif | 969 | endif |
967 | 970 | ||
968 | # prepare2 creates a makefile if using a separate output directory | 971 | # prepare2 creates a makefile if using a separate output directory |
@@ -1006,7 +1009,7 @@ define check-symlink | |||
1006 | endef | 1009 | endef |
1007 | 1010 | ||
1008 | # We create the target directory of the symlink if it does | 1011 | # We create the target directory of the symlink if it does |
1009 | # not exist so the test in chack-symlink works and we have a | 1012 | # not exist so the test in check-symlink works and we have a |
1010 | # directory for generated filesas used by some architectures. | 1013 | # directory for generated filesas used by some architectures. |
1011 | define create-symlink | 1014 | define create-symlink |
1012 | if [ ! -L include/asm ]; then \ | 1015 | if [ ! -L include/asm ]; then \ |