]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/defs.mk
Document boot1.efi
[FreeBSD/FreeBSD.git] / stand / defs.mk
1 # $FreeBSD$
2
3 .if !defined(__BOOT_DEFS_MK__)
4 __BOOT_DEFS_MK__=${MFILE}
5
6 # We need to define all the MK_ options before including src.opts.mk
7 # because it includes bsd.own.mk which needs the right MK_ values,
8 # espeically MK_CTF.
9
10 MK_CTF=         no
11 MK_SSP=         no
12 MK_PROFILE=     no
13 MAN=
14 .if !defined(PIC)
15 NO_PIC=
16 INTERNALLIB=
17 .endif
18
19 .include <src.opts.mk>
20 .include <bsd.linker.mk>
21
22 WARNS?=         1
23
24 BOOTSRC=        ${SRCTOP}/stand
25 EFISRC=         ${BOOTSRC}/efi
26 EFIINC=         ${EFISRC}/include
27 EFIINCMD=       ${EFIINC}/${MACHINE}
28 FDTSRC=         ${BOOTSRC}/fdt
29 FICLSRC=        ${BOOTSRC}/ficl
30 LDRSRC=         ${BOOTSRC}/common
31 LIBLUASRC=      ${BOOTSRC}/liblua
32 LIBOFWSRC=      ${BOOTSRC}/libofw
33 LUASRC=         ${SRCTOP}/contrib/lua/src
34 SASRC=          ${BOOTSRC}/libsa
35 SYSDIR=         ${SRCTOP}/sys
36 UBOOTSRC=       ${BOOTSRC}/uboot
37 ZFSSRC=         ${SASRC}/zfs
38 LIBCSRC=        ${SRCTOP}/lib/libc
39
40 BOOTOBJ=        ${OBJTOP}/stand
41
42 # BINDIR is where we install
43 BINDIR?=        /boot
44
45 # LUAPATH is where we search for and install lua scripts.
46 LUAPATH?=       /boot/lua
47 FLUASRC?=       ${SRCTOP}/libexec/flua
48
49 LIBSA=          ${BOOTOBJ}/libsa/libsa.a
50 .if ${MACHINE} == "i386"
51 LIBSA32=        ${LIBSA}
52 .else
53 LIBSA32=        ${BOOTOBJ}/libsa32/libsa32.a
54 .endif
55
56 # Standard options:
57 CFLAGS+=        -nostdinc
58 # Allow CFLAGS_EARLY.file/target so that code that needs specific stack
59 # of include paths can set them up before our include paths. Normally
60 # the only thing that should be there are -I directives, and as few of
61 # those as possible.
62 CFLAGS+=        ${CFLAGS_EARLY} ${CFLAGS_EARLY.${.IMPSRC:T}} ${CFLAGS_EARLY.${.TARGET:T}}
63 .if ${MACHINE_ARCH} == "amd64" && ${DO32:U0} == 1
64 CFLAGS+=        -I${BOOTOBJ}/libsa32
65 .else
66 CFLAGS+=        -I${BOOTOBJ}/libsa
67 .endif
68 CFLAGS+=        -I${SASRC} -D_STANDALONE
69 CFLAGS+=        -I${SYSDIR}
70 # Spike the floating point interfaces
71 CFLAGS+=        -Ddouble=jagged-little-pill -Dfloat=floaty-mcfloatface
72 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
73 # Slim down the image. This saves about 15% in size with clang 6 on x86
74 # Our most constrained /boot/loader env is BIOS booting on x86, where
75 # our text + data + BTX have to fit into 640k below the ISA hole.
76 # Experience has shown that problems arise between ~520k to ~530k.
77 CFLAGS.clang+=  -Oz
78 CFLAGS.gcc+=    -Os
79 CFLAGS+=        -ffunction-sections -fdata-sections
80 .endif
81
82 # GELI Support, with backward compat hooks (mostly)
83 .if defined(LOADER_NO_GELI_SUPPORT)
84 MK_LOADER_GELI=no
85 .warning "Please move from LOADER_NO_GELI_SUPPORT to WITHOUT_LOADER_GELI"
86 .endif
87 .if defined(LOADER_GELI_SUPPORT)
88 MK_LOADER_GELI=yes
89 .warning "Please move from LOADER_GELI_SUPPORT to WITH_LOADER_GELI"
90 .endif
91 .if ${MK_LOADER_GELI} == "yes"
92 CFLAGS+=        -DLOADER_GELI_SUPPORT
93 CFLAGS+=        -I${SASRC}/geli
94 .endif # MK_LOADER_GELI
95
96 # These should be confined to loader.mk, but can't because uboot/lib
97 # also uses it. It's part of loader, but isn't a loader so we can't
98 # just include loader.mk
99 .if ${LOADER_DISK_SUPPORT:Uyes} == "yes"
100 CFLAGS+= -DLOADER_DISK_SUPPORT
101 .endif
102
103 # Machine specific flags for all builds here
104
105 # All PowerPC builds are 32 bit. We have no 64-bit loaders on powerpc
106 # or powerpc64.
107 .if ${MACHINE_ARCH} == "powerpc64"
108 CFLAGS+=        -m32 -mcpu=powerpc
109 .endif
110
111 # For amd64, there's a bit of mixed bag. Some of the tree (i386, lib*32) is
112 # build 32-bit and some 64-bit (lib*, efi). Centralize all the 32-bit magic here
113 # and activate it when DO32 is explicitly defined to be 1.
114 .if ${MACHINE_ARCH} == "amd64" && ${DO32:U0} == 1
115 CFLAGS+=        -m32
116 # LD_FLAGS is passed directly to ${LD}, not via ${CC}:
117 LD_FLAGS+=      -m elf_i386_fbsd
118 AFLAGS+=        --32
119 .endif
120
121 SSP_CFLAGS=
122
123 # Add in the no float / no SIMD stuff and announce we're freestanding
124 # aarch64 and riscv don't have -msoft-float, but all others do.
125 CFLAGS+=        -ffreestanding ${CFLAGS_NO_SIMD}
126 .if ${MACHINE_CPUARCH} == "aarch64"
127 CFLAGS+=        -mgeneral-regs-only -ffixed-x18 -fPIC
128 .elif ${MACHINE_CPUARCH} == "riscv"
129 CFLAGS+=        -march=rv64imac -mabi=lp64 -fPIC
130 CFLAGS.clang+=  -mcmodel=medium
131 CFLAGS.gcc+=    -mcmodel=medany
132 .else
133 CFLAGS+=        -msoft-float
134 .endif
135
136 # -msoft-float seems to be insufficient for powerpcspe
137 .if ${MACHINE_ARCH} == "powerpcspe"
138 CFLAGS+=        -mno-spe
139 .endif
140
141 .if ${MACHINE_CPUARCH} == "i386" || (${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 1)
142 CFLAGS+=        -march=i386
143 CFLAGS.gcc+=    -mpreferred-stack-boundary=2
144 .endif
145 .if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 0
146 CFLAGS+=        -fPIC -mno-red-zone
147 .endif
148
149 .if ${MACHINE_CPUARCH} == "arm"
150 # Do not generate movt/movw, because the relocation fixup for them does not
151 # translate to the -Bsymbolic -pie format required by self_reloc() in loader(8).
152 # Also, the fpu is not available in a standalone environment.
153 CFLAGS.clang+=  -mno-movt
154 CFLAGS.clang+=  -mfpu=none
155 CFLAGS+=        -fPIC
156 .endif
157
158 # Some RISC-V linkers have support for relaxations, while some (lld) do not
159 # yet. If this is the case we inhibit the compiler from emitting relaxations.
160 .if ${LINKER_FEATURES:Mriscv-relaxations} == ""
161 CFLAGS+=        -mno-relax
162 .endif
163
164 # The boot loader build uses dd status=none, where possible, for reproducible
165 # build output (since performance varies from run to run). Trouble is that
166 # option was recently (10.3) added to FreeBSD and is non-standard. Only use it
167 # when this test succeeds rather than require dd to be a bootstrap tool.
168 DD_NOSTATUS!=(dd status=none count=0 2> /dev/null && echo status=none) || true
169 DD=dd ${DD_NOSTATUS}
170
171 .if ${MACHINE_CPUARCH} == "mips"
172 CFLAGS+=        -G0 -fno-pic -mno-abicalls
173 .endif
174
175 .if ${MK_LOADER_FORCE_LE} != "no"
176 .if ${MACHINE_ARCH} == "powerpc64"
177 CFLAGS+=        -mlittle-endian
178 .endif
179 .endif
180
181 #
182 # Have a sensible default
183 #
184 .if ${MK_LOADER_LUA} == "yes"
185 LOADER_DEFAULT_INTERP?=lua
186 .elif ${MK_FORTH} == "yes"
187 LOADER_DEFAULT_INTERP?=4th
188 .else
189 LOADER_DEFAULT_INTERP?=simp
190 .endif
191 LOADER_INTERP?=${LOADER_DEFAULT_INTERP}
192
193 # Make sure we use the machine link we're about to create
194 CFLAGS+=-I.
195
196 all: ${PROG}
197
198 CLEANFILES+= teken_state.h
199 teken.c: teken_state.h
200
201 teken_state.h: ${SYSDIR}/teken/sequences
202         awk -f ${SYSDIR}/teken/gensequences \
203                 ${SYSDIR}/teken/sequences > teken_state.h
204
205 .if !defined(NO_OBJ)
206 _ILINKS=include/machine
207 .if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64"
208 _ILINKS+=include/${MACHINE_CPUARCH}
209 .endif
210 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
211 _ILINKS+=include/x86
212 .endif
213 CFLAGS+= -Iinclude
214 CLEANDIRS+= include
215
216 beforedepend: ${_ILINKS}
217 beforebuild: ${_ILINKS}
218
219 # Ensure that the links exist without depending on it when it exists which
220 # causes all the modules to be rebuilt when the directory pointed to changes.
221 .for _link in ${_ILINKS}
222 .if !exists(${.OBJDIR}/${_link})
223 ${OBJS}:       ${_link}
224 .endif # _link exists
225 .endfor
226
227 .NOPATH: ${_ILINKS}
228
229 ${_ILINKS}: .NOMETA
230         @case ${.TARGET:T} in \
231         machine) \
232                 if [ ${DO32:U0} -eq 0 ]; then \
233                         path=${SYSDIR}/${MACHINE}/include ; \
234                 else \
235                         path=${SYSDIR}/${MACHINE:C/amd64/i386/}/include ; \
236                 fi ;; \
237         *) \
238                 path=${SYSDIR}/${.TARGET:T}/include ;; \
239         esac ; \
240         case ${.TARGET} in \
241         */*) mkdir -p ${.TARGET:H};; \
242         esac ; \
243         path=`(cd $$path && /bin/pwd)` ; \
244         ${ECHO} ${.TARGET} "->" $$path ; \
245         ln -fns $$path ${.TARGET}
246 .endif # !NO_OBJ
247 .endif # __BOOT_DEFS_MK__