[PATCH] uml: comments about libc-conflict guards
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / um / Makefile
CommitLineData
1da177e4
LT
1#
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 \
e23181de 20 module.h vm-flags.h elf.h ldt.h
1da177e4
LT
21SYMLINK_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
1da177e4
LT
31um-modes-$(CONFIG_MODE_TT) += tt
32um-modes-$(CONFIG_MODE_SKAS) += skas
33
34MODE_INCLUDE += $(foreach mode,$(um-modes-y),\
4abfbf40 35 -I$(srctree)/$(ARCH_DIR)/include/$(mode))
1da177e4
LT
36
37MAKEFILES-INCL += $(foreach mode,$(um-modes-y),\
38 $(srctree)/$(ARCH_DIR)/Makefile-$(mode))
39
40ifneq ($(MAKEFILES-INCL),)
41 include $(MAKEFILES-INCL)
42endif
43
44ARCH_INCLUDE := -I$(ARCH_DIR)/include
fd7aab9c 45ifneq ($(KBUILD_SRC),)
fd7aab9c 46ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include
fd7aab9c 47endif
1da177e4
LT
48SYS_DIR := $(ARCH_DIR)/include/sysdep-$(SUBARCH)
49
98105d47
PBG
50# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
51# named - it's a common symbol in libpcap, so we get a binary which crashes.
fd748104 52#
98105d47
PBG
53# Same things for in6addr_loopback and mktime - found in libc. For these two we
54# only get link-time error, luckily.
55#
56# These apply to USER_CFLAGS to.
1da177e4 57
98105d47
PBG
58CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
59 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
fd748104
PBG
60 -Din6addr_loopback=kernel_in6addr_loopback
61
93ea5a5b 62AFLAGS += $(ARCH_INCLUDE)
1da177e4
LT
63
64USER_CFLAGS := $(patsubst -I%,,$(CFLAGS))
65USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \
ae173816 66 $(MODE_INCLUDE) -D_FILE_OFFSET_BITS=64
ecc354a9
PBG
67
68# -Derrno=kernel_errno - This turns all kernel references to errno into
69# kernel_errno to separate them from the libc errno. This allows -fno-common
70# in CFLAGS. Otherwise, it would cause ld to complain about the two different
71# errnos.
98105d47 72# These apply to kernelspace only.
ecc354a9 73
ee7be5de
MS
74CFLAGS += -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
75 -Dmktime=kernel_mktime
1da177e4
LT
76CFLAGS += $(call cc-option,-fno-unit-at-a-time,)
77
20d00213
PBG
78include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
79
1da177e4
LT
80#This will adjust *FLAGS accordingly to the platform.
81include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
82
83# These are needed for clean and mrproper, since in that case .config is not
84# included; the values here are meaningless
85
86CONFIG_NEST_LEVEL ?= 0
87CONFIG_KERNEL_HALF_GIGS ?= 0
88
89SIZE = (($(CONFIG_NEST_LEVEL) + $(CONFIG_KERNEL_HALF_GIGS)) * 0x20000000)
90
1da177e4
LT
91.PHONY: linux
92
93all: linux
94
95linux: vmlinux
96 ln -f $< $@
97
98define archhelp
99 echo '* linux - Binary kernel image (./linux) - for backward'
100 echo ' compatibility only, this creates a hard link to the'
101 echo ' real kernel binary, the the "vmlinux" binary you'
102 echo ' find in the kernel root.'
103endef
104
fd7aab9c 105ifneq ($(KBUILD_SRC),)
08b178eb 106$(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
fd7aab9c 107else
08b178eb 108$(shell cd $(ARCH_DIR) && ln -sf Kconfig.$(SUBARCH) Kconfig.arch)
fd7aab9c 109endif
1da177e4 110
ecba97d4
AV
111archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/user_constants.h
112prepare: $(ARCH_DIR)/include/kern_constants.h
1da177e4
LT
113
114LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
115LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
116
1da177e4
LT
117CPP_MODE-$(CONFIG_MODE_TT) := -DMODE_TT
118CONFIG_KERNEL_STACK_ORDER ?= 2
119STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
120
121ifndef START
1c30385a 122 START = $(shell echo $$[ $(TOP_ADDR) - $(SIZE) ] )
1da177e4
LT
123endif
124
1c30385a 125CPPFLAGS_vmlinux.lds = -U$(SUBARCH) \
1da177e4 126 -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
1c30385a
PBG
127 -DELF_FORMAT="$(ELF_FORMAT)" $(CPP_MODE-y) \
128 -DKERNEL_STACK_SIZE=$(STACK_SIZE) \
129 -DUNMAP_PATH=arch/um/sys-$(SUBARCH)/unmap_fin.o
1da177e4
LT
130
131#The wrappers will select whether using "malloc" or the kernel allocator.
132LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
133
20d00213 134CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS)
1da177e4
LT
135define cmd_vmlinux__
136 $(CC) $(CFLAGS_vmlinux) -o $@ \
137 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
138 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
776cfebb 139 -lutil \
1da177e4
LT
140 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) \
141 FORCE ,$^) ; rm -f linux
142endef
143
144#When cleaning we don't include .config, so we don't include
145#TT or skas makefiles and don't clean skas_ptregs.h.
146CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/uml-config.h \
ecba97d4
AV
147 $(ARCH_DIR)/include/user_constants.h \
148 $(ARCH_DIR)/include/kern_constants.h $(ARCH_DIR)/Kconfig.arch
1da177e4
LT
149
150MRPROPER_FILES += $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) \
2d5cbf32 151 $(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS)) $(ARCH_DIR)/os
1da177e4
LT
152
153archclean:
1da177e4
LT
154 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
155 -o -name '*.gcov' \) -type f -print | xargs rm -f
156
1da177e4
LT
157$(SYMLINK_HEADERS):
158 @echo ' SYMLINK $@'
fd7aab9c 159ifneq ($(KBUILD_SRC),)
5cd10daa 160 $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
fd7aab9c 161else
1da177e4
LT
162 $(Q)cd $(TOPDIR)/$(dir $@) ; \
163 ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)
fd7aab9c 164endif
1da177e4
LT
165
166include/asm-um/arch:
167 @echo ' SYMLINK $@'
fd7aab9c
AV
168ifneq ($(KBUILD_SRC),)
169 $(Q)mkdir -p include/asm-um
170 $(Q)ln -fsn $(srctree)/include/asm-$(SUBARCH) include/asm-um/arch
171else
1da177e4 172 $(Q)cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch
fd7aab9c 173endif
1da177e4 174
c6b7a1ed
JD
175$(objtree)/$(ARCH_DIR)/include:
176 @echo ' MKDIR $@'
177 $(Q)mkdir -p $@
178
179$(ARCH_DIR)/include/sysdep: $(objtree)/$(ARCH_DIR)/include
1da177e4 180 @echo ' SYMLINK $@'
fd7aab9c 181ifneq ($(KBUILD_SRC),)
ecba97d4 182 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep
fd7aab9c 183else
1da177e4 184 $(Q)cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep
fd7aab9c 185endif
1da177e4
LT
186
187$(ARCH_DIR)/os:
188 @echo ' SYMLINK $@'
fd7aab9c
AV
189ifneq ($(KBUILD_SRC),)
190 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os
191else
1da177e4 192 $(Q)cd $(ARCH_DIR) && ln -sf os-$(OS) os
fd7aab9c 193endif
1da177e4
LT
194
195# Generated files
196define filechk_umlconfig
197 sed 's/ CONFIG/ UML_CONFIG/'
198endef
199
4ee189a9
JD
200$(ARCH_DIR)/include/uml-config.h : include/linux/autoconf.h
201 $(call filechk,umlconfig)
202
203$(ARCH_DIR)/user-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.c
204 $(CC) $(USER_CFLAGS) -S -o $@ $<
205
f64a227b
SR
206define filechk_gen-asm-offsets
207 (set -e; \
f64a227b
SR
208 echo "/*"; \
209 echo " * DO NOT MODIFY."; \
210 echo " *"; \
211 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
212 echo " *"; \
213 echo " */"; \
214 echo ""; \
215 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
ecba97d4 216 echo ""; )
f64a227b
SR
217endef
218
ecba97d4 219$(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/user-offsets.s
8d0b9dc9
AV
220 $(call filechk,gen-asm-offsets)
221
ecba97d4 222CLEAN_FILES += $(ARCH_DIR)/user-offsets.s
8d0b9dc9 223
c6b7a1ed 224$(ARCH_DIR)/include/kern_constants.h: $(objtree)/$(ARCH_DIR)/include
4ee189a9
JD
225 @echo ' SYMLINK $@'
226 $(Q) ln -sf ../../../include/asm-um/asm-offsets.h $@
1da177e4
LT
227
228export SUBARCH USER_CFLAGS OS