x86, um: get rid of sysdep symlink
[pandora-kernel.git] / arch / um / Makefile
1 #
2 # This file is included by the global makefile so that you can add your own
3 # architecture-specific flags and dependencies.
4 #
5 # Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
6 # Licensed under the GPL
7 #
8
9 ARCH_DIR := arch/um
10 OS := $(shell uname -s)
11 # We require bash because the vmlinux link and loader script cpp use bash
12 # features.
13 SHELL := /bin/bash
14
15 filechk_gen_header = $<
16
17 core-y                  += $(ARCH_DIR)/kernel/          \
18                            $(ARCH_DIR)/drivers/         \
19                            $(ARCH_DIR)/os-$(OS)/
20
21 # Have to precede the include because the included Makefiles reference them.
22 SYMLINK_HEADERS := archparam.h processor.h ptrace.h module.h elf.h
23 SYMLINK_HEADERS := $(foreach header,$(SYMLINK_HEADERS),$(ARCH_DIR)/include/asm/$(header))
24
25 # XXX: The "os" symlink is only used by arch/um/include/os.h, which includes
26 # ../os/include/file.h
27 #
28 # These are cleaned up during mrproper. Please DO NOT fix it again, this is
29 # the Correct Thing(tm) to do!
30 ARCH_SYMLINKS = $(ARCH_DIR)/os \
31         $(SYMLINK_HEADERS) $(ARCH_DIR)/include/shared/uml-config.h
32
33 MODE_INCLUDE    += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
34
35 include $(srctree)/$(ARCH_DIR)/Makefile-skas
36
37 ARCH_INCLUDE    := -I$(ARCH_DIR)/include/shared
38 ifneq ($(KBUILD_SRC),)
39 ARCH_INCLUDE    += -I$(srctree)/$(ARCH_DIR)/include/shared
40 KBUILD_CPPFLAGS += -I$(ARCH_DIR)/include # for SYMLINK_HEADERS
41 endif
42 ARCH_INCLUDE    += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH) # for sysdep
43
44 # -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
45 # named - it's a common symbol in libpcap, so we get a binary which crashes.
46 #
47 # Same things for in6addr_loopback and mktime - found in libc. For these two we
48 # only get link-time error, luckily.
49 #
50 # These apply to USER_CFLAGS to.
51
52 KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
53         $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap      \
54         -Din6addr_loopback=kernel_in6addr_loopback \
55         -Din6addr_any=kernel_in6addr_any
56
57 KBUILD_AFLAGS += $(ARCH_INCLUDE)
58
59 USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
60         $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
61         $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64
62
63 include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
64
65 #This will adjust *FLAGS accordingly to the platform.
66 include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
67
68 KBUILD_CPPFLAGS += -I$(srctree)/arch/$(HEADER_ARCH)/include
69
70 # -Derrno=kernel_errno - This turns all kernel references to errno into
71 # kernel_errno to separate them from the libc errno.  This allows -fno-common
72 # in KBUILD_CFLAGS.  Otherwise, it would cause ld to complain about the two different
73 # errnos.
74 # These apply to kernelspace only.
75 #
76 # strip leading and trailing whitespace to make the USER_CFLAGS removal of these
77 # defines more robust
78
79 KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
80                          -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
81 KBUILD_CFLAGS += $(KERNEL_DEFINES)
82
83 PHONY += linux
84
85 all: linux
86
87 linux: vmlinux
88         @echo '  LINK $@'
89         $(Q)ln -f $< $@
90
91 define archhelp
92   echo '* linux         - Binary kernel image (./linux) - for backward'
93   echo '                   compatibility only, this creates a hard link to the'
94   echo '                   real kernel binary, the "vmlinux" binary you'
95   echo '                   find in the kernel root.'
96 endef
97
98 ifneq ($(KBUILD_SRC),)
99 $(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
100 else
101 $(shell ln -fsn Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
102 endif
103
104 archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/shared/user_constants.h
105 prepare: $(ARCH_DIR)/include/shared/kern_constants.h
106
107 LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
108 LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
109
110 CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
111         $(call cc-option, -fno-stack-protector,) \
112         $(call cc-option, -fno-stack-protector-all,)
113
114 CONFIG_KERNEL_STACK_ORDER ?= 2
115 STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
116
117 CPPFLAGS_vmlinux.lds = -U$(SUBARCH) -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
118         -DELF_FORMAT="$(ELF_FORMAT)" -DKERNEL_STACK_SIZE=$(STACK_SIZE)
119
120 # The wrappers will select whether using "malloc" or the kernel allocator.
121 LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
122
123 LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
124
125 CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
126 define cmd_vmlinux__
127         $(CC) $(CFLAGS_vmlinux) -o $@ \
128         -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
129         -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
130         -lutil \
131         $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
132         FORCE ,$^) ; rm -f linux
133 endef
134
135 # When cleaning we don't include .config, so we don't include
136 # TT or skas makefiles and don't clean skas_ptregs.h.
137 CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/shared/uml-config.h \
138         $(ARCH_DIR)/include/shared/user_constants.h \
139         $(ARCH_DIR)/include/shared/kern_constants.h $(ARCH_DIR)/Kconfig.arch
140
141 MRPROPER_FILES += $(ARCH_SYMLINKS)
142
143 archclean:
144         @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
145                 -o -name '*.gcov' \) -type f -print | xargs rm -f
146
147 $(SYMLINK_HEADERS):
148         @echo '  SYMLINK $@'
149 ifneq ($(KBUILD_SRC),)
150         $(Q)mkdir -p $(objtree)/$(ARCH_DIR)/include/asm
151         $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/asm/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
152 else
153         $(Q)ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
154 endif
155
156 $(objtree)/$(ARCH_DIR)/include/shared:
157         @echo '  MKDIR $@'
158         $(Q)mkdir -p $@
159
160 $(ARCH_DIR)/os:
161         @echo '  SYMLINK $@'
162 ifneq ($(KBUILD_SRC),)
163         $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $@
164 else
165         $(Q)ln -fsn os-$(OS) $@
166 endif
167
168 # Generated files
169 define filechk_umlconfig
170         sed 's/ CONFIG/ UML_CONFIG/'
171 endef
172
173 $(ARCH_DIR)/include/shared/uml-config.h : include/linux/autoconf.h
174         $(call filechk,umlconfig)
175
176 $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
177         $(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
178
179 define filechk_gen-asm-offsets
180         (set -e; \
181          echo "/*"; \
182          echo " * DO NOT MODIFY."; \
183          echo " *"; \
184          echo " * This file was generated by arch/$(ARCH)/Makefile"; \
185          echo " *"; \
186          echo " */"; \
187          echo ""; \
188          sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
189          echo ""; )
190 endef
191
192 $(ARCH_DIR)/include/shared/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
193         $(call filechk,gen-asm-offsets)
194
195 $(ARCH_DIR)/include/shared/kern_constants.h: $(objtree)/$(ARCH_DIR)/include/shared
196         @echo '  SYMLINK $@'
197         $(Q)ln -sf ../../../../include/asm/asm-offsets.h $@
198
199 export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH