Print this page
3806 illumos build execs echo unnecessarily
Reviewed by: Garrett D'Amore <garrett.damore@gmail.com>
Reviewed by: Gary Mills <gary_mills@fastmail.fm>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/Makefile.uts
+++ new/usr/src/uts/Makefile.uts
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21
22 22 #
23 23 # Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
24 24 # Copyright (c) 2011 Bayard G. Bell. All rights reserved.
25 25 # Copyright (c) 2011 by Delphix. All rights reserved.
26 +# Copyright (c) 2013 Andrew Stormont. All rights reserved.
26 27 #
27 28
28 29 #
29 30 # This Makefile contains the common targets and definitions for
30 31 # all kernels. It is to be included in the Makefiles for specific
31 32 # implementation architectures and processor architecture dependent
32 33 # modules: i.e.: all driving kernel Makefiles.
33 34 #
34 35 # Include global definitions:
35 36 #
36 37 include $(SRC)/Makefile.master
37 38
38 39 #
39 40 # No text domain in the kernel.
40 41 #
41 42 DTEXTDOM =
42 43
43 44 #
44 45 # Keep references to $(SRC)/common relative.
45 46 COMMONBASE= $(UTSBASE)/../common
46 47
47 48 #
48 49 # Setup build-specific vars
49 50 # To add a build type:
50 51 # add name to ALL_BUILDS32 & ALL_BUILDS64
51 52 # set CLASS_name and OBJ_DIR_name
52 53 # add targets to Makefile.targ
53 54 #
54 55
55 56 #
56 57 # DEF_BUILDS is for def, lint, sischeck, and install
57 58 # ALL_BUILDS is for everything else (all, clean, ...)
58 59 #
59 60 # The NOT_RELEASE_BUILD noise is to maintain compatibility with the
60 61 # gatekeeper's nightly build script.
61 62 #
62 63 DEF_BUILDS32 = obj32
63 64 DEF_BUILDS64 = obj64
64 65 DEF_BUILDSONLY64 = obj64
65 66 $(NOT_RELEASE_BUILD)DEF_BUILDS32 = debug32
66 67 $(NOT_RELEASE_BUILD)DEF_BUILDS64 = debug64
67 68 $(NOT_RELEASE_BUILD)DEF_BUILDSONLY64 = debug64
68 69 ALL_BUILDS32 = obj32 debug32
69 70 ALL_BUILDS64 = obj64 debug64
70 71 ALL_BUILDSONLY64 = obj64 debug64
71 72
72 73 #
73 74 # For modules in 64b dirs that aren't built 64b
74 75 # or modules in 64b dirs that aren't built 32b we
75 76 # need to create empty modlintlib files so global lint works
76 77 #
77 78 LINT32_BUILDS = debug32
78 79 LINT64_BUILDS = debug64
79 80
80 81 #
81 82 # Build class (32b or 64b)
82 83 #
83 84 CLASS_OBJ32 = 32
84 85 CLASS_DBG32 = 32
85 86 CLASS_OBJ64 = 64
86 87 CLASS_DBG64 = 64
87 88 CLASS = $(CLASS_$(BUILD_TYPE))
88 89
89 90 #
90 91 # Build subdirectory
91 92 #
92 93 OBJS_DIR_OBJ32 = obj32
93 94 OBJS_DIR_DBG32 = debug32
94 95 OBJS_DIR_OBJ64 = obj64
95 96 OBJS_DIR_DBG64 = debug64
96 97 OBJS_DIR = $(OBJS_DIR_$(BUILD_TYPE))
97 98
98 99 #
99 100 # Create defaults so empty rules don't
100 101 # confuse make
101 102 #
102 103 CLASS_ = 32
103 104 OBJS_DIR_ = debug32
104 105
105 106 #
106 107 # Build tools
107 108 #
108 109 CC_sparc_32 = $(sparc_CC)
109 110 CC_sparc_64 = $(sparcv9_CC)
110 111
111 112 CC_i386_32 = $(i386_CC)
112 113 CC_i386_64 = $(amd64_CC)
113 114 CC_amd64_64 = $(amd64_CC)
114 115
115 116 CC = $(CC_$(MACH)_$(CLASS))
116 117
117 118 AS_sparc_32 = $(sparc_AS)
118 119 AS_sparc_64 = $(sparcv9_AS)
119 120
120 121 AS_i386_32 = $(i386_AS)
121 122 AS_i386_64 = $(amd64_AS)
122 123 AS_amd64_64 = $(amd64_AS)
123 124
124 125 AS = $(AS_$(MACH)_$(CLASS))
125 126
126 127 LD_sparc_32 = $(sparc_LD)
127 128 LD_sparc_64 = $(sparcv9_LD)
128 129
129 130 LD_i386_32 = $(i386_LD)
130 131 LD_i386_64 = $(amd64_LD)
131 132 LD_amd64_64 = $(amd64_LD)
132 133
133 134 LD = $(LD_$(MACH)_$(CLASS))
134 135
135 136 LINT_sparc_32 = $(sparc_LINT)
136 137 LINT_sparc_64 = $(sparcv9_LINT)
137 138
138 139 LINT_i386_32 = $(i386_LINT)
139 140 LINT_i386_64 = $(amd64_LINT)
140 141 LINT_amd64_64 = $(amd64_LINT)
141 142
142 143 LINT = $(LINT_$(MACH)_$(CLASS))
143 144
144 145 MODEL_32 = ilp32
145 146 MODEL_64 = lp64
146 147 MODEL = $(MODEL_$(CLASS))
147 148
148 149 #
149 150 # Build rules for linting the kernel.
150 151 #
151 152 LHEAD = $(ECHO) "\n$@";
152 153
153 154 # Note: egrep returns "failure" if there are no matches, which is
154 155 # exactly the opposite of what we need.
155 156 LGREP.2 = if egrep -v ' (_init|_fini|_info) '; then false; else true; fi
156 157
157 158 LTAIL =
158 159
159 160 LINT.c = $(LINT) -c -dirout=$(LINTS_DIR) $(LINTFLAGS) $(LINT_DEFS) $(CPPFLAGS)
160 161
161 162 # Please do not add new erroff directives here. If you need to disable
162 163 # lint warnings in your module for things that cannot be fixed in any
163 164 # reasonable manner, please augment LINTTAGS in your module Makefile
164 165 # instead.
165 166 LINTTAGS = -erroff=E_INCONS_ARG_DECL2
166 167 LINTTAGS += -erroff=E_INCONS_VAL_TYPE_DECL2
167 168
168 169 LINTFLAGS_sparc_32 = $(LINTCCMODE) -nsxmuF -errtags=yes
169 170 LINTFLAGS_sparc_64 = $(LINTFLAGS_sparc_32) -m64
170 171 LINTFLAGS_i386_32 = $(LINTCCMODE) -nsxmuF -errtags=yes
171 172 LINTFLAGS_i386_64 = $(LINTFLAGS_i386_32) -m64
172 173
173 174 LINTFLAGS = $(LINTFLAGS_$(MACH)_$(CLASS)) $(LINTTAGS)
174 175 LINTFLAGS += $(C99LMODE)
175 176
176 177 #
177 178 # Override this variable to modify the name of the lint target.
178 179 #
179 180 LINT_MODULE= $(MODULE)
180 181
181 182 #
182 183 # Build the compile/assemble lines:
183 184 #
184 185 EXTRA_OPTIONS =
185 186 AS_DEFS = -D_ASM -D__STDC__=0
186 187
187 188 ALWAYS_DEFS_32 = -D_KERNEL -D_SYSCALL32 -D_DDI_STRICT
188 189 ALWAYS_DEFS_64 = -D_KERNEL -D_SYSCALL32 -D_SYSCALL32_IMPL -D_ELF64 \
189 190 -D_DDI_STRICT
190 191 #
191 192 # XX64 This should be defined by the compiler!
192 193 #
193 194 ALWAYS_DEFS_64 += -Dsun -D__sun -D__SVR4
194 195 ALWAYS_DEFS = $(ALWAYS_DEFS_$(CLASS))
195 196
196 197 #
197 198 # CPPFLAGS is deliberatly set with a "=" and not a "+=". For the kernel
198 199 # the header include path should not look for header files outside of
199 200 # the kernel code. This "=" removes the search path built in
200 201 # Makefile.master inside CPPFLAGS. Ditto for AS_CPPFLAGS.
201 202 #
202 203 CPPFLAGS = $(ALWAYS_DEFS) $(ALL_DEFS) $(CONFIG_DEFS) \
203 204 $(INCLUDE_PATH) $(EXTRA_OPTIONS)
204 205 ASFLAGS += -P
205 206 AS_CPPFLAGS = $(ALWAYS_DEFS) $(ALL_DEFS) $(CONFIG_DEFS) $(AS_DEFS) \
206 207 $(AS_INC_PATH) $(EXTRA_OPTIONS)
207 208
208 209 #
209 210 # Make it (relatively) easy to share compilation options between
210 211 # all kernel implementations.
211 212 #
212 213
213 214 # Override the default, the kernel is squeaky clean
214 215 CERRWARN = -errtags=yes -errwarn=%all
215 216
216 217 CERRWARN += -_gcc=-Wno-missing-braces
217 218 CERRWARN += -_gcc=-Wno-sign-compare
218 219 CERRWARN += -_gcc=-Wno-unknown-pragmas
219 220 CERRWARN += -_gcc=-Wno-unused-parameter
220 221 CERRWARN += -_gcc=-Wno-missing-field-initializers
221 222
222 223 # DEBUG v. -nd make for frequent unused variables, empty conditions, etc. in
223 224 # -nd builds
224 225 $(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-unused
225 226 $(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-empty-body
226 227
227 228 C99MODE = $(C99_ENABLE)
228 229
229 230 CFLAGS_uts =
230 231 CFLAGS_uts += $(STAND_FLAGS_$(CLASS))
231 232 CFLAGS_uts += $(CCVERBOSE)
232 233 CFLAGS_uts += $(ILDOFF)
233 234 CFLAGS_uts += $(XAOPT)
234 235 CFLAGS_uts += $(CTF_FLAGS_$(CLASS))
235 236 CFLAGS_uts += $(CERRWARN)
236 237 CFLAGS_uts += $(CCNOAUTOINLINE)
237 238 CFLAGS_uts += $(CGLOBALSTATIC)
238 239 CFLAGS_uts += $(EXTRA_CFLAGS)
239 240 CFLAGS_uts += $(CSOURCEDEBUGFLAGS)
240 241 CFLAGS_uts += $(CUSERFLAGS)
241 242
242 243 #
243 244 # Declare that $(OBJECTS) and $(LINTS) can be compiled in parallel.
244 245 # The DUMMY target is for those instances where OBJECTS and LINTS
245 246 # are empty (to avoid an unconditional .PARALLEL).
246 247 .PARALLEL: $(OBJECTS) $(LINTS) DUMMY
247 248
248 249 #
249 250 # Expanded dependencies
250 251 #
251 252 DEF_DEPS = $(DEF_BUILDS:%=def.%)
252 253 ALL_DEPS = $(ALL_BUILDS:%=all.%)
253 254 CLEAN_DEPS = $(ALL_BUILDS:%=clean.%)
254 255 CLOBBER_DEPS = $(ALL_BUILDS:%=clobber.%)
255 256 LINT_DEPS = $(DEF_BUILDS:%=lint.%)
256 257 MODLINTLIB_DEPS = $(DEF_BUILDS:%=modlintlib.%)
257 258 MODLIST_DEPS = $(DEF_BUILDS:%=modlist.%)
258 259 CLEAN_LINT_DEPS = $(ALL_BUILDS:%=clean.lint.%)
259 260 INSTALL_DEPS = $(DEF_BUILDS:%=install.%)
260 261 SYM_DEPS = $(SYM_BUILDS:%=symcheck.%)
261 262 SISCHECK_DEPS = $(DEF_BUILDS:%=sischeck.%)
262 263 SISCLEAN_DEPS = $(ALL_BUILDS:%=sisclean.%)
263 264
264 265 #
265 266 # Default module name
266 267 #
267 268 BINARY = $(OBJS_DIR)/$(MODULE)
268 269
269 270 #
270 271 # Default cleanup definitions
271 272 #
272 273 CLEANLINTFILES = $(LINTS) $(MOD_LINT_LIB)
273 274 CLEANFILES = $(OBJECTS) $(CLEANLINTFILES)
274 275 CLOBBERFILES = $(BINARY) $(CLEANFILES)
275 276
276 277 #
277 278 # Installation constants:
278 279 #
279 280 # FILEMODE is the mode given to the kernel modules
280 281 # CFILEMODE is the mode given to the '.conf' files
281 282 #
282 283 FILEMODE = 755
283 284 DIRMODE = 755
284 285 CFILEMODE = 644
285 286
286 287 #
287 288 # Special Installation Macros for the installation of '.conf' files.
288 289 #
289 290 # These are unique because they are not installed from the current
290 291 # working directory.
291 292 #
292 293 # Sigh. Apparently at some time in the past there was a confusion on
293 294 # whether the name is SRC_CONFFILE or SRC_CONFILE. Consistency with the
294 295 # other names would indicate SRC_CONFFILE, but the voting is >180 Makefiles
295 296 # with SRC_CONFILE and about 11 with SRC_CONFFILE. Software development
296 297 # isn't a popularity contest, though, and so my inclination is to define
297 298 # both names for now and incrementally convert to SRC_CONFFILE to be consistent
298 299 # with the other names.
299 300 #
300 301 CONFFILE = $(MODULE).conf
301 302 SRC_CONFFILE = $(CONF_SRCDIR)/$(CONFFILE)
302 303 SRC_CONFILE = $(SRC_CONFFILE)
303 304 ROOT_CONFFILE_32 = $(ROOTMODULE).conf
304 305 ROOT_CONFFILE_64 = $(ROOTMODULE:%/$(SUBDIR64)/$(MODULE)=%/$(MODULE)).conf
305 306 ROOT_CONFFILE = $(ROOT_CONFFILE_$(CLASS))
306 307
307 308
308 309 INS.conffile= \
309 310 $(RM) $@; $(INS) -s -m $(CFILEMODE) -f $(@D) $(SRC_CONFFILE)
310 311
311 312 #
312 313 # The CTF merge of child kernel modules is performed against one of the genunix
313 314 # modules. For Intel builds, all modules will be used with a single genunix:
314 315 # the one built in intel/genunix. For SPARC builds, a given
315 316 # module may be
316 317 # used with one of a number of genunix files, depending on what platform the
317 318 # module is deployed on. We merge against the sun4u genunix to optimize for
318 319 # the common case. We also merge against the ip driver since networking is
319 320 # typically loaded and types defined therein are shared between many modules.
320 321 #
321 322 CTFMERGE_GUDIR_sparc = sun4u
322 323 CTFMERGE_GUDIR_i386 = intel
323 324 CTFMERGE_GUDIR = $(CTFMERGE_GUDIR_$(MACH))
324 325
325 326 CTFMERGE_GENUNIX = \
326 327 $(UTSBASE)/$(CTFMERGE_GUDIR)/genunix/$(OBJS_DIR)/genunix
327 328
328 329 #
329 330 # Used to uniquify a non-genunix module against genunix. If used in patch
330 331 # mode (PATCH_BUILD != "#"), the patch ID corresponding to the module being
331 332 # built will be used as the label. If no ID is available, or if patch mode
332 333 # is not being used, the value of $VERSION will be used.
333 334 #
334 335 # For the ease of developers dropping modules onto possibly unrelated systems,
335 336 # you can set NO_GENUNIX_UNIQUIFY= in the environment to skip uniquifying
336 337 # against genunix.
337 338 #
338 339 NO_GENUNIX_UNIQUIFY=$(POUND_SIGN)
339 340 SKIP_GENUNIX_UNIQUIFY=no
340 341 $(NO_GENUNIX_UNIQUIFY)SKIP_GENUNIX_UNIQUIFY=yes
341 342
342 343 CTFMERGE_UNIQUIFY_AGAINST_GENUNIX = \
343 344 @label="-L VERSION" ; \
344 345 uniq= ; \
345 346 if [ -z "$(PATCH_BUILD)" ] ; then \
346 347 uniq="-D BASE" ; \
347 348 set -- `$(CTFFINDMOD) -n -r -t $(PMTMO_FILE) $@` ; \
348 349 if [ "X$$1" != "X-" ] ; then \
349 350 label="-l $$1" ; \
350 351 if [ "$$2" != "fcs" ] ; then \
351 352 uniq="-D $$2" ; \
352 353 fi ; \
353 354 fi ; \
354 355 fi ; \
355 356 if [ "$(SKIP_GENUNIX_UNIQUIFY)" = "yes" ]; then \
356 357 uniq= ; \
357 358 else \
358 359 uniq="-d $(CTFMERGE_GENUNIX) $$uniq" ; \
359 360 fi ; \
360 361 cmd="$(CTFMERGE) $(CTFMRGFLAGS) $$label $$uniq" ; \
361 362 cmd="$$cmd -o $@ $(OBJECTS) $(CTFEXTRAOBJS)" ; \
362 363 echo $$cmd ; \
363 364 $$cmd
364 365
365 366 #
366 367 # Used to merge the genunix module. genunix has special requirements in
367 368 # patch mode. In particular, it needs to be able to find the genunix used
368 369 # in the previous version of the KU patch (or the FCS version of genunix in
369 370 # the case of KU 1).
370 371 #
371 372 CTFMERGE_GENUNIX_MERGE = \
372 373 @if [ -z "$(PATCH_BUILD)" ] ; then \
373 374 set -- `$(CTFFINDMOD) -b $(OBJS_DIR) -o patch,lastgu -n -r \
374 375 -t $(PMTMO_FILE) $(GENUNIX) || true` '' ; \
375 376 msg= ; \
376 377 if [ $$$(POUND_SIGN) -eq 1 ] ; \
377 378 then msg="Error in $(CTFFINDMOD)" ; \
378 379 elif [ "X$$1" = "X-" ] ; then msg="Did not get label" ; \
379 380 elif [ "X$$2" = "X-" ] ; then msg="Did not get withfile" ; \
380 381 fi ; \
381 382 if [ -n "$$msg" ] ; then \
382 383 echo "make ctf: $$msg - removing $(GENUNIX)" ; \
383 384 $(RM) $(GENUNIX) ; \
384 385 exit 1 ; \
385 386 fi ; \
386 387 label="-l $$1" ; \
387 388 with="-w $$2" ; \
388 389 else \
389 390 label="-L VERSION" ; \
390 391 fi ; \
391 392 cmd="$(CTFMERGE) $(CTFMRGFLAGS) $$label $$with -o $@" ; \
392 393 echo $$cmd "$(OBJECTS) $(CTFEXTRAOBJS) $(IPCTF_TARGET)"; \
393 394 $$cmd $(OBJECTS) $(CTFEXTRAOBJS) $(IPCTF_TARGET)
394 395
395 396 #
396 397 # We ctfmerge the ip objects into genunix to maximize the number of common types
397 398 # found there, thus maximizing the effectiveness of uniquification. We don't
398 399 # want the genunix build to have to know about the individual ip objects, so we
399 400 # put them in an archive. The genunix ctfmerge then includes this archive.
400 401 #
401 402 IPCTF = $(IPDRV_DIR)/$(OBJS_DIR)/ipctf.a
402 403
403 404 #
404 405 # Rule for building fake shared libraries used for symbol resolution
405 406 # when building other modules. -znoreloc is needed here to avoid
406 407 # tripping over code that isn't really suitable for shared libraries.
407 408 #
408 409 BUILD.SO = \
409 410 $(LD) -o $@ $(GSHARED) $(ZNORELOC) -h $(SONAME)
410 411
411 412 #
412 413 # SONAME defaults for common fake shared libraries.
413 414 #
414 415 $(LIBGEN) := SONAME = $(MODULE)
415 416 $(PLATLIB) := SONAME = misc/platmod
416 417 $(CPULIB) := SONAME = 'cpu/$$CPU'
417 418 $(DTRACESTUBS) := SONAME = dtracestubs
418 419
419 420 #
420 421 # Installation directories
421 422 #
422 423
423 424 #
424 425 # For now, 64b modules install into a subdirectory
425 426 # of their 32b brethren.
426 427 #
427 428 SUBDIR64_sparc = sparcv9
428 429 SUBDIR64_i386 = amd64
429 430 SUBDIR64 = $(SUBDIR64_$(MACH))
430 431
431 432 ROOT_MOD_DIR = $(ROOT)/kernel
432 433
433 434 ROOT_KERN_DIR_32 = $(ROOT_MOD_DIR)
434 435 ROOT_BRAND_DIR_32 = $(ROOT_MOD_DIR)/brand
435 436 ROOT_DRV_DIR_32 = $(ROOT_MOD_DIR)/drv
436 437 ROOT_DTRACE_DIR_32 = $(ROOT_MOD_DIR)/dtrace
437 438 ROOT_EXEC_DIR_32 = $(ROOT_MOD_DIR)/exec
438 439 ROOT_FS_DIR_32 = $(ROOT_MOD_DIR)/fs
439 440 ROOT_SCHED_DIR_32 = $(ROOT_MOD_DIR)/sched
440 441 ROOT_SOCK_DIR_32 = $(ROOT_MOD_DIR)/socketmod
441 442 ROOT_STRMOD_DIR_32 = $(ROOT_MOD_DIR)/strmod
442 443 ROOT_IPP_DIR_32 = $(ROOT_MOD_DIR)/ipp
443 444 ROOT_SYS_DIR_32 = $(ROOT_MOD_DIR)/sys
444 445 ROOT_MISC_DIR_32 = $(ROOT_MOD_DIR)/misc
445 446 ROOT_KGSS_DIR_32 = $(ROOT_MOD_DIR)/misc/kgss
446 447 ROOT_SCSI_VHCI_DIR_32 = $(ROOT_MOD_DIR)/misc/scsi_vhci
447 448 ROOT_PMCS_FW_DIR_32 = $(ROOT_MOD_DIR)/misc/pmcs
448 449 ROOT_QLC_FW_DIR_32 = $(ROOT_MOD_DIR)/misc/qlc
449 450 ROOT_EMLXS_FW_DIR_32 = $(ROOT_MOD_DIR)/misc/emlxs
450 451 ROOT_NLMISC_DIR_32 = $(ROOT_MOD_DIR)/misc
451 452 ROOT_MACH_DIR_32 = $(ROOT_MOD_DIR)/mach
452 453 ROOT_CPU_DIR_32 = $(ROOT_MOD_DIR)/cpu
453 454 ROOT_TOD_DIR_32 = $(ROOT_MOD_DIR)/tod
454 455 ROOT_FONT_DIR_32 = $(ROOT_MOD_DIR)/fonts
455 456 ROOT_DACF_DIR_32 = $(ROOT_MOD_DIR)/dacf
456 457 ROOT_CRYPTO_DIR_32 = $(ROOT_MOD_DIR)/crypto
457 458 ROOT_MAC_DIR_32 = $(ROOT_MOD_DIR)/mac
458 459 ROOT_KICONV_DIR_32 = $(ROOT_MOD_DIR)/kiconv
459 460
460 461 ROOT_KERN_DIR_64 = $(ROOT_MOD_DIR)/$(SUBDIR64)
461 462 ROOT_BRAND_DIR_64 = $(ROOT_MOD_DIR)/brand/$(SUBDIR64)
462 463 ROOT_DRV_DIR_64 = $(ROOT_MOD_DIR)/drv/$(SUBDIR64)
463 464 ROOT_DTRACE_DIR_64 = $(ROOT_MOD_DIR)/dtrace/$(SUBDIR64)
464 465 ROOT_EXEC_DIR_64 = $(ROOT_MOD_DIR)/exec/$(SUBDIR64)
465 466 ROOT_FS_DIR_64 = $(ROOT_MOD_DIR)/fs/$(SUBDIR64)
466 467 ROOT_SCHED_DIR_64 = $(ROOT_MOD_DIR)/sched/$(SUBDIR64)
467 468 ROOT_SOCK_DIR_64 = $(ROOT_MOD_DIR)/socketmod/$(SUBDIR64)
468 469 ROOT_STRMOD_DIR_64 = $(ROOT_MOD_DIR)/strmod/$(SUBDIR64)
469 470 ROOT_IPP_DIR_64 = $(ROOT_MOD_DIR)/ipp/$(SUBDIR64)
470 471 ROOT_SYS_DIR_64 = $(ROOT_MOD_DIR)/sys/$(SUBDIR64)
471 472 ROOT_MISC_DIR_64 = $(ROOT_MOD_DIR)/misc/$(SUBDIR64)
472 473 ROOT_KGSS_DIR_64 = $(ROOT_MOD_DIR)/misc/kgss/$(SUBDIR64)
473 474 ROOT_SCSI_VHCI_DIR_64 = $(ROOT_MOD_DIR)/misc/scsi_vhci/$(SUBDIR64)
474 475 ROOT_PMCS_FW_DIR_64 = $(ROOT_MOD_DIR)/misc/pmcs/$(SUBDIR64)
475 476 ROOT_QLC_FW_DIR_64 = $(ROOT_MOD_DIR)/misc/qlc/$(SUBDIR64)
476 477 ROOT_EMLXS_FW_DIR_64 = $(ROOT_MOD_DIR)/misc/emlxs/$(SUBDIR64)
477 478 ROOT_NLMISC_DIR_64 = $(ROOT_MOD_DIR)/misc/$(SUBDIR64)
478 479 ROOT_MACH_DIR_64 = $(ROOT_MOD_DIR)/mach/$(SUBDIR64)
479 480 ROOT_CPU_DIR_64 = $(ROOT_MOD_DIR)/cpu/$(SUBDIR64)
480 481 ROOT_TOD_DIR_64 = $(ROOT_MOD_DIR)/tod/$(SUBDIR64)
481 482 ROOT_FONT_DIR_64 = $(ROOT_MOD_DIR)/fonts/$(SUBDIR64)
482 483 ROOT_DACF_DIR_64 = $(ROOT_MOD_DIR)/dacf/$(SUBDIR64)
483 484 ROOT_CRYPTO_DIR_64 = $(ROOT_MOD_DIR)/crypto/$(SUBDIR64)
484 485 ROOT_MAC_DIR_64 = $(ROOT_MOD_DIR)/mac/$(SUBDIR64)
485 486 ROOT_KICONV_DIR_64 = $(ROOT_MOD_DIR)/kiconv/$(SUBDIR64)
486 487
487 488 ROOT_KERN_DIR = $(ROOT_KERN_DIR_$(CLASS))
488 489 ROOT_BRAND_DIR = $(ROOT_BRAND_DIR_$(CLASS))
489 490 ROOT_DRV_DIR = $(ROOT_DRV_DIR_$(CLASS))
490 491 ROOT_DTRACE_DIR = $(ROOT_DTRACE_DIR_$(CLASS))
491 492 ROOT_EXEC_DIR = $(ROOT_EXEC_DIR_$(CLASS))
492 493 ROOT_FS_DIR = $(ROOT_FS_DIR_$(CLASS))
493 494 ROOT_SCHED_DIR = $(ROOT_SCHED_DIR_$(CLASS))
494 495 ROOT_SOCK_DIR = $(ROOT_SOCK_DIR_$(CLASS))
495 496 ROOT_STRMOD_DIR = $(ROOT_STRMOD_DIR_$(CLASS))
496 497 ROOT_IPP_DIR = $(ROOT_IPP_DIR_$(CLASS))
497 498 ROOT_SYS_DIR = $(ROOT_SYS_DIR_$(CLASS))
498 499 ROOT_MISC_DIR = $(ROOT_MISC_DIR_$(CLASS))
499 500 ROOT_KGSS_DIR = $(ROOT_KGSS_DIR_$(CLASS))
500 501 ROOT_SCSI_VHCI_DIR = $(ROOT_SCSI_VHCI_DIR_$(CLASS))
501 502 ROOT_PMCS_FW_DIR = $(ROOT_PMCS_FW_DIR_$(CLASS))
502 503 ROOT_QLC_FW_DIR = $(ROOT_QLC_FW_DIR_$(CLASS))
503 504 ROOT_EMLXS_FW_DIR = $(ROOT_EMLXS_FW_DIR_$(CLASS))
504 505 ROOT_NLMISC_DIR = $(ROOT_NLMISC_DIR_$(CLASS))
505 506 ROOT_MACH_DIR = $(ROOT_MACH_DIR_$(CLASS))
506 507 ROOT_CPU_DIR = $(ROOT_CPU_DIR_$(CLASS))
507 508 ROOT_TOD_DIR = $(ROOT_TOD_DIR_$(CLASS))
508 509 ROOT_FONT_DIR = $(ROOT_FONT_DIR_$(CLASS))
509 510 ROOT_DACF_DIR = $(ROOT_DACF_DIR_$(CLASS))
510 511 ROOT_CRYPTO_DIR = $(ROOT_CRYPTO_DIR_$(CLASS))
511 512 ROOT_MAC_DIR = $(ROOT_MAC_DIR_$(CLASS))
512 513 ROOT_KICONV_DIR = $(ROOT_KICONV_DIR_$(CLASS))
513 514
514 515 ROOT_MOD_DIRS_32 = $(ROOT_BRAND_DIR_32) $(ROOT_DRV_DIR_32)
515 516 ROOT_MOD_DIRS_32 = $(ROOT_BRAND_DIR_32) $(ROOT_DRV_DIR_32)
516 517 ROOT_MOD_DIRS_32 += $(ROOT_EXEC_DIR_32) $(ROOT_DTRACE_DIR_32)
517 518 ROOT_MOD_DIRS_32 += $(ROOT_FS_DIR_32) $(ROOT_SCHED_DIR_32)
518 519 ROOT_MOD_DIRS_32 += $(ROOT_STRMOD_DIR_32) $(ROOT_SYS_DIR_32)
519 520 ROOT_MOD_DIRS_32 += $(ROOT_IPP_DIR_32) $(ROOT_SOCK_DIR_32)
520 521 ROOT_MOD_DIRS_32 += $(ROOT_MISC_DIR_32) $(ROOT_MACH_DIR_32)
521 522 ROOT_MOD_DIRS_32 += $(ROOT_KGSS_DIR_32)
522 523 ROOT_MOD_DIRS_32 += $(ROOT_SCSI_VHCI_DIR_32)
523 524 ROOT_MOD_DIRS_32 += $(ROOT_PMCS_FW_DIR_32)
524 525 ROOT_MOD_DIRS_32 += $(ROOT_QLC_FW_DIR_32)
525 526 ROOT_MOD_DIRS_32 += $(ROOT_EMLXS_FW_DIR_32)
526 527 ROOT_MOD_DIRS_32 += $(ROOT_CPU_DIR_32) $(ROOT_FONT_DIR_32)
527 528 ROOT_MOD_DIRS_32 += $(ROOT_TOD_DIR_32) $(ROOT_DACF_DIR_32)
528 529 ROOT_MOD_DIRS_32 += $(ROOT_CRYPTO_DIR_32) $(ROOT_MAC_DIR_32)
529 530 ROOT_MOD_DIRS_32 += $(ROOT_KICONV_DIR_32)
530 531
531 532 USR_MOD_DIR = $(ROOT)/usr/kernel
532 533
533 534 USR_DRV_DIR_32 = $(USR_MOD_DIR)/drv
534 535 USR_EXEC_DIR_32 = $(USR_MOD_DIR)/exec
535 536 USR_FS_DIR_32 = $(USR_MOD_DIR)/fs
536 537 USR_SCHED_DIR_32 = $(USR_MOD_DIR)/sched
537 538 USR_SOCK_DIR_32 = $(USR_MOD_DIR)/socketmod
538 539 USR_STRMOD_DIR_32 = $(USR_MOD_DIR)/strmod
539 540 USR_SYS_DIR_32 = $(USR_MOD_DIR)/sys
540 541 USR_MISC_DIR_32 = $(USR_MOD_DIR)/misc
541 542 USR_DACF_DIR_32 = $(USR_MOD_DIR)/dacf
542 543 USR_PCBE_DIR_32 = $(USR_MOD_DIR)/pcbe
543 544 USR_DTRACE_DIR_32 = $(USR_MOD_DIR)/dtrace
544 545 USR_BRAND_DIR_32 = $(USR_MOD_DIR)/brand
545 546
546 547 USR_DRV_DIR_64 = $(USR_MOD_DIR)/drv/$(SUBDIR64)
547 548 USR_EXEC_DIR_64 = $(USR_MOD_DIR)/exec/$(SUBDIR64)
548 549 USR_FS_DIR_64 = $(USR_MOD_DIR)/fs/$(SUBDIR64)
549 550 USR_SCHED_DIR_64 = $(USR_MOD_DIR)/sched/$(SUBDIR64)
550 551 USR_SOCK_DIR_64 = $(USR_MOD_DIR)/socketmod/$(SUBDIR64)
551 552 USR_STRMOD_DIR_64 = $(USR_MOD_DIR)/strmod/$(SUBDIR64)
552 553 USR_SYS_DIR_64 = $(USR_MOD_DIR)/sys/$(SUBDIR64)
553 554 USR_MISC_DIR_64 = $(USR_MOD_DIR)/misc/$(SUBDIR64)
554 555 USR_DACF_DIR_64 = $(USR_MOD_DIR)/dacf/$(SUBDIR64)
555 556 USR_PCBE_DIR_64 = $(USR_MOD_DIR)/pcbe/$(SUBDIR64)
556 557 USR_DTRACE_DIR_64 = $(USR_MOD_DIR)/dtrace/$(SUBDIR64)
557 558 USR_BRAND_DIR_64 = $(USR_MOD_DIR)/brand/$(SUBDIR64)
558 559
559 560 USR_DRV_DIR = $(USR_DRV_DIR_$(CLASS))
560 561 USR_EXEC_DIR = $(USR_EXEC_DIR_$(CLASS))
561 562 USR_FS_DIR = $(USR_FS_DIR_$(CLASS))
562 563 USR_SCHED_DIR = $(USR_SCHED_DIR_$(CLASS))
563 564 USR_SOCK_DIR = $(USR_SOCK_DIR_$(CLASS))
564 565 USR_STRMOD_DIR = $(USR_STRMOD_DIR_$(CLASS))
565 566 USR_SYS_DIR = $(USR_SYS_DIR_$(CLASS))
566 567 USR_MISC_DIR = $(USR_MISC_DIR_$(CLASS))
567 568 USR_DACF_DIR = $(USR_DACF_DIR_$(CLASS))
568 569 USR_PCBE_DIR = $(USR_PCBE_DIR_$(CLASS))
569 570 USR_DTRACE_DIR = $(USR_DTRACE_DIR_$(CLASS))
570 571 USR_BRAND_DIR = $(USR_BRAND_DIR_$(CLASS))
571 572
572 573 USR_MOD_DIRS_32 = $(USR_DRV_DIR_32) $(USR_EXEC_DIR_32)
573 574 USR_MOD_DIRS_32 += $(USR_FS_DIR_32) $(USR_SCHED_DIR_32)
574 575 USR_MOD_DIRS_32 += $(USR_STRMOD_DIR_32) $(USR_SYS_DIR_32)
575 576 USR_MOD_DIRS_32 += $(USR_MISC_DIR_32) $(USR_DACF_DIR_32)
576 577 USR_MOD_DIRS_32 += $(USR_PCBE_DIR_32)
577 578 USR_MOD_DIRS_32 += $(USR_DTRACE_DIR_32) $(USR_BRAND_DIR_32)
578 579 USR_MOD_DIRS_32 += $(USR_SOCK_DIR_32)
579 580
580 581 #
581 582 #
582 583 #
583 584 include $(SRC)/Makefile.psm
584 585
585 586 #
586 587 # The "-r" on the remove may be considered temporary, but is required
587 588 # while the replacement of the SUNW,SPARCstation-10,SX directory by
588 589 # a symbolic link is being propagated.
589 590 #
590 591 # IMPORTANT:: if you change any of these INS.mumble rules, then you MUST also
591 592 # change the corresponding override definitions in $CLOSED/Makefile.tonic.
592 593 # If you do not do this, then the closedbins build for the OpenSolaris
593 594 # community will break. PS, the gatekeepers will be upset too.
594 595 #
595 596 INS.slink1= $(RM) -r $@; $(SYMLINK) $(PLATFORM) $@
596 597 INS.slink2= $(RM) -r $@; $(SYMLINK) ../$(PLATFORM)/$(@F) $@
597 598 INS.slink3= $(RM) -r $@; $(SYMLINK) $(IMPLEMENTED_PLATFORM) $@
598 599 INS.slink4= $(RM) -r $@; $(SYMLINK) ../$(PLATFORM)/include $@
599 600 INS.slink5= $(RM) -r $@; $(SYMLINK) ../$(PLATFORM)/sbin $@
600 601 INS.slink6= $(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/lib/$(MODULE) $@
601 602 INS.slink7= $(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/sbin/$(@F) $@
602 603
603 604 ROOT_PLAT_LINKS = $(PLAT_LINKS:%=$(ROOT_PLAT_DIR)/%)
604 605 ROOT_PLAT_LINKS_2 = $(PLAT_LINKS_2:%=$(ROOT_PLAT_DIR)/%)
605 606 USR_PLAT_LINKS = $(PLAT_LINKS:%=$(USR_PLAT_DIR)/%)
606 607 USR_PLAT_LINKS_2 = $(PLAT_LINKS_2:%=$(USR_PLAT_DIR)/%)
607 608
608 609 #
609 610 # Collection of all relevant, delivered kernel modules.
610 611 #
611 612 # Note that we insist on building genunix first, because everything else
612 613 # uniquifies against it. When doing a 'make' from usr/src/uts/, we'll enter
613 614 # the platform directories first. These will cd into the corresponding genunix
614 615 # directory and build it. So genunix /shouldn't/ get rebuilt when we get to
615 616 # building all the kernel modules. However, due to an as-yet-unexplained
616 617 # problem with dependencies, sometimes it does get rebuilt, which then messes
617 618 # up the other modules. So we always force the issue here rather than try to
618 619 # build genunix in parallel with everything else.
619 620 #
620 621 PARALLEL_KMODS = $(DRV_KMODS) $(EXEC_KMODS) $(FS_KMODS) $(SCHED_KMODS) \
621 622 $(TOD_KMODS) $(STRMOD_KMODS) $(SYS_KMODS) $(MISC_KMODS) \
622 623 $(NLMISC_KMODS) $(MACH_KMODS) $(CPU_KMODS) $(GSS_KMODS) \
623 624 $(MMU_KMODS) $(DACF_KMODS) $(EXPORT_KMODS) $(IPP_KMODS) \
624 625 $(CRYPTO_KMODS) $(PCBE_KMODS) \
625 626 $(DRV_KMODS_$(CLASS)) $(MISC_KMODS_$(CLASS)) $(MAC_KMODS) \
626 627 $(BRAND_KMODS) $(KICONV_KMODS) \
627 628 $(SOCKET_KMODS)
628 629
629 630 KMODS = $(GENUNIX_KMODS) $(PARALLEL_KMODS)
630 631
631 632 $(PARALLEL_KMODS): $(GENUNIX_KMODS)
632 633
633 634 $(CLOSED_BUILD)CLOSED_KMODS = $(CLOSED_DRV_KMODS) $(CLOSED_TOD_KMODS) \
634 635 $(CLOSED_MISC_KMODS) $(CLOSED_CPU_KMODS) \
635 636 $(CLOSED_NLMISC_KMODS) $(CLOSED_DRV_KMODS_$(CLASS))
636 637
637 638 LINT_KMODS = $(DRV_KMODS) $(EXEC_KMODS) $(FS_KMODS) $(SCHED_KMODS) \
638 639 $(TOD_KMODS) $(STRMOD_KMODS) $(SYS_KMODS) $(MISC_KMODS) \
639 640 $(MACH_KMODS) $(GSS_KMODS) $(DACF_KMODS) $(IPP_KMODS) \
640 641 $(CRYPTO_KMODS) $(PCBE_KMODS) \
641 642 $(DRV_KMODS_$(CLASS)) $(MISC_KMODS_$(CLASS)) $(MAC_KMODS) \
642 643 $(BRAND_KMODS) $(KICONV_KMODS) $(SOCKET_KMODS)
643 644
644 645 $(CLOSED_BUILD)CLOSED_LINT_KMODS = $(CLOSED_DRV_KMODS) $(CLOSED_TOD_KMODS) \
645 646 $(CLOSED_MISC_KMODS) $(CLOSED_DRV_KMODS_$(CLASS))
646 647
647 648 THIS_YEAR:sh= /bin/date +%Y
648 649 $(OBJS_DIR)/logsubr.o := CPPFLAGS += -DTHIS_YEAR=$(THIS_YEAR)
649 650 $(OBJS_DIR)/logsubr.ln := CPPFLAGS += -DTHIS_YEAR=$(THIS_YEAR)
650 651
651 652 #
652 653 # Files to be compiled with -xa, to generate basic block execution
653 654 # count data.
654 655 #
655 656 # There are several ways to compile parts of the kernel for kcov:
656 657 # 1) Add targets to BB_FILES here or in other Makefiles
657 658 # (they must in the form of $(OBJS_DIR)/target.o)
658 659 # 2) setenv BB_FILES '$(XXX_OBJS:%=$(OBJS_DIR)/%)'
659 660 # 3) setenv BB_FILES '$(OBJECTS)'
660 661 #
661 662 # Do NOT setenv CFLAGS -xa, as that will cause infinite recursion
↓ open down ↓ |
626 lines elided |
↑ open up ↑ |
662 663 # in unix_bb.o
663 664 #
664 665 BB_FILES =
665 666 $(BB_FILES) := XAOPT = -xa
666 667
667 668 #
668 669 # The idea here is for unix_bb.o to be in all kernels except the
669 670 # kernel which actually gets shipped to customers. In practice,
670 671 # $(RELEASE_BUILD) is on for a number of the late beta and fcs builds.
671 672 #
672 -CODE_COVERAGE=
673 -$(RELEASE_BUILD)CODE_COVERAGE:sh= echo \\043
674 -$(CODE_COVERAGE)$(OBJS_DIR)/unix_bb.o := CPPFLAGS += -DKCOV
675 -$(CODE_COVERAGE)$(OBJS_DIR)/unix_bb.ln := CPPFLAGS += -DKCOV
673 +$(NOT_RELEASE_BUILD)$(OBJS_DIR)/unix_bb.o := CPPFLAGS += -DKCOV
674 +$(NOT_RELEASE_BUILD)$(OBJS_DIR)/unix_bb.ln := CPPFLAGS += -DKCOV
676 675
677 676 #
678 677 # Do not let unix_bb.o get compiled with -xa!
679 678 #
680 679 $(OBJS_DIR)/unix_bb.o := XAOPT =
681 680
682 681 #
683 682 # Privilege files
684 683 #
685 684 PRIVS_AWK = $(SRC)/uts/common/os/privs.awk
686 685 PRIVS_DEF = $(SRC)/uts/common/os/priv_defs
687 686
688 687 #
689 688 # USB device data
690 689 #
691 690 USBDEVS_AWK = $(SRC)/uts/common/io/usb/usbdevs2h.awk
692 691 USBDEVS_DATA = $(SRC)/uts/common/io/usb/usbdevs
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX