kbuild: um fix so it compile with generic asm-offsets.h support
[safe/jmp/linux-2.6] / arch / um / Makefile
1
2 # Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 # Licensed under the GPL
4 #
5
6 ARCH_DIR := arch/um
7 OS := $(shell uname -s)
8 # We require bash because the vmlinux link and loader script cpp use bash
9 # features.
10 SHELL := /bin/bash
11
12 filechk_gen_header = $<
13
14 core-y                  += $(ARCH_DIR)/kernel/          \
15                            $(ARCH_DIR)/drivers/         \
16                            $(ARCH_DIR)/os-$(OS)/
17
18 # Have to precede the include because the included Makefiles reference them.
19 SYMLINK_HEADERS := archparam.h system.h sigcontext.h processor.h ptrace.h \
20         module.h vm-flags.h elf.h
21 SYMLINK_HEADERS := $(foreach header,$(SYMLINK_HEADERS),include/asm-um/$(header))
22
23 # XXX: The "os" symlink is only used by arch/um/include/os.h, which includes
24 # ../os/include/file.h
25 #
26 # These are cleaned up during mrproper. Please DO NOT fix it again, this is
27 # the Correct Thing(tm) to do!
28 ARCH_SYMLINKS = include/asm-um/arch $(ARCH_DIR)/include/sysdep $(ARCH_DIR)/os \
29         $(SYMLINK_HEADERS) $(ARCH_DIR)/include/uml-config.h
30
31 GEN_HEADERS += $(ARCH_DIR)/include/task.h $(ARCH_DIR)/include/kern_constants.h
32
33 um-modes-$(CONFIG_MODE_TT) += tt
34 um-modes-$(CONFIG_MODE_SKAS) += skas
35
36 MODE_INCLUDE    += $(foreach mode,$(um-modes-y),\
37                    -I$(srctree)/$(ARCH_DIR)/kernel/$(mode)/include)
38
39 MAKEFILES-INCL  += $(foreach mode,$(um-modes-y),\
40                    $(srctree)/$(ARCH_DIR)/Makefile-$(mode))
41
42 ifneq ($(MAKEFILES-INCL),)
43   include $(MAKEFILES-INCL)
44 endif
45
46 ARCH_INCLUDE    := -I$(ARCH_DIR)/include
47 ifneq ($(KBUILD_SRC),)
48 ARCH_INCLUDE    += -I$(ARCH_DIR)/include2
49 ARCH_INCLUDE    += -I$(srctree)/$(ARCH_DIR)/include
50 MRPROPER_DIRS   += $(ARCH_DIR)/include2
51 endif
52 SYS_DIR         := $(ARCH_DIR)/include/sysdep-$(SUBARCH)
53
54 # -Dvmap=kernel_vmap affects everything, and prevents anything from
55 # referencing the libpcap.o symbol so named.
56
57 CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
58         $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap
59 AFLAGS += $(ARCH_INCLUDE)
60
61 USER_CFLAGS := $(patsubst -I%,,$(CFLAGS))
62 USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \
63         $(MODE_INCLUDE)
64
65 # -Derrno=kernel_errno - This turns all kernel references to errno into
66 # kernel_errno to separate them from the libc errno.  This allows -fno-common
67 # in CFLAGS.  Otherwise, it would cause ld to complain about the two different
68 # errnos.
69
70 CFLAGS += -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask
71 CFLAGS += $(call cc-option,-fno-unit-at-a-time,)
72
73 include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
74
75 #This will adjust *FLAGS accordingly to the platform.
76 include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
77
78 # These are needed for clean and mrproper, since in that case .config is not
79 # included; the values here are meaningless
80
81 CONFIG_NEST_LEVEL ?= 0
82 CONFIG_KERNEL_HALF_GIGS ?= 0
83
84 SIZE = (($(CONFIG_NEST_LEVEL) + $(CONFIG_KERNEL_HALF_GIGS)) * 0x20000000)
85
86 ifeq ($(CONFIG_MODE_SKAS), y)
87 $(SYS_HEADERS) : $(ARCH_DIR)/include/skas_ptregs.h
88 endif
89
90 .PHONY: linux
91
92 all: linux
93
94 linux: vmlinux
95         ln -f $< $@
96
97 define archhelp
98   echo '* linux         - Binary kernel image (./linux) - for backward'
99   echo '                   compatibility only, this creates a hard link to the'
100   echo '                   real kernel binary, the the "vmlinux" binary you'
101   echo '                   find in the kernel root.'
102 endef
103
104 ifneq ($(KBUILD_SRC),)
105 $(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
106 CLEAN_FILES += $(ARCH_DIR)/Kconfig.arch
107 else
108 $(shell cd $(ARCH_DIR) && ln -sf Kconfig.$(SUBARCH) Kconfig.arch)
109 endif
110
111 prepare: $(ARCH_SYMLINKS) $(SYS_HEADERS) $(GEN_HEADERS)
112
113 LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
114 LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
115
116 CPP_MODE-$(CONFIG_MODE_TT) := -DMODE_TT
117 CONFIG_KERNEL_STACK_ORDER ?= 2
118 STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
119
120 ifndef START
121   START = $(shell echo $$[ $(TOP_ADDR) - $(SIZE) ] )
122 endif
123
124 CPPFLAGS_vmlinux.lds = -U$(SUBARCH) \
125         -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
126         -DELF_FORMAT="$(ELF_FORMAT)" $(CPP_MODE-y) \
127         -DKERNEL_STACK_SIZE=$(STACK_SIZE) \
128         -DUNMAP_PATH=arch/um/sys-$(SUBARCH)/unmap_fin.o
129
130 #The wrappers will select whether using "malloc" or the kernel allocator.
131 LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
132
133 CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS)
134 define cmd_vmlinux__
135         $(CC) $(CFLAGS_vmlinux) -o $@ \
136         -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
137         -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
138         -lutil \
139         $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) \
140         FORCE ,$^) ; rm -f linux
141 endef
142
143 #When cleaning we don't include .config, so we don't include
144 #TT or skas makefiles and don't clean skas_ptregs.h.
145 CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/uml-config.h \
146         $(GEN_HEADERS) $(ARCH_DIR)/include/skas_ptregs.h \
147         $(ARCH_DIR)/include/user_constants.h
148
149 MRPROPER_FILES += $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) \
150         $(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS)) $(ARCH_DIR)/os \
151         $(ARCH_DIR)/Kconfig.arch
152
153 archclean:
154         $(Q)$(MAKE) $(clean)=$(ARCH_DIR)/util
155         @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
156                 -o -name '*.gcov' \) -type f -print | xargs rm -f
157
158 $(SYMLINK_HEADERS):
159         @echo '  SYMLINK $@'
160 ifneq ($(KBUILD_SRC),)
161         ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
162 else
163         $(Q)cd $(TOPDIR)/$(dir $@) ; \
164         ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)
165 endif
166
167 include/asm-um/arch:
168         @echo '  SYMLINK $@'
169 ifneq ($(KBUILD_SRC),)
170         $(Q)mkdir -p include/asm-um
171         $(Q)ln -fsn $(srctree)/include/asm-$(SUBARCH) include/asm-um/arch
172 else
173         $(Q)cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch
174 endif
175
176 $(ARCH_DIR)/include/sysdep:
177         @echo '  SYMLINK $@'
178 ifneq ($(KBUILD_SRC),)
179         $(Q)mkdir -p $(ARCH_DIR)/include
180         $(Q)mkdir -p $(ARCH_DIR)/include2
181         $(Q)ln -fsn sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep
182         $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include2/sysdep
183 else
184         $(Q)cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep
185 endif
186
187 $(ARCH_DIR)/os:
188         @echo '  SYMLINK $@'
189 ifneq ($(KBUILD_SRC),)
190         $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os
191 else
192         $(Q)cd $(ARCH_DIR) && ln -sf os-$(OS) os
193 endif
194
195 # Generated files
196 define filechk_umlconfig
197         sed 's/ CONFIG/ UML_CONFIG/'
198 endef
199
200 define filechk_gen-asm-offsets
201         (set -e; \
202          echo "#ifndef __ASM_OFFSETS_H__"; \
203          echo "#define __ASM_OFFSETS_H__"; \
204          echo "/*"; \
205          echo " * DO NOT MODIFY."; \
206          echo " *"; \
207          echo " * This file was generated by arch/$(ARCH)/Makefile"; \
208          echo " *"; \
209          echo " */"; \
210          echo ""; \
211          sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
212          echo ""; \
213          echo "#endif" )
214 endef
215
216 $(ARCH_DIR)/include/uml-config.h : include/linux/autoconf.h
217         $(call filechk,umlconfig)
218
219 $(ARCH_DIR)/user-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.c
220         $(CC) $(USER_CFLAGS) -S -o $@ $<
221
222 $(ARCH_DIR)/user-offsets.h: $(ARCH_DIR)/user-offsets.s
223         $(call filechk,gen-asm-offsets)
224
225 CLEAN_FILES += $(ARCH_DIR)/user-offsets.s  $(ARCH_DIR)/user-offsets.h
226
227 $(ARCH_DIR)/kernel-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/kernel-offsets.c \
228                                    $(ARCH_SYMLINKS) \
229                                    $(SYS_DIR)/sc.h \
230                                    include/asm include/linux/version.h \
231                                    include/config/MARKER \
232                                    $(ARCH_DIR)/include/user_constants.h
233         $(CC) $(CFLAGS) $(NOSTDINC_FLAGS) $(CPPFLAGS) -S -o $@ $<
234
235 $(ARCH_DIR)/kernel-offsets.h: $(ARCH_DIR)/kernel-offsets.s
236         $(call filechk,gen-asm-offsets)
237
238 CLEAN_FILES += $(ARCH_DIR)/kernel-offsets.s  $(ARCH_DIR)/kernel-offsets.h
239
240 $(ARCH_DIR)/include/task.h: $(ARCH_DIR)/util/mk_task
241         $(call filechk,gen_header)
242
243 $(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/os-$(OS)/util/mk_user_constants
244         $(call filechk,gen_header)
245
246 $(ARCH_DIR)/include/kern_constants.h: $(ARCH_DIR)/util/mk_constants
247         $(call filechk,gen_header)
248
249 $(ARCH_DIR)/include/skas_ptregs.h: $(ARCH_DIR)/kernel/skas/util/mk_ptregs
250         $(call filechk,gen_header)
251
252 $(ARCH_DIR)/os-$(OS)/util/mk_user_constants: $(ARCH_DIR)/os-$(OS)/util FORCE ;
253
254 $(ARCH_DIR)/util/mk_task $(ARCH_DIR)/util/mk_constants: $(ARCH_DIR)/include/user_constants.h $(ARCH_DIR)/util \
255         FORCE ;
256
257 $(ARCH_DIR)/kernel/skas/util/mk_ptregs: $(ARCH_DIR)/kernel/skas/util FORCE ;
258
259 $(ARCH_DIR)/util: scripts_basic $(SYS_DIR)/sc.h $(ARCH_DIR)/kernel-offsets.h FORCE
260         $(Q)$(MAKE) $(build)=$@
261
262 $(ARCH_DIR)/kernel/skas/util: scripts_basic $(ARCH_DIR)/user-offsets.h FORCE
263         $(Q)$(MAKE) $(build)=$@
264
265 $(ARCH_DIR)/os-$(OS)/util: scripts_basic $(ARCH_DIR)/user-offsets.h FORCE
266         $(Q)$(MAKE) $(build)=$@
267
268 export SUBARCH USER_CFLAGS OS