]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/um/Makefile
x86, um: get rid of sysdep symlink
[mirror_ubuntu-zesty-kernel.git] / arch / um / Makefile
CommitLineData
4f193362
PS
1#
2# This file is included by the global makefile so that you can add your own
3# architecture-specific flags and dependencies.
4#
4c9e1385 5# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
6# Licensed under the GPL
7#
8
9ARCH_DIR := arch/um
10OS := $(shell uname -s)
11# We require bash because the vmlinux link and loader script cpp use bash
12# features.
13SHELL := /bin/bash
14
15filechk_gen_header = $<
16
17core-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.
2985cfdb 22SYMLINK_HEADERS := archparam.h processor.h ptrace.h module.h elf.h
8ede0bdb 23SYMLINK_HEADERS := $(foreach header,$(SYMLINK_HEADERS),$(ARCH_DIR)/include/asm/$(header))
1da177e4
LT
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!
f5ad6a42 30ARCH_SYMLINKS = $(ARCH_DIR)/os \
8569c914 31 $(SYMLINK_HEADERS) $(ARCH_DIR)/include/shared/uml-config.h
1da177e4 32
8569c914 33MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
1da177e4 34
42fda663 35include $(srctree)/$(ARCH_DIR)/Makefile-skas
1da177e4 36
8569c914 37ARCH_INCLUDE := -I$(ARCH_DIR)/include/shared
fd7aab9c 38ifneq ($(KBUILD_SRC),)
8569c914 39ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared
6b0eed4e 40KBUILD_CPPFLAGS += -I$(ARCH_DIR)/include # for SYMLINK_HEADERS
fd7aab9c 41endif
f5ad6a42 42ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH) # for sysdep
1da177e4 43
98105d47
PBG
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.
fd748104 46#
98105d47
PBG
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.
1da177e4 51
260c0cb8 52KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
98105d47 53 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
818f6ef4
JD
54 -Din6addr_loopback=kernel_in6addr_loopback \
55 -Din6addr_any=kernel_in6addr_any
fd748104 56
222d394d 57KBUILD_AFLAGS += $(ARCH_INCLUDE)
1da177e4 58
d45e44d4 59USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
a0f97e06 60 $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
260c0cb8 61 $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64
d45e44d4 62
63include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
64
65#This will adjust *FLAGS accordingly to the platform.
66include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
ecc354a9 67
1de1502c
AV
68KBUILD_CPPFLAGS += -I$(srctree)/arch/$(HEADER_ARCH)/include
69
ecc354a9
PBG
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
a0f97e06 72# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
ecc354a9 73# errnos.
98105d47 74# These apply to kernelspace only.
f15cf515
JD
75#
76# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
77# defines more robust
ecc354a9 78
f15cf515
JD
79KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
80 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
a0f97e06 81KBUILD_CFLAGS += $(KERNEL_DEFINES)
1da177e4 82
4f193362 83PHONY += linux
1da177e4
LT
84
85all: linux
86
87linux: vmlinux
a4b741e3 88 @echo ' LINK $@'
cb8aa3d2 89 $(Q)ln -f $< $@
1da177e4
LT
90
91define archhelp
92 echo '* linux - Binary kernel image (./linux) - for backward'
93 echo ' compatibility only, this creates a hard link to the'
4b3f686d 94 echo ' real kernel binary, the "vmlinux" binary you'
1da177e4
LT
95 echo ' find in the kernel root.'
96endef
97
fd7aab9c 98ifneq ($(KBUILD_SRC),)
08b178eb 99$(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
fd7aab9c 100else
8569c914 101$(shell ln -fsn Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
fd7aab9c 102endif
1da177e4 103
8569c914
AV
104archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/shared/user_constants.h
105prepare: $(ARCH_DIR)/include/shared/kern_constants.h
1da177e4
LT
106
107LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
108LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
109
275e6e1e
PBG
110CFLAGS_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
1da177e4
LT
114CONFIG_KERNEL_STACK_ORDER ?= 2
115STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
116
42fda663
JD
117CPPFLAGS_vmlinux.lds = -U$(SUBARCH) -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
118 -DELF_FORMAT="$(ELF_FORMAT)" -DKERNEL_STACK_SIZE=$(STACK_SIZE)
1da177e4 119
4c9e1385 120# The wrappers will select whether using "malloc" or the kernel allocator.
1da177e4
LT
121LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
122
260c0cb8 123LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
0ba7fe03
JD
124
125CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
1da177e4
LT
126define cmd_vmlinux__
127 $(CC) $(CFLAGS_vmlinux) -o $@ \
128 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
129 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
776cfebb 130 -lutil \
75473c1d 131 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
1da177e4
LT
132 FORCE ,$^) ; rm -f linux
133endef
134
4c9e1385
JD
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.
8569c914
AV
137CLEAN_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
1da177e4 140
cc70a40b 141MRPROPER_FILES += $(ARCH_SYMLINKS)
1da177e4
LT
142
143archclean:
1da177e4
LT
144 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
145 -o -name '*.gcov' \) -type f -print | xargs rm -f
146
1da177e4
LT
147$(SYMLINK_HEADERS):
148 @echo ' SYMLINK $@'
fd7aab9c 149ifneq ($(KBUILD_SRC),)
8ede0bdb
AV
150 $(Q)mkdir -p $(objtree)/$(ARCH_DIR)/include/asm
151 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/asm/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
fd7aab9c 152else
8569c914 153 $(Q)ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
fd7aab9c 154endif
1da177e4 155
8569c914 156$(objtree)/$(ARCH_DIR)/include/shared:
c6b7a1ed
JD
157 @echo ' MKDIR $@'
158 $(Q)mkdir -p $@
159
1da177e4
LT
160$(ARCH_DIR)/os:
161 @echo ' SYMLINK $@'
fd7aab9c 162ifneq ($(KBUILD_SRC),)
8569c914 163 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $@
fd7aab9c 164else
8569c914 165 $(Q)ln -fsn os-$(OS) $@
fd7aab9c 166endif
1da177e4
LT
167
168# Generated files
169define filechk_umlconfig
170 sed 's/ CONFIG/ UML_CONFIG/'
171endef
172
8569c914 173$(ARCH_DIR)/include/shared/uml-config.h : include/linux/autoconf.h
4ee189a9
JD
174 $(call filechk,umlconfig)
175
cb8aa3d2
PBG
176$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
177 $(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
4ee189a9 178
f64a227b
SR
179define filechk_gen-asm-offsets
180 (set -e; \
f64a227b
SR
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;}"; \
ecba97d4 189 echo ""; )
f64a227b
SR
190endef
191
8569c914 192$(ARCH_DIR)/include/shared/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
8d0b9dc9
AV
193 $(call filechk,gen-asm-offsets)
194
8569c914 195$(ARCH_DIR)/include/shared/kern_constants.h: $(objtree)/$(ARCH_DIR)/include/shared
4ee189a9 196 @echo ' SYMLINK $@'
8ede0bdb 197 $(Q)ln -sf ../../../../include/asm/asm-offsets.h $@
1da177e4 198
2b8232ce 199export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH