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