blob: 425b8193961964ba8d5e2ce7fb8654a551fafd55 [file] [log] [blame]
Paul Smith4f193362006-03-05 17:14:10 -05001#
2# This file is included by the global makefile so that you can add your own
3# architecture-specific flags and dependencies.
4#
Jeff Dike4c9e1382007-10-16 01:26:54 -07005# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006# 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021# These are cleaned up during mrproper. Please DO NOT fix it again, this is
22# the Correct Thing(tm) to do!
Al Viroec82c322008-08-25 04:14:29 -040023ARCH_SYMLINKS = $(ARCH_DIR)/include/shared/uml-config.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Al Viro8569c912008-08-17 13:48:37 -040025MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Jeff Dike42fda662007-10-16 01:26:50 -070027include $(srctree)/$(ARCH_DIR)/Makefile-skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Al Viroaa7bd942008-08-23 17:28:20 -040029ARCH_INCLUDE := -I$(srctree)/$(ARCH_DIR)/include/shared
30ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)/shared
Al Virofd7aab92005-05-05 16:15:29 -070031ifneq ($(KBUILD_SRC),)
Al Viroaa7bd942008-08-23 17:28:20 -040032ARCH_INCLUDE += -I$(ARCH_DIR)/include/shared # for three generated files
Al Virofd7aab92005-05-05 16:15:29 -070033endif
Al Viroaa7bd942008-08-23 17:28:20 -040034KBUILD_CPPFLAGS += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080036# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
37# named - it's a common symbol in libpcap, so we get a binary which crashes.
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020038#
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080039# Same things for in6addr_loopback and mktime - found in libc. For these two we
40# only get link-time error, luckily.
41#
42# These apply to USER_CFLAGS to.
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070043
Jeff Dike260c0cb2008-02-04 22:31:02 -080044KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080045 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
Jeff Dike818f6ef2007-10-16 01:26:45 -070046 -Din6addr_loopback=kernel_in6addr_loopback \
47 -Din6addr_any=kernel_in6addr_any
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020048
Sam Ravnborg222d3942007-10-15 21:59:31 +020049KBUILD_AFLAGS += $(ARCH_INCLUDE)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070050
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080051USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
Sam Ravnborga0f97e02007-10-14 22:21:35 +020052 $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
Jeff Dike260c0cb2008-02-04 22:31:02 -080053 $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080054
55include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
56
57#This will adjust *FLAGS accordingly to the platform.
58include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070059
Al Viro1de15022008-08-17 22:54:55 -040060KBUILD_CPPFLAGS += -I$(srctree)/arch/$(HEADER_ARCH)/include
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062# -Derrno=kernel_errno - This turns all kernel references to errno into
63# kernel_errno to separate them from the libc errno. This allows -fno-common
Sam Ravnborga0f97e02007-10-14 22:21:35 +020064# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
Linus Torvalds1da177e2005-04-16 15:20:36 -070065# errnos.
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080066# These apply to kernelspace only.
Jeff Dikef15cf512007-11-05 14:50:59 -080067#
68# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
69# defines more robust
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Jeff Dikef15cf512007-11-05 14:50:59 -080071KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
72 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
Sam Ravnborga0f97e02007-10-14 22:21:35 +020073KBUILD_CFLAGS += $(KERNEL_DEFINES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Paul Smith4f193362006-03-05 17:14:10 -050075PHONY += linux
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77all: linux
78
79linux: vmlinux
Jeff Dikea4b741e2006-05-01 12:16:06 -070080 @echo ' LINK $@'
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -070081 $(Q)ln -f $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83define archhelp
84 echo '* linux - Binary kernel image (./linux) - for backward'
85 echo ' compatibility only, this creates a hard link to the'
Matt LaPlante4b3f6862006-10-03 22:21:02 +020086 echo ' real kernel binary, the "vmlinux" binary you'
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 echo ' find in the kernel root.'
88endef
89
Al Viro61bee202008-08-25 04:51:27 -040090KBUILD_KCONFIG := arch/um/Kconfig.$(HEADER_ARCH)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Al Viro8569c912008-08-17 13:48:37 -040092archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/shared/user_constants.h
93prepare: $(ARCH_DIR)/include/shared/kern_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
96LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
97
Paolo 'Blaisorblade' Giarrusso275e6e12006-05-01 12:16:04 -070098CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
99 $(call cc-option, -fno-stack-protector,) \
100 $(call cc-option, -fno-stack-protector-all,)
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102CONFIG_KERNEL_STACK_ORDER ?= 2
103STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
104
Jeff Dike42fda662007-10-16 01:26:50 -0700105CPPFLAGS_vmlinux.lds = -U$(SUBARCH) -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
106 -DELF_FORMAT="$(ELF_FORMAT)" -DKERNEL_STACK_SIZE=$(STACK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Jeff Dike4c9e1382007-10-16 01:26:54 -0700108# The wrappers will select whether using "malloc" or the kernel allocator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
110
Jeff Dike260c0cb2008-02-04 22:31:02 -0800111LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
Jeff Dike0ba7fe02008-02-04 22:30:45 -0800112
113CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114define cmd_vmlinux__
115 $(CC) $(CFLAGS_vmlinux) -o $@ \
116 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
117 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -0700118 -lutil \
Al Viro75473c12007-07-20 02:01:16 +0100119 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 FORCE ,$^) ; rm -f linux
121endef
122
Jeff Dike4c9e1382007-10-16 01:26:54 -0700123# When cleaning we don't include .config, so we don't include
124# TT or skas makefiles and don't clean skas_ptregs.h.
Al Viro8569c912008-08-17 13:48:37 -0400125CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/shared/uml-config.h \
126 $(ARCH_DIR)/include/shared/user_constants.h \
Al Viro61bee202008-08-25 04:51:27 -0400127 $(ARCH_DIR)/include/shared/kern_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Al Virocc70a402006-03-31 02:30:13 -0800129MRPROPER_FILES += $(ARCH_SYMLINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131archclean:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
133 -o -name '*.gcov' \) -type f -print | xargs rm -f
134
Al Viro8569c912008-08-17 13:48:37 -0400135$(objtree)/$(ARCH_DIR)/include/shared:
Jeff Dikec6b7a1e2006-02-01 03:06:22 -0800136 @echo ' MKDIR $@'
137 $(Q)mkdir -p $@
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139# Generated files
140define filechk_umlconfig
141 sed 's/ CONFIG/ UML_CONFIG/'
142endef
143
Al Viro8569c912008-08-17 13:48:37 -0400144$(ARCH_DIR)/include/shared/uml-config.h : include/linux/autoconf.h
Jeff Dike4ee189a2006-01-11 12:17:23 -0800145 $(call filechk,umlconfig)
146
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700147$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
148 $(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
Jeff Dike4ee189a2006-01-11 12:17:23 -0800149
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200150define filechk_gen-asm-offsets
151 (set -e; \
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200152 echo "/*"; \
153 echo " * DO NOT MODIFY."; \
154 echo " *"; \
155 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
156 echo " *"; \
157 echo " */"; \
158 echo ""; \
159 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
Al Viroecba97d2005-09-28 22:27:23 +0100160 echo ""; )
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200161endef
162
Al Viro8569c912008-08-17 13:48:37 -0400163$(ARCH_DIR)/include/shared/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
Al Viro8d0b9dc2005-05-05 16:15:23 -0700164 $(call filechk,gen-asm-offsets)
165
Al Viro8569c912008-08-17 13:48:37 -0400166$(ARCH_DIR)/include/shared/kern_constants.h: $(objtree)/$(ARCH_DIR)/include/shared
Jeff Dike4ee189a2006-01-11 12:17:23 -0800167 @echo ' SYMLINK $@'
Al Viro8ede0bd2008-08-17 19:13:17 -0400168 $(Q)ln -sf ../../../../include/asm/asm-offsets.h $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Al Viroec82c322008-08-25 04:14:29 -0400170export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH DEV_NULL_PATH