summaryrefslogtreecommitdiffstats
path: root/sys/conf/Makefile.arm
blob: 11495a401bd47d42914c937495d3ba0dddd98e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Makefile.arm -- with config changes.
# Copyright 1990 W. Jolitz
#	from: @(#)Makefile.i386	7.1 5/10/91
# $FreeBSD$
#
# Makefile for FreeBSD
#
# This makefile is constructed from a machine description:
#	config machineid
# Most changes should be made in the machine description
#	/sys/arm/conf/``machineid''
# after which you should do
#	 config machineid
# Generic makefile changes should be made in
#	/sys/conf/Makefile.arm
# after which config should be rerun for all machines.
#

# Which version of config(8) is required.
%VERSREQ=	600003

# Temporary stuff while we're still embryonic
NO_MODULES=

STD8X16FONT?=	iso

.if !defined(S)
.if exists(./@/.)
S=	./@
.else
S=	../../..
.endif
.endif
.include "$S/conf/kern.pre.mk"

SYSTEM_LD:= ${SYSTEM_LD:$S/conf/ldscript.$M=ldscript.$M}
SYSTEM_DEP:= ${SYSTEM_DEP:$S/conf/ldscript.$M=ldscript.$M}

.if defined(ARM_BIG_ENDIAN)
CC += -mbig-endian
SYSTEM_LD += -EB
.endif


.if !defined(DEBUG)
CFLAGS += -mno-apcs-frame
.endif

DDB_ENABLED!=	grep DDB opt_ddb.h || true

SYSTEM_LD_ = ${LD} -Bdynamic -T ldscript.$M.static \
	  -warn-common -export-dynamic -dynamic-linker /red/herring -o \
	   ${FULLKERNEL}.noheader -X ${SYSTEM_OBJS} vers.o
SYSTEM_LD_TAIL +=; cat ldscript.$M| \
		sed s/" + SIZEOF_HEADERS"// \
		>ldscript.$M.noheader; \
		${SYSTEM_LD_}; \
		${OBJCOPY} -S -O binary ${FULLKERNEL}.noheader \
		${KERNEL_KO}.bin; \
		rm ${FULLKERNEL}.noheader
.if ${DDB_ENABLED} != ""
SYSTEM_LD_TAIL += ;echo "\#define KERNNAME \"${KERNEL_KO}.tmp\"" \
	>opt_kernname.h ;\
	${OBJCOPY} --strip-symbol '$$d' --strip-symbol '$$a' \
	-g --strip-symbol '$$t' ${FULLKERNEL} ${KERNEL_KO}.tmp;\
	${CC} -O -nostdlib -I. -Xlinker -T -Xlinker ldscript.arm \
	$S/$M/$M/elf_trampoline.c $S/$M/$M/inckern.S -o ${KERNEL_KO}.tramp;\
	${CC} -O -nostdlib -I. -Xlinker -T -Xlinker ldscript.arm.noheader \
	$S/$M/$M/elf_trampoline.c $S/$M/$M/inckern.S -o \
	${KERNEL_KO}.tramp.noheader; \
	${OBJCOPY} -S -O binary ${KERNEL_KO}.tramp.noheader \
	${KERNEL_KO}.tramp.bin; \
	rm ${KERNEL_KO}.tmp ${KERNEL_KO}.tramp.noheader; \

.endif

CLEANFILES +=	ldscript.$M ldscript.$M.static ${KERNEL_KO}.bin \
		${KERNEL_KO}.tramp ${KERNEL_KO}.tramp.bin
%BEFORE_DEPEND

%OBJS

%FILES.c

%FILES.s

%FILES.m

%CLEAN

.if ${DDB_ENABLED} != ""
CLEAN+=	kernel.tramp
.endif
ldscript.$M: $S/conf/ldscript.$M
	cat $S/conf/ldscript.$M|sed s/KERNPHYSADDR/${KERNPHYSADDR}/g| \
	  sed s/KERNVIRTADDR/${KERNVIRTADDR}/g > ldscript.$M
%RULES
	
.include "$S/conf/kern.post.mk"
OpenPOWER on IntegriCloud