Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 \ |
Jeff Dike | e23181d | 2005-11-21 21:32:08 -0800 | [diff] [blame] | 20 | module.h vm-flags.h elf.h ldt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | um-modes-$(CONFIG_MODE_TT) += tt |
| 32 | um-modes-$(CONFIG_MODE_SKAS) += skas |
| 33 | |
| 34 | MODE_INCLUDE += $(foreach mode,$(um-modes-y),\ |
| 35 | -I$(srctree)/$(ARCH_DIR)/kernel/$(mode)/include) |
| 36 | |
| 37 | MAKEFILES-INCL += $(foreach mode,$(um-modes-y),\ |
| 38 | $(srctree)/$(ARCH_DIR)/Makefile-$(mode)) |
| 39 | |
| 40 | ifneq ($(MAKEFILES-INCL),) |
| 41 | include $(MAKEFILES-INCL) |
| 42 | endif |
| 43 | |
| 44 | ARCH_INCLUDE := -I$(ARCH_DIR)/include |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 45 | ifneq ($(KBUILD_SRC),) |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 46 | ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 47 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | SYS_DIR := $(ARCH_DIR)/include/sysdep-$(SUBARCH) |
| 49 | |
Paolo 'Blaisorblade' Giarrusso | ecc354a | 2005-07-14 00:33:41 -0700 | [diff] [blame] | 50 | # -Dvmap=kernel_vmap affects everything, and prevents anything from |
| 51 | # referencing the libpcap.o symbol so named. |
Paolo 'Blaisorblade' Giarrusso | fd74810 | 2005-09-21 18:39:32 +0200 | [diff] [blame] | 52 | # |
| 53 | # Same things for in6addr_loopback - found in libc. |
Paolo 'Blaisorblade' Giarrusso | ecc354a | 2005-07-14 00:33:41 -0700 | [diff] [blame] | 54 | |
| 55 | CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \ |
Paolo 'Blaisorblade' Giarrusso | fd74810 | 2005-09-21 18:39:32 +0200 | [diff] [blame] | 56 | $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \ |
| 57 | -Din6addr_loopback=kernel_in6addr_loopback |
| 58 | |
Al Viro | 93ea5a5b | 2005-09-03 15:57:30 -0700 | [diff] [blame] | 59 | AFLAGS += $(ARCH_INCLUDE) |
Paolo 'Blaisorblade' Giarrusso | ecc354a | 2005-07-14 00:33:41 -0700 | [diff] [blame] | 60 | |
| 61 | USER_CFLAGS := $(patsubst -I%,,$(CFLAGS)) |
| 62 | USER_CFLAGS := $(patsubst -D__KERNEL__,,$(USER_CFLAGS)) $(ARCH_INCLUDE) \ |
Jeff Dike | ae17381 | 2005-11-07 00:58:57 -0800 | [diff] [blame] | 63 | $(MODE_INCLUDE) -D_FILE_OFFSET_BITS=64 |
Paolo 'Blaisorblade' Giarrusso | ecc354a | 2005-07-14 00:33:41 -0700 | [diff] [blame] | 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | CFLAGS += -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask |
| 71 | CFLAGS += $(call cc-option,-fno-unit-at-a-time,) |
| 72 | |
Paolo 'Blaisorblade' Giarrusso | 20d0021 | 2005-07-14 00:33:43 -0700 | [diff] [blame] | 73 | include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH) |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | .PHONY: linux |
| 87 | |
| 88 | all: linux |
| 89 | |
| 90 | linux: vmlinux |
| 91 | ln -f $< $@ |
| 92 | |
| 93 | define archhelp |
| 94 | echo '* linux - Binary kernel image (./linux) - for backward' |
| 95 | echo ' compatibility only, this creates a hard link to the' |
| 96 | echo ' real kernel binary, the the "vmlinux" binary you' |
| 97 | echo ' find in the kernel root.' |
| 98 | endef |
| 99 | |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 100 | ifneq ($(KBUILD_SRC),) |
Jeff Dike | 08b178e | 2005-09-03 15:57:12 -0700 | [diff] [blame] | 101 | $(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch) |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 102 | else |
Jeff Dike | 08b178e | 2005-09-03 15:57:12 -0700 | [diff] [blame] | 103 | $(shell cd $(ARCH_DIR) && ln -sf Kconfig.$(SUBARCH) Kconfig.arch) |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 104 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Al Viro | ecba97d | 2005-09-28 22:27:23 +0100 | [diff] [blame] | 106 | archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/user_constants.h |
| 107 | prepare: $(ARCH_DIR)/include/kern_constants.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static |
| 110 | LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | CPP_MODE-$(CONFIG_MODE_TT) := -DMODE_TT |
| 113 | CONFIG_KERNEL_STACK_ORDER ?= 2 |
| 114 | STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] ) |
| 115 | |
| 116 | ifndef START |
Paolo 'Blaisorblade' Giarrusso | 1c30385 | 2005-07-14 00:33:38 -0700 | [diff] [blame] | 117 | START = $(shell echo $$[ $(TOP_ADDR) - $(SIZE) ] ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | endif |
| 119 | |
Paolo 'Blaisorblade' Giarrusso | 1c30385 | 2005-07-14 00:33:38 -0700 | [diff] [blame] | 120 | CPPFLAGS_vmlinux.lds = -U$(SUBARCH) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \ |
Paolo 'Blaisorblade' Giarrusso | 1c30385 | 2005-07-14 00:33:38 -0700 | [diff] [blame] | 122 | -DELF_FORMAT="$(ELF_FORMAT)" $(CPP_MODE-y) \ |
| 123 | -DKERNEL_STACK_SIZE=$(STACK_SIZE) \ |
| 124 | -DUNMAP_PATH=arch/um/sys-$(SUBARCH)/unmap_fin.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
| 126 | #The wrappers will select whether using "malloc" or the kernel allocator. |
| 127 | LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc |
| 128 | |
Paolo 'Blaisorblade' Giarrusso | 20d0021 | 2005-07-14 00:33:43 -0700 | [diff] [blame] | 129 | CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | define cmd_vmlinux__ |
| 131 | $(CC) $(CFLAGS_vmlinux) -o $@ \ |
| 132 | -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \ |
| 133 | -Wl,--start-group $(vmlinux-main) -Wl,--end-group \ |
Paolo 'Blaisorblade' Giarrusso | 776cfeb | 2005-05-05 16:15:18 -0700 | [diff] [blame] | 134 | -lutil \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) \ |
| 136 | FORCE ,$^) ; rm -f linux |
| 137 | endef |
| 138 | |
| 139 | #When cleaning we don't include .config, so we don't include |
| 140 | #TT or skas makefiles and don't clean skas_ptregs.h. |
| 141 | CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/uml-config.h \ |
Al Viro | ecba97d | 2005-09-28 22:27:23 +0100 | [diff] [blame] | 142 | $(ARCH_DIR)/include/user_constants.h \ |
| 143 | $(ARCH_DIR)/include/kern_constants.h $(ARCH_DIR)/Kconfig.arch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | MRPROPER_FILES += $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) \ |
Paolo 'Blaisorblade' Giarrusso | 2d5cbf3 | 2005-09-10 19:44:53 +0200 | [diff] [blame] | 146 | $(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS)) $(ARCH_DIR)/os |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
| 148 | archclean: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \ |
| 150 | -o -name '*.gcov' \) -type f -print | xargs rm -f |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | $(SYMLINK_HEADERS): |
| 153 | @echo ' SYMLINK $@' |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 154 | ifneq ($(KBUILD_SRC),) |
Paolo 'Blaisorblade' Giarrusso | 5cd10da | 2005-10-09 21:37:05 +0200 | [diff] [blame] | 155 | $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 156 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | $(Q)cd $(TOPDIR)/$(dir $@) ; \ |
| 158 | ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@) |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 159 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | include/asm-um/arch: |
| 162 | @echo ' SYMLINK $@' |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 163 | ifneq ($(KBUILD_SRC),) |
| 164 | $(Q)mkdir -p include/asm-um |
| 165 | $(Q)ln -fsn $(srctree)/include/asm-$(SUBARCH) include/asm-um/arch |
| 166 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | $(Q)cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 168 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
| 170 | $(ARCH_DIR)/include/sysdep: |
| 171 | @echo ' SYMLINK $@' |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 172 | ifneq ($(KBUILD_SRC),) |
| 173 | $(Q)mkdir -p $(ARCH_DIR)/include |
Al Viro | ecba97d | 2005-09-28 22:27:23 +0100 | [diff] [blame] | 174 | $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 175 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | $(Q)cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 177 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | $(ARCH_DIR)/os: |
| 180 | @echo ' SYMLINK $@' |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 181 | ifneq ($(KBUILD_SRC),) |
| 182 | $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os |
| 183 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | $(Q)cd $(ARCH_DIR) && ln -sf os-$(OS) os |
Al Viro | fd7aab9 | 2005-05-05 16:15:29 -0700 | [diff] [blame] | 185 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | # Generated files |
| 188 | define filechk_umlconfig |
| 189 | sed 's/ CONFIG/ UML_CONFIG/' |
| 190 | endef |
| 191 | |
Jeff Dike | 4ee189a | 2006-01-11 12:17:23 -0800 | [diff] [blame] | 192 | $(ARCH_DIR)/include/uml-config.h : include/linux/autoconf.h |
| 193 | $(call filechk,umlconfig) |
| 194 | |
| 195 | $(ARCH_DIR)/user-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.c |
| 196 | $(CC) $(USER_CFLAGS) -S -o $@ $< |
| 197 | |
Sam Ravnborg | f64a227 | 2005-09-09 23:10:54 +0200 | [diff] [blame] | 198 | define filechk_gen-asm-offsets |
| 199 | (set -e; \ |
Sam Ravnborg | f64a227 | 2005-09-09 23:10:54 +0200 | [diff] [blame] | 200 | echo "/*"; \ |
| 201 | echo " * DO NOT MODIFY."; \ |
| 202 | echo " *"; \ |
| 203 | echo " * This file was generated by arch/$(ARCH)/Makefile"; \ |
| 204 | echo " *"; \ |
| 205 | echo " */"; \ |
| 206 | echo ""; \ |
| 207 | sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \ |
Al Viro | ecba97d | 2005-09-28 22:27:23 +0100 | [diff] [blame] | 208 | echo ""; ) |
Sam Ravnborg | f64a227 | 2005-09-09 23:10:54 +0200 | [diff] [blame] | 209 | endef |
| 210 | |
Al Viro | ecba97d | 2005-09-28 22:27:23 +0100 | [diff] [blame] | 211 | $(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/user-offsets.s |
Al Viro | 8d0b9dc | 2005-05-05 16:15:23 -0700 | [diff] [blame] | 212 | $(call filechk,gen-asm-offsets) |
| 213 | |
Al Viro | ecba97d | 2005-09-28 22:27:23 +0100 | [diff] [blame] | 214 | CLEAN_FILES += $(ARCH_DIR)/user-offsets.s |
Al Viro | 8d0b9dc | 2005-05-05 16:15:23 -0700 | [diff] [blame] | 215 | |
Jeff Dike | 4ee189a | 2006-01-11 12:17:23 -0800 | [diff] [blame] | 216 | $(ARCH_DIR)/include/kern_constants.h: |
| 217 | @echo ' SYMLINK $@' |
| 218 | $(Q) ln -sf ../../../include/asm-um/asm-offsets.h $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
| 220 | export SUBARCH USER_CFLAGS OS |