blob: dfcc9eaafaa7eddb672dfae4b4b73991f07271c7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3# Licensed under the GPL
4#
5
6ARCH_DIR := arch/um
7OS := $(shell uname -s)
8# We require bash because the vmlinux link and loader script cpp use bash
9# features.
10SHELL := /bin/bash
11
12filechk_gen_header = $<
13
14core-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.
19SYMLINK_HEADERS := archparam.h system.h sigcontext.h processor.h ptrace.h \
Bodo Stroesser7c5131a2005-05-05 16:15:39 -070020 module.h vm-flags.h elf.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070021SYMLINK_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!
28ARCH_SYMLINKS = include/asm-um/arch $(ARCH_DIR)/include/sysdep $(ARCH_DIR)/os \
29 $(SYMLINK_HEADERS) $(ARCH_DIR)/include/uml-config.h
30
31GEN_HEADERS += $(ARCH_DIR)/include/task.h $(ARCH_DIR)/include/kern_constants.h
32
33um-modes-$(CONFIG_MODE_TT) += tt
34um-modes-$(CONFIG_MODE_SKAS) += skas
35
36MODE_INCLUDE += $(foreach mode,$(um-modes-y),\
37 -I$(srctree)/$(ARCH_DIR)/kernel/$(mode)/include)
38
39MAKEFILES-INCL += $(foreach mode,$(um-modes-y),\
40 $(srctree)/$(ARCH_DIR)/Makefile-$(mode))
41
42ifneq ($(MAKEFILES-INCL),)
43 include $(MAKEFILES-INCL)
44endif
45
46ARCH_INCLUDE := -I$(ARCH_DIR)/include
Al Virofd7aab92005-05-05 16:15:29 -070047ifneq ($(KBUILD_SRC),)
48ARCH_INCLUDE += -I$(ARCH_DIR)/include2
49ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include
50MRPROPER_DIRS += $(ARCH_DIR)/include2
51endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052SYS_DIR := $(ARCH_DIR)/include/sysdep-$(SUBARCH)
53
54include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
55
56core-y += $(SUBARCH_CORE)
57libs-y += $(SUBARCH_LIBS)
58
59# -Derrno=kernel_errno - This turns all kernel references to errno into
60# kernel_errno to separate them from the libc errno. This allows -fno-common
61# in CFLAGS. Otherwise, it would cause ld to complain about the two different
62# errnos.
63
64CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
65 $(ARCH_INCLUDE) $(MODE_INCLUDE)
66
67USER_CFLAGS := $(patsubst -I%,,$(CFLAGS))
68USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \
69 $(MODE_INCLUDE) $(ARCH_USER_CFLAGS)
70CFLAGS += -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask
71CFLAGS += $(call cc-option,-fno-unit-at-a-time,)
72
73#This will adjust *FLAGS accordingly to the platform.
74include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
75
76# These are needed for clean and mrproper, since in that case .config is not
77# included; the values here are meaningless
78
79CONFIG_NEST_LEVEL ?= 0
80CONFIG_KERNEL_HALF_GIGS ?= 0
81
82SIZE = (($(CONFIG_NEST_LEVEL) + $(CONFIG_KERNEL_HALF_GIGS)) * 0x20000000)
83
84ifeq ($(CONFIG_MODE_SKAS), y)
85$(SYS_HEADERS) : $(ARCH_DIR)/include/skas_ptregs.h
86endif
87
88.PHONY: linux
89
90all: linux
91
92linux: vmlinux
93 ln -f $< $@
94
95define archhelp
96 echo '* linux - Binary kernel image (./linux) - for backward'
97 echo ' compatibility only, this creates a hard link to the'
98 echo ' real kernel binary, the the "vmlinux" binary you'
99 echo ' find in the kernel root.'
100endef
101
Al Virofd7aab92005-05-05 16:15:29 -0700102ifneq ($(KBUILD_SRC),)
103$(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig_$(SUBARCH) $(ARCH_DIR)/Kconfig_arch)
104CLEAN_FILES += $(ARCH_DIR)/Kconfig_arch
105else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106$(shell cd $(ARCH_DIR) && ln -sf Kconfig_$(SUBARCH) Kconfig_arch)
Al Virofd7aab92005-05-05 16:15:29 -0700107endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Al Viro03f81dc2005-05-05 16:15:19 -0700109prepare: $(ARCH_SYMLINKS) $(SYS_HEADERS) $(GEN_HEADERS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
112LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114CPP_MODE-$(CONFIG_MODE_TT) := -DMODE_TT
115CONFIG_KERNEL_STACK_ORDER ?= 2
116STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
117
118ifndef START
Paolo 'Blaisorblade' Giarrusso1c303852005-07-14 00:33:38 -0700119 START = $(shell echo $$[ $(TOP_ADDR) - $(SIZE) ] )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120endif
121
Paolo 'Blaisorblade' Giarrusso1c303852005-07-14 00:33:38 -0700122CPPFLAGS_vmlinux.lds = -U$(SUBARCH) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
Paolo 'Blaisorblade' Giarrusso1c303852005-07-14 00:33:38 -0700124 -DELF_FORMAT="$(ELF_FORMAT)" $(CPP_MODE-y) \
125 -DKERNEL_STACK_SIZE=$(STACK_SIZE) \
126 -DUNMAP_PATH=arch/um/sys-$(SUBARCH)/unmap_fin.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128#The wrappers will select whether using "malloc" or the kernel allocator.
129LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
130
131CFLAGS_vmlinux = $(LINK-y) $(LINK_WRAPS)
132define cmd_vmlinux__
133 $(CC) $(CFLAGS_vmlinux) -o $@ \
134 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
135 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -0700136 -lutil \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) \
138 FORCE ,$^) ; rm -f linux
139endef
140
141#When cleaning we don't include .config, so we don't include
142#TT or skas makefiles and don't clean skas_ptregs.h.
143CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/uml-config.h \
Paolo 'Blaisorblade' Giarrusso8b8a9da2005-07-12 13:58:20 -0700144 $(GEN_HEADERS) $(ARCH_DIR)/include/skas_ptregs.h \
145 $(ARCH_DIR)/include/user_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147MRPROPER_FILES += $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) \
148 $(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS)) $(ARCH_DIR)/os \
149 $(ARCH_DIR)/Kconfig_arch
150
151archclean:
152 $(Q)$(MAKE) $(clean)=$(ARCH_DIR)/util
153 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
154 -o -name '*.gcov' \) -type f -print | xargs rm -f
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156$(SYMLINK_HEADERS):
157 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700158ifneq ($(KBUILD_SRC),)
159 ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
160else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 $(Q)cd $(TOPDIR)/$(dir $@) ; \
162 ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)
Al Virofd7aab92005-05-05 16:15:29 -0700163endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165include/asm-um/arch:
166 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700167ifneq ($(KBUILD_SRC),)
168 $(Q)mkdir -p include/asm-um
169 $(Q)ln -fsn $(srctree)/include/asm-$(SUBARCH) include/asm-um/arch
170else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 $(Q)cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch
Al Virofd7aab92005-05-05 16:15:29 -0700172endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174$(ARCH_DIR)/include/sysdep:
175 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700176ifneq ($(KBUILD_SRC),)
177 $(Q)mkdir -p $(ARCH_DIR)/include
178 $(Q)mkdir -p $(ARCH_DIR)/include2
179 $(Q)ln -fsn sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep
180 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include2/sysdep
181else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 $(Q)cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep
Al Virofd7aab92005-05-05 16:15:29 -0700183endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185$(ARCH_DIR)/os:
186 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700187ifneq ($(KBUILD_SRC),)
188 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os
189else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 $(Q)cd $(ARCH_DIR) && ln -sf os-$(OS) os
Al Virofd7aab92005-05-05 16:15:29 -0700191endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193# Generated files
194define filechk_umlconfig
195 sed 's/ CONFIG/ UML_CONFIG/'
196endef
197
198$(ARCH_DIR)/include/uml-config.h : include/linux/autoconf.h
199 $(call filechk,umlconfig)
200
Al Viro8d0b9dc2005-05-05 16:15:23 -0700201$(ARCH_DIR)/user-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.c
202 $(CC) $(USER_CFLAGS) -S -o $@ $<
203
204$(ARCH_DIR)/user-offsets.h: $(ARCH_DIR)/user-offsets.s
205 $(call filechk,gen-asm-offsets)
206
207CLEAN_FILES += $(ARCH_DIR)/user-offsets.s $(ARCH_DIR)/user-offsets.h
208
Al Viroa31769e2005-05-05 16:15:25 -0700209$(ARCH_DIR)/kernel-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/kernel-offsets.c \
210 $(ARCH_SYMLINKS) \
211 $(SYS_DIR)/sc.h \
212 include/asm include/linux/version.h \
213 include/config/MARKER \
214 $(ARCH_DIR)/include/user_constants.h
215 $(CC) $(CFLAGS) $(NOSTDINC_FLAGS) $(CPPFLAGS) -S -o $@ $<
216
217$(ARCH_DIR)/kernel-offsets.h: $(ARCH_DIR)/kernel-offsets.s
218 $(call filechk,gen-asm-offsets)
219
220CLEAN_FILES += $(ARCH_DIR)/kernel-offsets.s $(ARCH_DIR)/kernel-offsets.h
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222$(ARCH_DIR)/include/task.h: $(ARCH_DIR)/util/mk_task
223 $(call filechk,gen_header)
224
Al Virofcddd722005-05-05 16:15:22 -0700225$(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/os-$(OS)/util/mk_user_constants
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 $(call filechk,gen_header)
227
228$(ARCH_DIR)/include/kern_constants.h: $(ARCH_DIR)/util/mk_constants
229 $(call filechk,gen_header)
230
231$(ARCH_DIR)/include/skas_ptregs.h: $(ARCH_DIR)/kernel/skas/util/mk_ptregs
232 $(call filechk,gen_header)
233
Al Virofcddd722005-05-05 16:15:22 -0700234$(ARCH_DIR)/os-$(OS)/util/mk_user_constants: $(ARCH_DIR)/os-$(OS)/util FORCE ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236$(ARCH_DIR)/util/mk_task $(ARCH_DIR)/util/mk_constants: $(ARCH_DIR)/include/user_constants.h $(ARCH_DIR)/util \
237 FORCE ;
238
239$(ARCH_DIR)/kernel/skas/util/mk_ptregs: $(ARCH_DIR)/kernel/skas/util FORCE ;
240
Al Viroda998a22005-05-05 16:15:27 -0700241$(ARCH_DIR)/util: scripts_basic $(SYS_DIR)/sc.h $(ARCH_DIR)/kernel-offsets.h FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 $(Q)$(MAKE) $(build)=$@
243
Al Viro1cd3bc12005-05-05 16:15:24 -0700244$(ARCH_DIR)/kernel/skas/util: scripts_basic $(ARCH_DIR)/user-offsets.h FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 $(Q)$(MAKE) $(build)=$@
246
Al Virofcddd722005-05-05 16:15:22 -0700247$(ARCH_DIR)/os-$(OS)/util: scripts_basic FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 $(Q)$(MAKE) $(build)=$@
249
250export SUBARCH USER_CFLAGS OS