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/sparc/Makefile.sparc.shared
+++ new/usr/src/uts/sparc/Makefile.sparc.shared
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 #
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
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
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 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 +# Copyright (c) 2013 Andrew Stormont. All rights reserved.
23 24
24 25
25 26 #
26 27 # This makefile contains the common definitions for all sparc
27 28 # implementation architecture independent modules.
28 29 #
29 30
30 31 #
31 32 # Define supported builds
32 33 #
33 34 DEF_BUILDS = $(DEF_BUILDS64)
34 35 ALL_BUILDS = $(ALL_BUILDS64)
35 36
36 37 #
37 38 # Everybody needs to know how to build modstubs.o and to locate unix.o.
38 39 # Note that unix.o must currently be selected from among the possible
39 40 # "implementation architectures". Note further, that unix.o is only
40 41 # used as an optional error check for undefines so (theoretically)
41 42 # any "implementation architectures" could be used. We choose sun4u
42 43 # because it is the reference port.
43 44 #
44 45 UNIX_DIR = $(UTSBASE)/sun4u/unix
45 46 GENLIB_DIR = $(UTSBASE)/sun4u/genunix
46 47 IPDRV_DIR = $(UTSBASE)/sparc/ip
47 48 MODSTUBS_DIR = $(UNIX_DIR)
48 49 DSF_DIR = $(UNIX_DIR)
49 50 LINTS_DIR = $(OBJS_DIR)
50 51 LINT_LIB_DIR = $(UTSBASE)/sparc/lint-libs/$(OBJS_DIR)
51 52
52 53 UNIX_O = $(UNIX_DIR)/$(OBJS_DIR)/unix.o
53 54 MODSTUBS_O = $(MODSTUBS_DIR)/$(OBJS_DIR)/modstubs.o
54 55 GENLIB = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/libgenunix.so
55 56
56 57 LINT_LIB_32 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lunix.ln
57 58 GEN_LINT_LIB_32 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lgenunix.ln
58 59
59 60 LINT_LIB_64 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lunix.ln
60 61 GEN_LINT_LIB_64 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lgenunix.ln
61 62
62 63 LINT_LIB = $(LINT_LIB_$(CLASS))
63 64 GEN_LINT_LIB = $(GEN_LINT_LIB_$(CLASS))
64 65
65 66 LINT32_DIRS = $(LINT32_BUILDS:%=$(UTSBASE)/sparc/lint-libs/%)
66 67 LINT32_FILES = $(LINT32_DIRS:%=%/llib-l$(MODULE).ln)
67 68
68 69 LINT64_DIRS = $(LINT64_BUILDS:%=$(UTSBASE)/sparc/lint-libs/%)
69 70 LINT64_FILES = $(LINT64_DIRS:%=%/llib-l$(MODULE).ln)
70 71
71 72 #
72 73 # Include the makefiles which define build rule templates, the
73 74 # collection of files per module, and a few specific flags. Note
74 75 # that order is significant, just as with an include path. The
75 76 # first build rule template which matches the files name will be
76 77 # used. By including these in order from most machine dependent
77 78 # to most machine independent, we allow a machine dependent file
78 79 # to be used in preference over a machine independent version
79 80 # (Such as a machine specific optimization, which preserves the
80 81 # interfaces.)
81 82 #
82 83 include $(UTSBASE)/sparc/Makefile.files
83 84 include $(UTSBASE)/sparc/v9/Makefile.files
84 85 include $(UTSTREE)/sun/Makefile.files
85 86 include $(UTSTREE)/common/Makefile.files
86 87
87 88 #
88 89 # ----- TRANSITIONAL SECTION --------------------------------------------------
89 90 #
90 91
91 92 #
92 93 # Not everything which *should* be a module is a module yet. The
93 94 # following is a list of such objects which are currently part of
94 95 # genunix but which might someday become kmods. This must be
95 96 # defined before we include Makefile.uts, or else genunix's build
96 97 # won't be as parallel as we might like.
97 98 #
98 99 NOT_YET_KMODS = $(OLDPTY_OBJS) $(PTY_OBJS) $(VCONS_CONF_OBJS) $(MOD_OBJS)
99 100
100 101 #
101 102 # ----- END OF TRANSITIONAL SECTION -------------------------------------------
102 103 #
103 104 # Include machine independent rules. Note that this does not imply
104 105 # that the resulting module from rules in Makefile.uts is machine
105 106 # independent. Only that the build rules are machine independent.
106 107 #
107 108 include $(UTSBASE)/Makefile.uts
108 109
109 110 #
110 111 # machine specific optimization, override default in Makefile.master
111 112 #
112 113 XARCH_32 = -xarch=v8
113 114 XARCH_64 = -m64
114 115 XARCH = $(XARCH_$(CLASS))
115 116
116 117 COPTIMIZE_32 = -xO3
117 118 COPTIMIZE_64 = -xO3
118 119 COPTIMIZE = $(COPTIMIZE_$(CLASS))
119 120
120 121 CCMODE = -Xa
121 122
122 123 CFLAGS_32 = -xcg92
123 124 CFLAGS_64 = -xchip=ultra $(CCABS32) $(CCREGSYM)
124 125 CFLAGS = $(CFLAGS_$(CLASS))
125 126
126 127 CFLAGS += $(XARCH)
127 128 CFLAGS += $(COPTIMIZE)
128 129 CFLAGS += $(EXTRA_CFLAGS)
129 130 CFLAGS += $(XAOPT)
130 131 CFLAGS += $(INLINES) -D_ASM_INLINES
131 132 CFLAGS += $(CCMODE)
132 133 CFLAGS += $(SPACEFLAG)
133 134 CFLAGS += $(CERRWARN)
134 135 CFLAGS += $(CTF_FLAGS_$(CLASS))
135 136 CFLAGS += $(C99MODE)
136 137 CFLAGS += $(CCUNBOUND)
137 138 CFLAGS += $(CCSTATICSYM)
138 139 CFLAGS += $(CC32BITCALLERS)
139 140 CFLAGS += $(CCNOAUTOINLINE)
140 141 CFLAGS += $(IROPTFLAG)
141 142 CFLAGS += $(CGLOBALSTATIC)
142 143 CFLAGS += -xregs=no%float
143 144 CFLAGS += -xstrconst
144 145 CFLAGS += $(CSOURCEDEBUGFLAGS)
145 146 CFLAGS += $(CUSERFLAGS)
146 147
147 148 ASFLAGS += $(XARCH)
148 149
149 150 LINT_DEFS_32 =
150 151 LINT_DEFS_64 = -m64
151 152 LINT_DEFS += $(LINT_DEFS_$(CLASS))
152 153
153 154 #
154 155 # The following must be defined for all implementations:
155 156 #
156 157 # MODSTUBS: Module stubs source file.
157 158 #
158 159 MODSTUBS = $(UTSBASE)/sparc/ml/modstubs.s
159 160
160 161 #
161 162 # Define the actual specific platforms - obviously none.
162 163 #
163 164 MACHINE_DEFS =
164 165
165 166 #
166 167 # Debugging level
167 168 #
168 169 # Special knowledge of which special debugging options effect which
169 170 # file is used to optimize the build if these flags are changed.
170 171 #
↓ open down ↓ |
138 lines elided |
↑ open up ↑ |
171 172 # XXX: The above could possibly be done for more flags and files, but
172 173 # is left as an experiment to the interested reader. Be forewarned,
173 174 # that excessive use could lead to maintenance difficulties.
174 175 #
175 176 DEBUG_DEFS_OBJ32 =
176 177 DEBUG_DEFS_DBG32 = -DDEBUG
177 178 DEBUG_DEFS_OBJ64 =
178 179 DEBUG_DEFS_DBG64 = -DDEBUG
179 180 DEBUG_DEFS = $(DEBUG_DEFS_$(BUILD_TYPE))
180 181
181 -DEBUG_COND_OBJ32 :sh = echo \\043
182 +DEBUG_COND_OBJ32 = $(POUND_SIGN)
182 183 DEBUG_COND_DBG32 =
183 -DEBUG_COND_OBJ64 :sh = echo \\043
184 +DEBUG_COND_OBJ64 = $(POUND_SIGN)
184 185 DEBUG_COND_DBG64 =
185 186 IF_DEBUG_OBJ = $(DEBUG_COND_$(BUILD_TYPE))$(OBJS_DIR)/
186 187
187 188 $(IF_DEBUG_OBJ)syscall.o := DEBUG_DEFS += -DSYSCALLTRACE
188 189 $(IF_DEBUG_OBJ)clock.o := DEBUG_DEFS += -DKSLICE=1
189 190
190 191 # Comment these out if you don't want dispatcher lock statistics.
191 192
192 193 # $(IF_DEBUG_OBJ)disp_lock.o := DEBUG_DEFS += -DDISP_LOCK_STATS
193 194
194 195 #
195 196 # Collect the preprocessor definitions to be associated with *all*
196 197 # files.
197 198 #
198 199 ALL_DEFS = $(MACHINE_DEFS) $(DEBUG_DEFS) $(OPTION_DEFS)
199 200 #
200 201 #
201 202 # The kernels modules which are "implementation architecture"
202 203 # specific for this machine are enumerated below. Note that most
203 204 # of these modules must exist (in one form or another) for each
204 205 # architecture.
205 206 #
206 207 # Common Drivers (usually pseudo drivers) (/kernel/drv):
207 208 #
208 209 DRV_KMODS += aggr arp audio bl blkdev bofi clone cn conskbd consms cpuid
209 210 DRV_KMODS += crypto cryptoadm devinfo dump
210 211 DRV_KMODS += dtrace fasttrap fbt lockstat profile sdt systrace dcpc
211 212 DRV_KMODS += fssnap icmp icmp6 ip ip6 ipnet ipsecah
212 213 DRV_KMODS += ipsecesp iptun iwscn keysock kmdb kstat ksyms llc1
213 214 DRV_KMODS += lofi
214 215 DRV_KMODS += log logindmux kssl mm nca physmem pm poll pool
215 216 DRV_KMODS += pseudo ptc ptm pts ptsl ramdisk random rsm rts sad
216 217 DRV_KMODS += simnet softmac sppp sppptun sy sysevent sysmsg
217 218 DRV_KMODS += spdsock
218 219 DRV_KMODS += tcp tcp6 tl tnf ttymux udp udp6 wc winlock zcons
219 220 DRV_KMODS += ippctl
220 221 DRV_KMODS += dld
221 222 DRV_KMODS += ipf
222 223 DRV_KMODS += rpcib
223 224 DRV_KMODS += dlpistub
224 225 DRV_KMODS += vnic
225 226 DRV_KMODS += xge
226 227 DRV_KMODS += rds
227 228 DRV_KMODS += rdsv3
228 229 DRV_KMODS += chxge
229 230 DRV_KMODS += smbsrv
230 231 DRV_KMODS += vscan
231 232 DRV_KMODS += nsmb
232 233 DRV_KMODS += fm
233 234 DRV_KMODS += nulldriver
234 235 DRV_KMODS += bridge trill
235 236 DRV_KMODS += bpf
236 237 DRV_KMODS += dca
237 238
238 239 $(CLOSED_BUILD)CLOSED_DRV_KMODS += glm
239 240 $(CLOSED_BUILD)CLOSED_DRV_KMODS += isp
240 241 $(CLOSED_BUILD)CLOSED_DRV_KMODS += mpt
241 242 $(CLOSED_BUILD)CLOSED_DRV_KMODS += qus
242 243 $(CLOSED_BUILD)CLOSED_DRV_KMODS += se
243 244
244 245 #
245 246 # Hardware Drivers in common space
246 247 #
247 248
248 249 DRV_KMODS += afe
249 250 DRV_KMODS += audio1575
250 251 DRV_KMODS += audioens
251 252 DRV_KMODS += audiols
252 253 DRV_KMODS += audiop16x
253 254 DRV_KMODS += audiopci
254 255 DRV_KMODS += audiots
255 256 DRV_KMODS += e1000g
256 257 DRV_KMODS += efe
257 258 DRV_KMODS += hxge
258 259 DRV_KMODS += mxfe
259 260 DRV_KMODS += pcan
260 261 DRV_KMODS += pcwl
261 262 DRV_KMODS += rge
262 263 DRV_KMODS += rtls
263 264 DRV_KMODS += sfe
264 265 DRV_KMODS += aac
265 266 DRV_KMODS += igb
266 267 DRV_KMODS += ixgbe
267 268 DRV_KMODS += vr
268 269 DRV_KMODS += mr_sas
269 270 $(CLOSED_BUILD)CLOSED_DRV_KMODS += ixgb
270 271 DRV_KMODS += yge
271 272
272 273 #
273 274 # Machine Specific Driver Modules (/kernel/drv):
274 275 #
275 276 DRV_KMODS += audiocs
276 277 DRV_KMODS += bge dmfe eri fas hme qfe
277 278 DRV_KMODS += openeepr options sd ses st
278 279 DRV_KMODS += ssd
279 280 DRV_KMODS += ecpp
280 281 DRV_KMODS += hid hubd ehci ohci uhci usb_mid usb_ia scsa2usb usbprn ugen
281 282 DRV_KMODS += usbser usbsacm usbsksp usbsprl
282 283 DRV_KMODS += usb_as usb_ac
283 284 DRV_KMODS += usbskel
284 285 DRV_KMODS += usbvc
285 286 DRV_KMODS += usbftdi
286 287 DRV_KMODS += wusb_df hwahc hwarc wusb_ca
287 288 DRV_KMODS += usbecm
288 289 DRV_KMODS += hci1394 av1394 scsa1394 dcam1394
289 290 DRV_KMODS += sbp2
290 291 DRV_KMODS += ib ibp eibnx eoib rdsib sdp iser daplt hermon tavor sol_ucma sol_uverbs
291 292 DRV_KMODS += sol_umad
292 293 DRV_KMODS += pci_pci pcieb pcieb_bcm
293 294 DRV_KMODS += i8042 kb8042 mouse8042
294 295 DRV_KMODS += fcode
295 296 DRV_KMODS += mpt_sas
296 297 DRV_KMODS += socal
297 298 DRV_KMODS += sgen
298 299 DRV_KMODS += myri10ge
299 300 DRV_KMODS += smp
300 301 DRV_KMODS += dad
301 302 DRV_KMODS += scsi_vhci
302 303 DRV_KMODS += fcp
303 304 DRV_KMODS += fcip
304 305 DRV_KMODS += fcsm
305 306 DRV_KMODS += fp
306 307 DRV_KMODS += qlc
307 308 DRV_KMODS += qlge
308 309 DRV_KMODS += stmf
309 310 DRV_KMODS += stmf_sbd
310 311 DRV_KMODS += fct
311 312 DRV_KMODS += fcoe
312 313 DRV_KMODS += fcoet
313 314 DRV_KMODS += fcoei
314 315 DRV_KMODS += qlt
315 316 DRV_KMODS += iscsit
316 317 DRV_KMODS += pppt
317 318 DRV_KMODS += ncall nsctl sdbc nskern sv
318 319 DRV_KMODS += ii rdc rdcsrv rdcstub
319 320 DRV_KMODS += iscsi
320 321 DRV_KMODS += emlxs
321 322 DRV_KMODS += oce
322 323 DRV_KMODS += srpt
323 324 DRV_KMODS += pmcs
324 325 DRV_KMODS += pmcs8001fw
325 326
326 327 $(CLOSED_BUILD)CLOSED_DRV_KMODS += ifp
327 328 $(CLOSED_BUILD)CLOSED_DRV_KMODS += uata
328 329 $(CLOSED_BUILD)CLOSED_DRV_KMODS += usbser_edge
329 330
330 331 #
331 332 # I/O framework test drivers
332 333 #
333 334 DRV_KMODS += pshot
334 335 DRV_KMODS += gen_drv
335 336 DRV_KMODS += tvhci tphci tclient
336 337 DRV_KMODS += emul64
337 338
338 339 #
339 340 # PCMCIA specific module(s)
340 341 #
341 342 DRV_KMODS += pcs
342 343 MISC_KMODS += busra cardbus dada pcmcia
343 344 DRV_KMODS += pcata
344 345 DRV_KMODS += pcic
345 346
346 347 $(CLOSED_BUILD)CLOSED_DRV_KMODS += pcser
347 348
348 349 # Add lvm
349 350 #
350 351 DRV_KMODS += md
351 352 MISC_KMODS += md_mirror md_stripe md_hotspares md_raid md_trans md_notify
352 353 MISC_KMODS += md_sp
353 354
354 355 #
355 356 # Exec Class Modules (/kernel/exec):
356 357 #
357 358 EXEC_KMODS += aoutexec elfexec intpexec shbinexec javaexec
358 359
359 360 #
360 361 # Scheduling Class Modules (/kernel/sched):
361 362 #
362 363 SCHED_KMODS += RT TS RT_DPTBL TS_DPTBL IA FSS FX FX_DPTBL SDC
363 364
364 365 #
365 366 # File System Modules (/kernel/fs):
366 367 #
367 368 FS_KMODS += dev devfs fdfs fifofs hsfs lofs namefs nfs pcfs tmpfs zfs
368 369 FS_KMODS += zut specfs udfs ufs autofs cachefs procfs sockfs mntfs
369 370 FS_KMODS += ctfs objfs sharefs dcfs smbfs
370 371
371 372 #
372 373 # Streams Modules (/kernel/strmod):
373 374 #
374 375 STRMOD_KMODS += bufmod connld dedump ldterm ms pckt pfmod
375 376 STRMOD_KMODS += pipemod ptem redirmod rpcmod rlmod telmod timod
376 377 STRMOD_KMODS += spppasyn spppcomp
377 378 STRMOD_KMODS += tirdwr ttcompat
378 379 STRMOD_KMODS += usbkbm usbms usbwcm usb_ah
379 380 STRMOD_KMODS += drcompat
380 381 STRMOD_KMODS += cryptmod
381 382 STRMOD_KMODS += vuid3ps2
382 383
383 384 #
384 385 # 'System' Modules (/kernel/sys):
385 386 #
386 387 SYS_KMODS += c2audit
387 388 SYS_KMODS += exacctsys
388 389 SYS_KMODS += inst_sync kaio msgsys semsys shmsys sysacct pipe
389 390 SYS_KMODS += doorfs pset acctctl portfs
390 391
391 392 #
392 393 # 'User' Modules (/kernel/misc):
393 394 #
394 395 MISC_KMODS += ac97
395 396 MISC_KMODS += bignum
396 397 MISC_KMODS += consconfig gld ipc nfs_dlboot nfssrv scsi
397 398 MISC_KMODS += strplumb swapgeneric tlimod
398 399 MISC_KMODS += rpcsec rpcsec_gss kgssapi kmech_dummy
399 400 MISC_KMODS += kmech_krb5
400 401 MISC_KMODS += fssnap_if
401 402 MISC_KMODS += hidparser kbtrans usba usba10 usbs49_fw
402 403 MISC_KMODS += s1394
403 404 MISC_KMODS += hpcsvc pcihp
404 405 MISC_KMODS += rsmops
405 406 MISC_KMODS += kcf
406 407 MISC_KMODS += ksocket
407 408 MISC_KMODS += ibcm
408 409 MISC_KMODS += ibdm
409 410 MISC_KMODS += ibdma
410 411 MISC_KMODS += ibmf
411 412 MISC_KMODS += ibtl
412 413 MISC_KMODS += sol_ofs
413 414 MISC_KMODS += idm
414 415 MISC_KMODS += idmap
415 416 MISC_KMODS += hook
416 417 MISC_KMODS += neti
417 418 MISC_KMODS += ctf
418 419 MISC_KMODS += mac dls
419 420 MISC_KMODS += cmlb
420 421 MISC_KMODS += tem
421 422 MISC_KMODS += pcicfg fcodem fcpci
422 423 MISC_KMODS += scsi_vhci_f_sym scsi_vhci_f_tpgs scsi_vhci_f_asym_sun
423 424 MISC_KMODS += scsi_vhci_f_sym_hds
424 425 MISC_KMODS += scsi_vhci_f_tape scsi_vhci_f_tpgs_tape
425 426 MISC_KMODS += fctl
426 427 MISC_KMODS += emlxs_fw
427 428 MISC_KMODS += qlc_fw_2200
428 429 MISC_KMODS += qlc_fw_2300
429 430 MISC_KMODS += qlc_fw_2400
430 431 MISC_KMODS += qlc_fw_2500
431 432 MISC_KMODS += qlc_fw_6322
432 433 MISC_KMODS += qlc_fw_8100
433 434 MISC_KMODS += spuni
434 435 MISC_KMODS += hwa1480_fw uwba
435 436 MISC_KMODS += mii
436 437
437 438 MISC_KMODS += klmmod klmops
438 439
439 440 $(CLOSED_BUILD)CLOSED_MISC_KMODS += scsi_vhci_f_asym_lsi
440 441 $(CLOSED_BUILD)CLOSED_MISC_KMODS += scsi_vhci_f_asym_emc
441 442 $(CLOSED_BUILD)CLOSED_MISC_KMODS += scsi_vhci_f_sym_emc
442 443
443 444 #
444 445 # Software Cryptographic Providers (/kernel/crypto):
445 446 #
446 447 CRYPTO_KMODS += aes
447 448 CRYPTO_KMODS += arcfour
448 449 CRYPTO_KMODS += blowfish
449 450 CRYPTO_KMODS += des
450 451 CRYPTO_KMODS += md4
451 452 CRYPTO_KMODS += md5
452 453 CRYPTO_KMODS += ecc
453 454 CRYPTO_KMODS += rsa
454 455 CRYPTO_KMODS += sha1
455 456 CRYPTO_KMODS += sha2
456 457 CRYPTO_KMODS += swrand
457 458
458 459 #
459 460 # IP Policy Modules (/kernel/ipp):
460 461 #
461 462 IPP_KMODS += dlcosmk
462 463 IPP_KMODS += flowacct
463 464 IPP_KMODS += ipgpc
464 465 IPP_KMODS += dscpmk
465 466 IPP_KMODS += tokenmt
466 467 IPP_KMODS += tswtclmt
467 468
468 469 #
469 470 # 'Dacf' modules (/kernel/dacf)
470 471 DACF_KMODS += consconfig_dacf
471 472
472 473 #
473 474 # SVVS Testing Modules (/kernel/strmod):
474 475 #
475 476 # These are streams and driver modules which are not to be
476 477 # delivered with a released system. However, during development
477 478 # it is convenient to build and install the SVVS kernel modules.
478 479 #
479 480 SVVS_KMODS += lmodb lmode lmodr lmodt svvslo tidg tivc tmux
480 481
481 482 $(CLOSED_BUILD)SVVS += svvs
482 483
483 484 #
484 485 # Modules eXcluded from the product:
485 486 #
486 487 XMODS +=
487 488 $(CLOSED_BUILD)CLOSED_XMODS = \
488 489 sdpib \
489 490 wsdrv
490 491
491 492 #
492 493 # 'Dacf' Modules (/kernel/dacf):
493 494 #
494 495 DACF_KMODS += net_dacf
495 496
496 497 #
497 498 # MAC-Type Plugin Modules (/kernel/mac)
498 499 #
499 500 MAC_KMODS += mac_6to4
500 501 MAC_KMODS += mac_ether
501 502 MAC_KMODS += mac_ipv4
502 503 MAC_KMODS += mac_ipv6
503 504 MAC_KMODS += mac_wifi
504 505 MAC_KMODS += mac_ib
505 506
506 507 #
507 508 # socketmod (kernel/socketmod)
508 509 #
509 510 SOCKET_KMODS += sockpfp
510 511 SOCKET_KMODS += socksctp
511 512 SOCKET_KMODS += socksdp
512 513 SOCKET_KMODS += sockrds
513 514 SOCKET_KMODS += ksslf
514 515
515 516 #
516 517 # kiconv modules (/kernel/kiconv):
517 518 #
518 519 KICONV_KMODS += kiconv_emea kiconv_ja kiconv_ko kiconv_sc kiconv_tc
↓ open down ↓ |
325 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX