]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/defs.mk
loader: zfs reader does not need BOOT2 bits
[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 MK_PIE=         no
14 MAN=
15 .if !defined(PIC)
16 NO_PIC=
17 INTERNALLIB=
18 .endif
19 # Should be NO_CPU_FLAGS, but bsd.cpu.mk is included too early in bsd.init.mk
20 # via the early include of bsd.opts.mk. Moving Makefile.inc include earlier in
21 # that file causes weirdness, so this is the next best thing. We need to do this
22 # because the loader needs very specific flags to work right, and things like
23 # CPUTYPE?=native prevent that, and introduce an endless game of whack-a-mole
24 # to disable more and more features. Boot loader performance is never improved
25 # enough to make that hassle worth chasing.
26 _CPUCFLAGS=
27
28 .include <src.opts.mk>
29
30 WARNS?=         1
31
32 BOOTSRC=        ${SRCTOP}/stand
33 EFISRC=         ${BOOTSRC}/efi
34 EFIINC=         ${EFISRC}/include
35 EFIINCMD=       ${EFIINC}/${MACHINE}
36 FDTSRC=         ${BOOTSRC}/fdt
37 FICLSRC=        ${BOOTSRC}/ficl
38 LDRSRC=         ${BOOTSRC}/common
39 LIBLUASRC=      ${BOOTSRC}/liblua
40 LIBOFWSRC=      ${BOOTSRC}/libofw
41 LUASRC=         ${SRCTOP}/contrib/lua/src
42 SASRC=          ${BOOTSRC}/libsa
43 SYSDIR=         ${SRCTOP}/sys
44 UBOOTSRC=       ${BOOTSRC}/uboot
45 ZFSSRC=         ${SASRC}/zfs
46 LIBCSRC=        ${SRCTOP}/lib/libc
47
48 BOOTOBJ=        ${OBJTOP}/stand
49
50 # BINDIR is where we install
51 BINDIR?=        /boot
52
53 # LUAPATH is where we search for and install lua scripts.
54 LUAPATH?=       /boot/lua
55 FLUASRC?=       ${SRCTOP}/libexec/flua
56
57 LIBSA=          ${BOOTOBJ}/libsa/libsa.a
58 .if ${MACHINE} == "i386"
59 LIBSA32=        ${LIBSA}
60 .else
61 LIBSA32=        ${BOOTOBJ}/libsa32/libsa32.a
62 .endif
63
64 # Standard options:
65 CFLAGS+=        -nostdinc
66 .if ${MACHINE_ARCH} == "amd64" && ${DO32:U0} == 1
67 CFLAGS+=        -I${BOOTOBJ}/libsa32
68 .else
69 CFLAGS+=        -I${BOOTOBJ}/libsa
70 .endif
71 CFLAGS+=        -I${SASRC} -D_STANDALONE
72 CFLAGS+=        -I${SYSDIR}
73 # Spike the floating point interfaces
74 CFLAGS+=        -Ddouble=jagged-little-pill -Dfloat=floaty-mcfloatface
75 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
76 # Slim down the image. This saves about 15% in size with clang 6 on x86
77 # Our most constrained /boot/loader env is BIOS booting on x86, where
78 # our text + data + BTX have to fit into 640k below the ISA hole.
79 # Experience has shown that problems arise between ~520k to ~530k.
80 CFLAGS.clang+=  -Oz
81 CFLAGS.gcc+=    -Os
82 CFLAGS+=        -ffunction-sections -fdata-sections
83 .endif
84
85 # GELI Support, with backward compat hooks (mostly)
86 .if defined(LOADER_NO_GELI_SUPPORT)
87 MK_LOADER_GELI=no
88 .warning "Please move from LOADER_NO_GELI_SUPPORT to WITHOUT_LOADER_GELI"
89 .endif
90 .if defined(LOADER_GELI_SUPPORT)
91 MK_LOADER_GELI=yes
92 .warning "Please move from LOADER_GELI_SUPPORT to WITH_LOADER_GELI"
93 .endif
94 .if ${MK_LOADER_GELI} == "yes"
95 CFLAGS+=        -DLOADER_GELI_SUPPORT
96 CFLAGS+=        -I${SASRC}/geli
97 .endif # MK_LOADER_GELI
98
99 # These should be confined to loader.mk, but can't because uboot/lib
100 # also uses it. It's part of loader, but isn't a loader so we can't
101 # just include loader.mk
102 .if ${LOADER_DISK_SUPPORT:Uyes} == "yes"
103 CFLAGS+= -DLOADER_DISK_SUPPORT
104 .endif
105
106 # Machine specific flags for all builds here
107
108 # All PowerPC builds are 32 bit. We have no 64-bit loaders on powerpc
109 # or powerpc64.
110 .if ${MACHINE_ARCH} == "powerpc64"
111 CFLAGS+=        -m32 -mcpu=powerpc
112 .endif
113
114 # For amd64, there's a bit of mixed bag. Some of the tree (i386, lib*32) is
115 # build 32-bit and some 64-bit (lib*, efi). Centralize all the 32-bit magic here
116 # and activate it when DO32 is explicitly defined to be 1.
117 .if ${MACHINE_ARCH} == "amd64" && ${DO32:U0} == 1
118 CFLAGS+=        -m32
119 # LD_FLAGS is passed directly to ${LD}, not via ${CC}:
120 LD_FLAGS+=      -m elf_i386_fbsd
121 AFLAGS+=        --32
122 .endif
123
124 # Add in the no float / no SIMD stuff and announce we're freestanding
125 # aarch64 and riscv don't have -msoft-float, but all others do. riscv
126 # currently has no /boot/loader, but may soon.
127 CFLAGS+=        -ffreestanding ${CFLAGS_NO_SIMD}
128 .if ${MACHINE_CPUARCH} == "aarch64"
129 CFLAGS+=        -mgeneral-regs-only -ffixed-x18 -fPIC
130 .elif ${MACHINE_CPUARCH} == "riscv"
131 CFLAGS+=        -march=rv64imac -mabi=lp64
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 .if ${COMPILER_VERSION} < 30800
154 CFLAGS.clang+=  -mllvm -arm-use-movt=0
155 .else
156 CFLAGS.clang+=  -mno-movt
157 .endif
158 CFLAGS.clang+=  -mfpu=none
159 CFLAGS+=        -fPIC
160 .endif
161
162 # The boot loader build uses dd status=none, where possible, for reproducible
163 # build output (since performance varies from run to run). Trouble is that
164 # option was recently (10.3) added to FreeBSD and is non-standard. Only use it
165 # when this test succeeds rather than require dd to be a bootstrap tool.
166 DD_NOSTATUS!=(dd status=none count=0 2> /dev/null && echo status=none) || true
167 DD=dd ${DD_NOSTATUS}
168
169 .if ${MACHINE_CPUARCH} == "mips"
170 CFLAGS+=        -G0 -fno-pic -mno-abicalls
171 .endif
172
173 .if ${MK_LOADER_FORCE_LE} != "no"
174 .if ${MACHINE_ARCH} == "powerpc64"
175 CFLAGS+=        -mlittle-endian
176 .endif
177 .endif
178
179 #
180 # Have a sensible default
181 #
182 .if ${MK_LOADER_LUA} == "yes"
183 LOADER_DEFAULT_INTERP?=lua
184 .elif ${MK_FORTH} == "yes"
185 LOADER_DEFAULT_INTERP?=4th
186 .else
187 LOADER_DEFAULT_INTERP?=simp
188 .endif
189 LOADER_INTERP?=${LOADER_DEFAULT_INTERP}
190
191 # Make sure we use the machine link we're about to create
192 CFLAGS+=-I.
193
194 all: ${PROG}
195
196 .if !defined(NO_OBJ)
197 _ILINKS=include/machine
198 .if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64"
199 _ILINKS+=include/${MACHINE_CPUARCH}
200 .endif
201 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
202 _ILINKS+=include/x86
203 .endif
204 CFLAGS+= -Iinclude
205 CLEANDIRS+= include
206
207 beforedepend: ${_ILINKS}
208 beforebuild: ${_ILINKS}
209
210 # Ensure that the links exist without depending on it when it exists which
211 # causes all the modules to be rebuilt when the directory pointed to changes.
212 .for _link in ${_ILINKS}
213 .if !exists(${.OBJDIR}/${_link})
214 ${OBJS}:       ${_link}
215 .endif # _link exists
216 .endfor
217
218 .NOPATH: ${_ILINKS}
219
220 ${_ILINKS}: .NOMETA
221         @case ${.TARGET:T} in \
222         machine) \
223                 if [ ${DO32:U0} -eq 0 ]; then \
224                         path=${SYSDIR}/${MACHINE}/include ; \
225                 else \
226                         path=${SYSDIR}/${MACHINE:C/amd64/i386/}/include ; \
227                 fi ;; \
228         *) \
229                 path=${SYSDIR}/${.TARGET:T}/include ;; \
230         esac ; \
231         case ${.TARGET} in \
232         */*) mkdir -p ${.TARGET:H};; \
233         esac ; \
234         path=`(cd $$path && /bin/pwd)` ; \
235         ${ECHO} ${.TARGET} "->" $$path ; \
236         ln -fhs $$path ${.TARGET}
237 .endif # !NO_OBJ
238 .endif # __BOOT_DEFS_MK__