xref: /illumos-gate/usr/src/uts/common/io/ib/inc.flg (revision 7c478bd9)
1*7c478bd9Sstevel@tonic-gate#!/bin/sh
2*7c478bd9Sstevel@tonic-gate#
3*7c478bd9Sstevel@tonic-gate# CDDL HEADER START
4*7c478bd9Sstevel@tonic-gate#
5*7c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
6*7c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
7*7c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
8*7c478bd9Sstevel@tonic-gate# with the License.
9*7c478bd9Sstevel@tonic-gate#
10*7c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11*7c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
12*7c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
13*7c478bd9Sstevel@tonic-gate# and limitations under the License.
14*7c478bd9Sstevel@tonic-gate#
15*7c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
16*7c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17*7c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
18*7c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
19*7c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
20*7c478bd9Sstevel@tonic-gate#
21*7c478bd9Sstevel@tonic-gate# CDDL HEADER END
22*7c478bd9Sstevel@tonic-gate#
23*7c478bd9Sstevel@tonic-gate#
24*7c478bd9Sstevel@tonic-gate# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
25*7c478bd9Sstevel@tonic-gate# Use is subject to license terms.
26*7c478bd9Sstevel@tonic-gate#
27*7c478bd9Sstevel@tonic-gate
28*7c478bd9Sstevel@tonic-gate#ident	"%Z%%M%	%I%	%E% SMI"
29*7c478bd9Sstevel@tonic-gate
30*7c478bd9Sstevel@tonic-gate# This file brings down all that is needed to build the
31*7c478bd9Sstevel@tonic-gate# core Infiniband code.
32*7c478bd9Sstevel@tonic-gate#
33*7c478bd9Sstevel@tonic-gate
34*7c478bd9Sstevel@tonic-gate# header files
35*7c478bd9Sstevel@tonic-gatefind_files "s.*.h"	\
36*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/sys/ib	\
37*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/sys		\
38*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/sys		\
39*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/v7/sys	\
40*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/v9/sys	\
41*7c478bd9Sstevel@tonic-gate	usr/src/uts/sun/sys		\
42*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/sys		\
43*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/ia32/sys	\
44*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/rpc		\
45*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/netinet	\
46*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/inet		\
47*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/net		\
48*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/vm		\
49*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/gssapi
50*7c478bd9Sstevel@tonic-gate
51*7c478bd9Sstevel@tonic-gate# cfgadm plugin directory
52*7c478bd9Sstevel@tonic-gatefind_files "s.*"	\
53*7c478bd9Sstevel@tonic-gate	usr/src/lib/cfgadm_plugins/ib
54*7c478bd9Sstevel@tonic-gate
55*7c478bd9Sstevel@tonic-gate# warlock
56*7c478bd9Sstevel@tonic-gatefind_files "s.*"	\
57*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/io/warlock
58*7c478bd9Sstevel@tonic-gate
59*7c478bd9Sstevel@tonic-gate# to compile the drivers/modules
60*7c478bd9Sstevel@tonic-gatefind_files "s.*"	\
61*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/ib		\
62*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/ibcm		\
63*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/ibdm		\
64*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/ibmf		\
65*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/ibtl		\
66*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/tavor		\
67*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/ibd		\
68*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/daplt		\
69*7c478bd9Sstevel@tonic-gate	usr/src/uts/sparc/rpcib		\
70*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/ib		\
71*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/ibcm		\
72*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/ibdm		\
73*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/ibmf		\
74*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/ibtl		\
75*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/tavor		\
76*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/daplt
77*7c478bd9Sstevel@tonic-gate
78*7c478bd9Sstevel@tonic-gate# packaging files
79*7c478bd9Sstevel@tonic-gatefind_files "s.*"	\
80*7c478bd9Sstevel@tonic-gate	usr/src/pkgdefs/common_files	\
81*7c478bd9Sstevel@tonic-gate	usr/src/pkgdefs/SUNWib		\
82*7c478bd9Sstevel@tonic-gate	usr/src/pkgdefs/SUNWtavor
83*7c478bd9Sstevel@tonic-gate
84*7c478bd9Sstevel@tonic-gate# extra files needed
85*7c478bd9Sstevel@tonic-gatefind_files "s.*"	\
86*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/os		\
87*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/rpc		\
88*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/asm		\
89*7c478bd9Sstevel@tonic-gate	usr/src/uts/intel/amd64
90*7c478bd9Sstevel@tonic-gate
91*7c478bd9Sstevel@tonic-gate# lvm
92*7c478bd9Sstevel@tonic-gatefind_files "s.*.x"	\
93*7c478bd9Sstevel@tonic-gate	usr/src/uts/common/sys/lvm
94*7c478bd9Sstevel@tonic-gate
95*7c478bd9Sstevel@tonic-gate# makefiles
96*7c478bd9Sstevel@tonic-gateecho_file  usr/src/Makefile.master
97*7c478bd9Sstevel@tonic-gateecho_file  usr/src/Makefile.master.64
98*7c478bd9Sstevel@tonic-gateecho_file  usr/src/req.flg
99*7c478bd9Sstevel@tonic-gateecho_file  usr/src/Makefile.psm
100*7c478bd9Sstevel@tonic-gateecho_file  usr/src/Makefile.psm.targ
101*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/Makefile
102*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/Makefile.targ
103*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/Makefile.uts
104*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun/Makefile.files
105*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun/Makefile.rules
106*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/common/Makefile.files
107*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/common/Makefile.rules
108*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/common/sys/Makefile
109*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/common/sys/lvm/Makefile
110*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/Makefile
111*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/Makefile.files
112*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/Makefile.rules
113*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/Makefile.sparc
114*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/Makefile.targ
115*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/ml/sparc.il
116*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/req.flg
117*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/intel/Makefile
118*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/intel/Makefile.files
119*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/intel/Makefile.rules
120*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/intel/Makefile.intel
121*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/intel/Makefile.targ
122*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/intel/ia32/ml/ia32.il
123*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/Makefile
124*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/Makefile.files
125*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/Makefile.rules
126*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/Makefile.sun4u
127*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/Makefile.targ
128*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/Makefile.workarounds
129*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sfmmu/Makefile.files
130*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sfmmu/Makefile.rules
131*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/v9/Makefile.files
132*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sparc/v9/Makefile.rules
133*7c478bd9Sstevel@tonic-gateecho_file  usr/src/cmd/Makefile
134*7c478bd9Sstevel@tonic-gateecho_file  usr/src/cmd/Makefile.cmd
135*7c478bd9Sstevel@tonic-gateecho_file  usr/src/cmd/Makefile.targ
136*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/awk_procedure
137*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/bld_awk_pkginfo.ksh
138*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/req.flg
139*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/Makefile
140*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/Makefile.com
141*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/Makefile.prtarg
142*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/Makefile.targ
143*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/etc/exception_list_sparc
144*7c478bd9Sstevel@tonic-gateecho_file  usr/src/pkgdefs/etc/exception_list_i386
145*7c478bd9Sstevel@tonic-gateecho_file  usr/src/cmd/mapfile_noexstk
146*7c478bd9Sstevel@tonic-gateecho_file  usr/src/cmd/sgs/mapfiles/sparc/map.pagealign
147*7c478bd9Sstevel@tonic-gate
148*7c478bd9Sstevel@tonic-gate# these files are needed for forthdebug
149*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/forthdebug/Makefile
150*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/forthdebug/ib.fdbg
151*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/forthdebug/ibcm.fdbg
152*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/forthdebug/ibdm.fdbg
153*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/forthdebug/ibmf.fdbg
154*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4u/forthdebug/ibtl.fdbg
155*7c478bd9Sstevel@tonic-gateecho_file  usr/src/uts/sun4/forthdebug/tavor.fdbg
156