2006-03-05 23:14:10 +01:00
|
|
|
#
|
|
|
|
# This file is included by the global makefile so that you can add your own
|
|
|
|
# architecture-specific flags and dependencies.
|
|
|
|
#
|
2005-04-17 00:20:36 +02:00
|
|
|
# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
|
|
|
|
# Licensed under the GPL
|
|
|
|
#
|
|
|
|
|
|
|
|
ARCH_DIR := arch/um
|
|
|
|
OS := $(shell uname -s)
|
|
|
|
# We require bash because the vmlinux link and loader script cpp use bash
|
|
|
|
# features.
|
|
|
|
SHELL := /bin/bash
|
|
|
|
|
|
|
|
filechk_gen_header = $<
|
|
|
|
|
|
|
|
core-y += $(ARCH_DIR)/kernel/ \
|
|
|
|
$(ARCH_DIR)/drivers/ \
|
|
|
|
$(ARCH_DIR)/os-$(OS)/
|
|
|
|
|
|
|
|
# Have to precede the include because the included Makefiles reference them.
|
|
|
|
SYMLINK_HEADERS := archparam.h system.h sigcontext.h processor.h ptrace.h \
|
2006-03-31 12:30:19 +02:00
|
|
|
module.h vm-flags.h elf.h host_ldt.h
|
2005-04-17 00:20:36 +02:00
|
|
|
SYMLINK_HEADERS := $(foreach header,$(SYMLINK_HEADERS),include/asm-um/$(header))
|
|
|
|
|
|
|
|
# XXX: The "os" symlink is only used by arch/um/include/os.h, which includes
|
|
|
|
# ../os/include/file.h
|
|
|
|
#
|
|
|
|
# These are cleaned up during mrproper. Please DO NOT fix it again, this is
|
|
|
|
# the Correct Thing(tm) to do!
|
|
|
|
ARCH_SYMLINKS = include/asm-um/arch $(ARCH_DIR)/include/sysdep $(ARCH_DIR)/os \
|
|
|
|
$(SYMLINK_HEADERS) $(ARCH_DIR)/include/uml-config.h
|
|
|
|
|
|
|
|
um-modes-$(CONFIG_MODE_TT) += tt
|
|
|
|
um-modes-$(CONFIG_MODE_SKAS) += skas
|
|
|
|
|
|
|
|
MODE_INCLUDE += $(foreach mode,$(um-modes-y),\
|
2006-01-19 02:42:44 +01:00
|
|
|
-I$(srctree)/$(ARCH_DIR)/include/$(mode))
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
MAKEFILES-INCL += $(foreach mode,$(um-modes-y),\
|
|
|
|
$(srctree)/$(ARCH_DIR)/Makefile-$(mode))
|
|
|
|
|
|
|
|
ifneq ($(MAKEFILES-INCL),)
|
|
|
|
include $(MAKEFILES-INCL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ARCH_INCLUDE := -I$(ARCH_DIR)/include
|
2005-05-06 01:15:29 +02:00
|
|
|
ifneq ($(KBUILD_SRC),)
|
|
|
|
ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include
|
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
SYS_DIR := $(ARCH_DIR)/include/sysdep-$(SUBARCH)
|
|
|
|
|
2006-02-01 12:06:25 +01:00
|
|
|
# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
|
|
|
|
# named - it's a common symbol in libpcap, so we get a binary which crashes.
|
2005-09-21 18:39:32 +02:00
|
|
|
#
|
2006-02-01 12:06:25 +01:00
|
|
|
# Same things for in6addr_loopback and mktime - found in libc. For these two we
|
|
|
|
# only get link-time error, luckily.
|
|
|
|
#
|
|
|
|
# These apply to USER_CFLAGS to.
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-02-01 12:06:25 +01:00
|
|
|
CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
|
|
|
|
$(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
|
2005-09-21 18:39:32 +02:00
|
|
|
-Din6addr_loopback=kernel_in6addr_loopback
|
|
|
|
|
2005-09-04 00:57:30 +02:00
|
|
|
AFLAGS += $(ARCH_INCLUDE)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-10-30 07:46:42 +01:00
|
|
|
USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
|
|
|
|
$(patsubst -I%,,$(CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
|
|
|
|
-D_FILE_OFFSET_BITS=64
|
|
|
|
|
|
|
|
include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
|
|
|
|
|
|
|
|
#This will adjust *FLAGS accordingly to the platform.
|
|
|
|
include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
|
2005-07-14 09:33:41 +02:00
|
|
|
|
|
|
|
# -Derrno=kernel_errno - This turns all kernel references to errno into
|
|
|
|
# kernel_errno to separate them from the libc errno. This allows -fno-common
|
|
|
|
# in CFLAGS. Otherwise, it would cause ld to complain about the two different
|
|
|
|
# errnos.
|
2006-02-01 12:06:25 +01:00
|
|
|
# These apply to kernelspace only.
|
2005-07-14 09:33:41 +02:00
|
|
|
|
2006-10-30 07:46:42 +01:00
|
|
|
KERNEL_DEFINES = -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
|
|
|
|
-Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES)
|
|
|
|
CFLAGS += $(KERNEL_DEFINES)
|
2005-04-17 00:20:36 +02:00
|
|
|
CFLAGS += $(call cc-option,-fno-unit-at-a-time,)
|
|
|
|
|
|
|
|
# These are needed for clean and mrproper, since in that case .config is not
|
|
|
|
# included; the values here are meaningless
|
|
|
|
|
|
|
|
CONFIG_NEST_LEVEL ?= 0
|
|
|
|
CONFIG_KERNEL_HALF_GIGS ?= 0
|
|
|
|
|
|
|
|
SIZE = (($(CONFIG_NEST_LEVEL) + $(CONFIG_KERNEL_HALF_GIGS)) * 0x20000000)
|
|
|
|
|
2006-03-05 23:14:10 +01:00
|
|
|
PHONY += linux
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
all: linux
|
|
|
|
|
|
|
|
linux: vmlinux
|
2006-05-01 21:16:06 +02:00
|
|
|
@echo ' LINK $@'
|
2006-05-01 21:16:03 +02:00
|
|
|
$(Q)ln -f $< $@
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
define archhelp
|
|
|
|
echo '* linux - Binary kernel image (./linux) - for backward'
|
|
|
|
echo ' compatibility only, this creates a hard link to the'
|
2006-10-03 22:21:02 +02:00
|
|
|
echo ' real kernel binary, the "vmlinux" binary you'
|
2005-04-17 00:20:36 +02:00
|
|
|
echo ' find in the kernel root.'
|
|
|
|
endef
|
|
|
|
|
2005-05-06 01:15:29 +02:00
|
|
|
ifneq ($(KBUILD_SRC),)
|
2005-09-04 00:57:12 +02:00
|
|
|
$(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
|
2005-05-06 01:15:29 +02:00
|
|
|
else
|
2005-09-04 00:57:12 +02:00
|
|
|
$(shell cd $(ARCH_DIR) && ln -sf Kconfig.$(SUBARCH) Kconfig.arch)
|
2005-05-06 01:15:29 +02:00
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-28 23:27:23 +02:00
|
|
|
archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/user_constants.h
|
|
|
|
prepare: $(ARCH_DIR)/include/kern_constants.h
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
|
|
|
|
LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
|
|
|
|
|
2006-05-01 21:16:04 +02:00
|
|
|
CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
|
|
|
|
$(call cc-option, -fno-stack-protector,) \
|
|
|
|
$(call cc-option, -fno-stack-protector-all,)
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
CPP_MODE-$(CONFIG_MODE_TT) := -DMODE_TT
|
|
|
|
CONFIG_KERNEL_STACK_ORDER ?= 2
|
|
|
|
STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
|
|
|
|
|
|
|
|
ifndef START
|
2005-07-14 09:33:38 +02:00
|
|
|
START = $(shell echo $$[ $(TOP_ADDR) - $(SIZE) ] )
|
2005-04-17 00:20:36 +02:00
|
|
|
endif
|
|
|
|
|
2005-07-14 09:33:38 +02:00
|
|
|
CPPFLAGS_vmlinux.lds = -U$(SUBARCH) \
|
2005-04-17 00:20:36 +02:00
|
|
|
-DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
|
2005-07-14 09:33:38 +02:00
|
|
|
-DELF_FORMAT="$(ELF_FORMAT)" $(CPP_MODE-y) \
|
|
|
|
-DKERNEL_STACK_SIZE=$(STACK_SIZE) \
|
2006-03-31 12:30:12 +02:00
|
|
|
-DUNMAP_PATH=arch/um/sys-$(SUBARCH)/unmap.o
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#The wrappers will select whether using "malloc" or the kernel allocator.
|
|
|
|
LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
|
|
|
|
|
2005-07-14 09:33:43 +02:00
|
|
|
CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS)
|
2005-04-17 00:20:36 +02:00
|
|
|
define cmd_vmlinux__
|
|
|
|
$(CC) $(CFLAGS_vmlinux) -o $@ \
|
|
|
|
-Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
|
|
|
|
-Wl,--start-group $(vmlinux-main) -Wl,--end-group \
|
2005-05-06 01:15:18 +02:00
|
|
|
-lutil \
|
2007-07-20 03:01:16 +02:00
|
|
|
$(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
|
2005-04-17 00:20:36 +02:00
|
|
|
FORCE ,$^) ; rm -f linux
|
|
|
|
endef
|
|
|
|
|
|
|
|
#When cleaning we don't include .config, so we don't include
|
|
|
|
#TT or skas makefiles and don't clean skas_ptregs.h.
|
|
|
|
CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/uml-config.h \
|
2005-09-28 23:27:23 +02:00
|
|
|
$(ARCH_DIR)/include/user_constants.h \
|
|
|
|
$(ARCH_DIR)/include/kern_constants.h $(ARCH_DIR)/Kconfig.arch
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-03-31 12:30:13 +02:00
|
|
|
MRPROPER_FILES += $(ARCH_SYMLINKS)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
archclean:
|
|
|
|
@find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
|
|
|
|
-o -name '*.gcov' \) -type f -print | xargs rm -f
|
|
|
|
|
|
|
|
$(SYMLINK_HEADERS):
|
|
|
|
@echo ' SYMLINK $@'
|
2005-05-06 01:15:29 +02:00
|
|
|
ifneq ($(KBUILD_SRC),)
|
2006-04-11 07:53:40 +02:00
|
|
|
$(Q)mkdir -p $(objtree)/include/asm-um
|
2005-10-09 21:37:05 +02:00
|
|
|
$(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
|
2005-05-06 01:15:29 +02:00
|
|
|
else
|
2005-04-17 00:20:36 +02:00
|
|
|
$(Q)cd $(TOPDIR)/$(dir $@) ; \
|
|
|
|
ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)
|
2005-05-06 01:15:29 +02:00
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
include/asm-um/arch:
|
|
|
|
@echo ' SYMLINK $@'
|
2005-05-06 01:15:29 +02:00
|
|
|
ifneq ($(KBUILD_SRC),)
|
2006-04-11 07:53:40 +02:00
|
|
|
$(Q)mkdir -p $(objtree)/include/asm-um
|
2005-05-06 01:15:29 +02:00
|
|
|
$(Q)ln -fsn $(srctree)/include/asm-$(SUBARCH) include/asm-um/arch
|
|
|
|
else
|
2005-04-17 00:20:36 +02:00
|
|
|
$(Q)cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(SUBARCH) arch
|
2005-05-06 01:15:29 +02:00
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-02-01 12:06:22 +01:00
|
|
|
$(objtree)/$(ARCH_DIR)/include:
|
|
|
|
@echo ' MKDIR $@'
|
|
|
|
$(Q)mkdir -p $@
|
|
|
|
|
|
|
|
$(ARCH_DIR)/include/sysdep: $(objtree)/$(ARCH_DIR)/include
|
2005-04-17 00:20:36 +02:00
|
|
|
@echo ' SYMLINK $@'
|
2005-05-06 01:15:29 +02:00
|
|
|
ifneq ($(KBUILD_SRC),)
|
2005-09-28 23:27:23 +02:00
|
|
|
$(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep
|
2005-05-06 01:15:29 +02:00
|
|
|
else
|
2005-04-17 00:20:36 +02:00
|
|
|
$(Q)cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep
|
2005-05-06 01:15:29 +02:00
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
$(ARCH_DIR)/os:
|
|
|
|
@echo ' SYMLINK $@'
|
2005-05-06 01:15:29 +02:00
|
|
|
ifneq ($(KBUILD_SRC),)
|
|
|
|
$(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os
|
|
|
|
else
|
2005-04-17 00:20:36 +02:00
|
|
|
$(Q)cd $(ARCH_DIR) && ln -sf os-$(OS) os
|
2005-05-06 01:15:29 +02:00
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
# Generated files
|
|
|
|
define filechk_umlconfig
|
|
|
|
sed 's/ CONFIG/ UML_CONFIG/'
|
|
|
|
endef
|
|
|
|
|
[PATCH] uml: fix missing KBUILD_BASENAME
2.6.15-mm1 caused kernel-offsets.c to stop compiling with a syntax error in a
header. The problem was with KBUILD_BASENAME, which didn't get a definition
with the by-hand compilation in the main UML Makefile.
This was OK before since the expansion was syntactically the same as the
KBUILD_BASENAME token. With -mm1, the expansion is now a quote-delimited
string, so there needs to be a definition of it.
Since kernel-offsets.c is basically the same as other arches' asm-offsets.c,
and those seem to build OK, this patch turns kernel-offsets.c into
asm-offsets.c. kernel-offsets.c is in arch/um/sys-$(SUBARCH), i.e. sys-i386
and sys-x86_64, while kbuild expects it to be in arch/um/kernel.
kernel-offsets.c is moved to
arch/um/include/sysdep-$(SUBARCH)/kernel-offsets.h, which is included by
arch/um/kernel/asm-offsets.c. With that, include/asm-um/asm-offsets.h is
generated automatically. kernel-offsets.h continues to exist because it needs
to be accessible to userspace UML code, and include/asm-um isn't. So, a
symlink is made from arch/um/include/kernel-offsets.h to
include/asm-um/asm-offsets.h.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-01-11 21:17:23 +01:00
|
|
|
$(ARCH_DIR)/include/uml-config.h : include/linux/autoconf.h
|
|
|
|
$(call filechk,umlconfig)
|
|
|
|
|
2006-05-01 21:16:03 +02:00
|
|
|
$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
|
|
|
|
$(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
|
[PATCH] uml: fix missing KBUILD_BASENAME
2.6.15-mm1 caused kernel-offsets.c to stop compiling with a syntax error in a
header. The problem was with KBUILD_BASENAME, which didn't get a definition
with the by-hand compilation in the main UML Makefile.
This was OK before since the expansion was syntactically the same as the
KBUILD_BASENAME token. With -mm1, the expansion is now a quote-delimited
string, so there needs to be a definition of it.
Since kernel-offsets.c is basically the same as other arches' asm-offsets.c,
and those seem to build OK, this patch turns kernel-offsets.c into
asm-offsets.c. kernel-offsets.c is in arch/um/sys-$(SUBARCH), i.e. sys-i386
and sys-x86_64, while kbuild expects it to be in arch/um/kernel.
kernel-offsets.c is moved to
arch/um/include/sysdep-$(SUBARCH)/kernel-offsets.h, which is included by
arch/um/kernel/asm-offsets.c. With that, include/asm-um/asm-offsets.h is
generated automatically. kernel-offsets.h continues to exist because it needs
to be accessible to userspace UML code, and include/asm-um isn't. So, a
symlink is made from arch/um/include/kernel-offsets.h to
include/asm-um/asm-offsets.h.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-01-11 21:17:23 +01:00
|
|
|
|
2005-09-09 23:10:54 +02:00
|
|
|
define filechk_gen-asm-offsets
|
|
|
|
(set -e; \
|
|
|
|
echo "/*"; \
|
|
|
|
echo " * DO NOT MODIFY."; \
|
|
|
|
echo " *"; \
|
|
|
|
echo " * This file was generated by arch/$(ARCH)/Makefile"; \
|
|
|
|
echo " *"; \
|
|
|
|
echo " */"; \
|
|
|
|
echo ""; \
|
|
|
|
sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
|
2005-09-28 23:27:23 +02:00
|
|
|
echo ""; )
|
2005-09-09 23:10:54 +02:00
|
|
|
endef
|
|
|
|
|
2006-05-01 21:16:03 +02:00
|
|
|
$(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
|
2005-05-06 01:15:23 +02:00
|
|
|
$(call filechk,gen-asm-offsets)
|
|
|
|
|
2006-02-01 12:06:22 +01:00
|
|
|
$(ARCH_DIR)/include/kern_constants.h: $(objtree)/$(ARCH_DIR)/include
|
[PATCH] uml: fix missing KBUILD_BASENAME
2.6.15-mm1 caused kernel-offsets.c to stop compiling with a syntax error in a
header. The problem was with KBUILD_BASENAME, which didn't get a definition
with the by-hand compilation in the main UML Makefile.
This was OK before since the expansion was syntactically the same as the
KBUILD_BASENAME token. With -mm1, the expansion is now a quote-delimited
string, so there needs to be a definition of it.
Since kernel-offsets.c is basically the same as other arches' asm-offsets.c,
and those seem to build OK, this patch turns kernel-offsets.c into
asm-offsets.c. kernel-offsets.c is in arch/um/sys-$(SUBARCH), i.e. sys-i386
and sys-x86_64, while kbuild expects it to be in arch/um/kernel.
kernel-offsets.c is moved to
arch/um/include/sysdep-$(SUBARCH)/kernel-offsets.h, which is included by
arch/um/kernel/asm-offsets.c. With that, include/asm-um/asm-offsets.h is
generated automatically. kernel-offsets.h continues to exist because it needs
to be accessible to userspace UML code, and include/asm-um isn't. So, a
symlink is made from arch/um/include/kernel-offsets.h to
include/asm-um/asm-offsets.h.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-01-11 21:17:23 +01:00
|
|
|
@echo ' SYMLINK $@'
|
2006-05-01 21:16:03 +02:00
|
|
|
$(Q)ln -sf ../../../include/asm-um/asm-offsets.h $@
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-05-01 21:16:04 +02:00
|
|
|
export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS
|