2 # Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 # Licensed under the GPL
7 OS
:= $(shell uname
-s
)
8 # We require bash because the vmlinux link and loader script cpp use bash
12 filechk_gen_header
= $<
14 core-y
+= $(ARCH_DIR
)/kernel
/ \
15 $(ARCH_DIR
)/drivers
/ \
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 \
20 module.h vm-flags.h elf.h ldt.h
21 SYMLINK_HEADERS
:= $(foreach header
,$(SYMLINK_HEADERS
),include/asm-um
/$(header
))
23 # XXX: The "os" symlink is only used by arch/um/include/os.h, which includes
24 # ../os/include/file.h
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
31 um-modes-
$(CONFIG_MODE_TT
) += tt
32 um-modes-
$(CONFIG_MODE_SKAS
) += skas
34 MODE_INCLUDE
+= $(foreach mode
,$(um-modes-y
),\
35 -I
$(srctree
)/$(ARCH_DIR
)/include/$(mode
))
37 MAKEFILES-INCL
+= $(foreach mode
,$(um-modes-y
),\
38 $(srctree
)/$(ARCH_DIR
)/Makefile-
$(mode
))
40 ifneq ($(MAKEFILES-INCL
),)
41 include $(MAKEFILES-INCL
)
44 ARCH_INCLUDE
:= -I
$(ARCH_DIR
)/include
45 ifneq ($(KBUILD_SRC
),)
46 ARCH_INCLUDE
+= -I
$(srctree
)/$(ARCH_DIR
)/include
48 SYS_DIR
:= $(ARCH_DIR
)/include/sysdep-
$(SUBARCH
)
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.
53 # Same things for in6addr_loopback and mktime - found in libc. For these two we
54 # only get link-time error, luckily.
56 # These apply to USER_CFLAGS to.
58 CFLAGS
+= $(CFLAGS-y
) -D__arch_um__
-DSUBARCH
=\"$(SUBARCH
)\" \
59 $(ARCH_INCLUDE
) $(MODE_INCLUDE
) -Dvmap
=kernel_vmap \
60 -Din6addr_loopback
=kernel_in6addr_loopback
62 AFLAGS
+= $(ARCH_INCLUDE
)
64 USER_CFLAGS
:= $(patsubst -I
%,,$(CFLAGS
))
65 USER_CFLAGS
:= $(patsubst -D__KERNEL__
,,$(USER_CFLAGS
)) $(ARCH_INCLUDE
) \
66 $(MODE_INCLUDE
) -D_FILE_OFFSET_BITS
=64
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
72 # These apply to kernelspace only.
74 CFLAGS
+= -Derrno
=kernel_errno
-Dsigprocmask
=kernel_sigprocmask \
75 -Dmktime
=kernel_mktime
76 CFLAGS
+= $(call cc-option
,-fno-unit-at-a-time
,)
78 include $(srctree
)/$(ARCH_DIR
)/Makefile-
$(SUBARCH
)
80 #This will adjust *FLAGS accordingly to the platform.
81 include $(srctree
)/$(ARCH_DIR
)/Makefile-os-
$(OS
)
83 # These are needed for clean and mrproper, since in that case .config is not
84 # included; the values here are meaningless
86 CONFIG_NEST_LEVEL ?
= 0
87 CONFIG_KERNEL_HALF_GIGS ?
= 0
89 SIZE
= (($(CONFIG_NEST_LEVEL
) + $(CONFIG_KERNEL_HALF_GIGS
)) * 0x20000000)
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.'
105 ifneq ($(KBUILD_SRC
),)
106 $(shell mkdir
-p
$(ARCH_DIR
) && ln
-fsn
$(srctree
)/$(ARCH_DIR
)/Kconfig.
$(SUBARCH
) $(ARCH_DIR
)/Kconfig.arch
)
108 $(shell cd
$(ARCH_DIR
) && ln
-sf Kconfig.
$(SUBARCH
) Kconfig.arch
)
111 archprepare
: $(ARCH_SYMLINKS
) $(ARCH_DIR
)/include/user_constants.h
112 prepare
: $(ARCH_DIR
)/include/kern_constants.h
114 LINK-
$(CONFIG_LD_SCRIPT_STATIC
) += -static
115 LINK-
$(CONFIG_LD_SCRIPT_DYN
) += -Wl
,-rpath
,/lib
117 CPP_MODE-
$(CONFIG_MODE_TT
) := -DMODE_TT
118 CONFIG_KERNEL_STACK_ORDER ?
= 2
119 STACK_SIZE
:= $(shell echo
$$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER
)) ] )
122 START
= $(shell echo
$$[ $(TOP_ADDR
) - $(SIZE
) ] )
125 CPPFLAGS_vmlinux.lds
= -U
$(SUBARCH
) \
126 -DSTART
=$(START
) -DELF_ARCH
=$(ELF_ARCH
) \
127 -DELF_FORMAT
="$(ELF_FORMAT)" $(CPP_MODE-y
) \
128 -DKERNEL_STACK_SIZE
=$(STACK_SIZE
) \
129 -DUNMAP_PATH
=arch
/um
/sys-
$(SUBARCH
)/unmap_fin.o
131 #The wrappers will select whether using "malloc" or the kernel allocator.
132 LINK_WRAPS
= -Wl
,--wrap
,malloc
-Wl
,--wrap
,free
-Wl
,--wrap
,calloc
134 CFLAGS_vmlinux
:= $(LINK-y
) $(LINK_WRAPS
)
136 $(CC
) $(CFLAGS_vmlinux
) -o
$@ \
137 -Wl
,-T
,$(vmlinux-lds
) $(vmlinux-init
) \
138 -Wl
,--start-group
$(vmlinux-main
) -Wl
,--end-group \
140 $(filter-out $(vmlinux-lds
) $(vmlinux-init
) $(vmlinux-main
) \
141 FORCE
,$^
) ; rm -f linux
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.
146 CLEAN_FILES
+= linux x.i gmon.out
$(ARCH_DIR
)/include/uml-config.h \
147 $(ARCH_DIR
)/include/user_constants.h \
148 $(ARCH_DIR
)/include/kern_constants.h
$(ARCH_DIR
)/Kconfig.arch
150 MRPROPER_FILES
+= $(SYMLINK_HEADERS
) $(ARCH_SYMLINKS
) \
151 $(addprefix $(ARCH_DIR
)/kernel
/,$(KERN_SYMLINKS
)) $(ARCH_DIR
)/os
154 @find . \
( -name
'*.bb' -o
-name
'*.bbg' -o
-name
'*.da' \
155 -o
-name
'*.gcov' \
) -type f
-print | xargs
rm -f
159 ifneq ($(KBUILD_SRC
),)
160 $(Q
)ln
-fsn
$(srctree
)/include/asm-um
/$(basename $(notdir $@
))-$(SUBARCH
)$(suffix $@
) $@
162 $(Q
)cd
$(TOPDIR
)/$(dir $@
) ; \
163 ln
-sf
$(basename $(notdir $@
))-$(SUBARCH
)$(suffix $@
) $(notdir $@
)
168 ifneq ($(KBUILD_SRC
),)
169 $(Q
)mkdir
-p
include/asm-um
170 $(Q
)ln
-fsn
$(srctree
)/include/asm-
$(SUBARCH
) include/asm-um
/arch
172 $(Q
)cd
$(TOPDIR
)/include/asm-um
&& ln
-sf ..
/asm-
$(SUBARCH
) arch
175 $(objtree
)/$(ARCH_DIR
)/include:
179 $(ARCH_DIR
)/include/sysdep
: $(objtree
)/$(ARCH_DIR
)/include
181 ifneq ($(KBUILD_SRC
),)
182 $(Q
)ln
-fsn
$(srctree
)/$(ARCH_DIR
)/include/sysdep-
$(SUBARCH
) $(ARCH_DIR
)/include/sysdep
184 $(Q
)cd
$(ARCH_DIR
)/include && ln
-sf sysdep-
$(SUBARCH
) sysdep
189 ifneq ($(KBUILD_SRC
),)
190 $(Q
)ln
-fsn
$(srctree
)/$(ARCH_DIR
)/os-
$(OS
) $(ARCH_DIR
)/os
192 $(Q
)cd
$(ARCH_DIR
) && ln
-sf os-
$(OS
) os
196 define filechk_umlconfig
197 sed
's/ CONFIG/ UML_CONFIG/'
200 $(ARCH_DIR
)/include/uml-config.h
: include/linux
/autoconf.h
201 $(call filechk
,umlconfig
)
203 $(ARCH_DIR
)/user-offsets.s
: $(ARCH_DIR
)/sys-
$(SUBARCH
)/user-offsets.c
204 $(CC
) $(USER_CFLAGS
) -S
-o
$@
$<
206 define filechk_gen-asm-offsets
209 echo
" * DO NOT MODIFY."; \
211 echo
" * This file was generated by arch/$(ARCH)/Makefile"; \
215 sed
-ne
"/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
219 $(ARCH_DIR
)/include/user_constants.h
: $(ARCH_DIR
)/user-offsets.s
220 $(call filechk
,gen-asm-offsets
)
222 CLEAN_FILES
+= $(ARCH_DIR
)/user-offsets.s
224 $(ARCH_DIR
)/include/kern_constants.h
: $(objtree
)/$(ARCH_DIR
)/include
226 $(Q
) ln
-sf ..
/..
/..
/include/asm-um
/asm-offsets.h
$@
228 export SUBARCH USER_CFLAGS OS