17c478bd9Sstevel@tonic-gate#!/bin/sh 27c478bd9Sstevel@tonic-gate# 37c478bd9Sstevel@tonic-gate# CDDL HEADER START 47c478bd9Sstevel@tonic-gate# 57c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 624da5b34Srie# Common Development and Distribution License (the "License"). 724da5b34Srie# You may not use this file except in compliance with the License. 87c478bd9Sstevel@tonic-gate# 97c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 107c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 117c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 127c478bd9Sstevel@tonic-gate# and limitations under the License. 137c478bd9Sstevel@tonic-gate# 147c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 157c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 167c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 177c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 187c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 197c478bd9Sstevel@tonic-gate# 207c478bd9Sstevel@tonic-gate# CDDL HEADER END 217c478bd9Sstevel@tonic-gate# 2224da5b34Srie 237c478bd9Sstevel@tonic-gate# 24*1cfa752fSRamaswamy Tummala# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 257c478bd9Sstevel@tonic-gate# 267c478bd9Sstevel@tonic-gate 27ead1f93eSLiane Praza# 287c478bd9Sstevel@tonic-gate# This file brings down all that is needed to build the 297c478bd9Sstevel@tonic-gate# core Infiniband code. 307c478bd9Sstevel@tonic-gate# 317c478bd9Sstevel@tonic-gate 327c478bd9Sstevel@tonic-gate# header files 337c478bd9Sstevel@tonic-gatefind_files "s.*.h" \ 347c478bd9Sstevel@tonic-gate usr/src/uts/common/sys/ib \ 357c478bd9Sstevel@tonic-gate usr/src/uts/common/sys \ 367c478bd9Sstevel@tonic-gate usr/src/uts/sparc/sys \ 377c478bd9Sstevel@tonic-gate usr/src/uts/sparc/v7/sys \ 387c478bd9Sstevel@tonic-gate usr/src/uts/sparc/v9/sys \ 397c478bd9Sstevel@tonic-gate usr/src/uts/sun/sys \ 407c478bd9Sstevel@tonic-gate usr/src/uts/intel/sys \ 417c478bd9Sstevel@tonic-gate usr/src/uts/intel/ia32/sys \ 427c478bd9Sstevel@tonic-gate usr/src/uts/common/rpc \ 437c478bd9Sstevel@tonic-gate usr/src/uts/common/netinet \ 447c478bd9Sstevel@tonic-gate usr/src/uts/common/inet \ 457c478bd9Sstevel@tonic-gate usr/src/uts/common/net \ 467c478bd9Sstevel@tonic-gate usr/src/uts/common/vm \ 477c478bd9Sstevel@tonic-gate usr/src/uts/common/gssapi 487c478bd9Sstevel@tonic-gate 497c478bd9Sstevel@tonic-gate# cfgadm plugin directory 507c478bd9Sstevel@tonic-gatefind_files "s.*" \ 517c478bd9Sstevel@tonic-gate usr/src/lib/cfgadm_plugins/ib 527c478bd9Sstevel@tonic-gate 537c478bd9Sstevel@tonic-gate# warlock 547c478bd9Sstevel@tonic-gatefind_files "s.*" \ 557c478bd9Sstevel@tonic-gate usr/src/uts/common/io/warlock 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate# to compile the drivers/modules 587c478bd9Sstevel@tonic-gatefind_files "s.*" \ 597c478bd9Sstevel@tonic-gate usr/src/uts/sparc/ib \ 607c478bd9Sstevel@tonic-gate usr/src/uts/sparc/ibcm \ 617c478bd9Sstevel@tonic-gate usr/src/uts/sparc/ibdm \ 627c478bd9Sstevel@tonic-gate usr/src/uts/sparc/ibmf \ 637c478bd9Sstevel@tonic-gate usr/src/uts/sparc/ibtl \ 64*1cfa752fSRamaswamy Tummala usr/src/uts/sparc/ibp \ 657c478bd9Sstevel@tonic-gate usr/src/uts/sparc/rpcib \ 667c478bd9Sstevel@tonic-gate usr/src/uts/intel/ib \ 677c478bd9Sstevel@tonic-gate usr/src/uts/intel/ibcm \ 687c478bd9Sstevel@tonic-gate usr/src/uts/intel/ibdm \ 697c478bd9Sstevel@tonic-gate usr/src/uts/intel/ibmf \ 707c478bd9Sstevel@tonic-gate usr/src/uts/intel/ibtl \ 71*1cfa752fSRamaswamy Tummala usr/src/uts/intel/ibp \ 7243ed929aSsrust usr/src/uts/intel/rpcib 737c478bd9Sstevel@tonic-gate 747c478bd9Sstevel@tonic-gate# packaging files 75ead1f93eSLiane Prazafind_files "s.*" usr/src/pkg/license_files 767c478bd9Sstevel@tonic-gate 777c478bd9Sstevel@tonic-gate# extra files needed 787c478bd9Sstevel@tonic-gatefind_files "s.*" \ 797c478bd9Sstevel@tonic-gate usr/src/uts/common/os \ 807c478bd9Sstevel@tonic-gate usr/src/uts/common/rpc \ 817c478bd9Sstevel@tonic-gate usr/src/uts/intel/asm \ 827c478bd9Sstevel@tonic-gate usr/src/uts/intel/amd64 837c478bd9Sstevel@tonic-gate 847c478bd9Sstevel@tonic-gate# makefiles 857c478bd9Sstevel@tonic-gateecho_file usr/src/Makefile.master 867c478bd9Sstevel@tonic-gateecho_file usr/src/Makefile.master.64 877c478bd9Sstevel@tonic-gateecho_file usr/src/req.flg 887c478bd9Sstevel@tonic-gateecho_file usr/src/Makefile.psm 897c478bd9Sstevel@tonic-gateecho_file usr/src/Makefile.psm.targ 907c478bd9Sstevel@tonic-gateecho_file usr/src/uts/Makefile 917c478bd9Sstevel@tonic-gateecho_file usr/src/uts/Makefile.targ 927c478bd9Sstevel@tonic-gateecho_file usr/src/uts/Makefile.uts 937c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun/Makefile.files 947c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun/Makefile.rules 957c478bd9Sstevel@tonic-gateecho_file usr/src/uts/common/Makefile.files 967c478bd9Sstevel@tonic-gateecho_file usr/src/uts/common/Makefile.rules 977c478bd9Sstevel@tonic-gateecho_file usr/src/uts/common/sys/Makefile 987c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/Makefile 997c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/Makefile.files 1007c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/Makefile.rules 1017c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/Makefile.sparc 1027c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/Makefile.targ 1037c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/ml/sparc.il 1047c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/req.flg 1057c478bd9Sstevel@tonic-gateecho_file usr/src/uts/intel/Makefile 1067c478bd9Sstevel@tonic-gateecho_file usr/src/uts/intel/Makefile.files 1077c478bd9Sstevel@tonic-gateecho_file usr/src/uts/intel/Makefile.rules 1087c478bd9Sstevel@tonic-gateecho_file usr/src/uts/intel/Makefile.intel 1097c478bd9Sstevel@tonic-gateecho_file usr/src/uts/intel/Makefile.targ 1107c478bd9Sstevel@tonic-gateecho_file usr/src/uts/intel/ia32/ml/ia32.il 11143ed929aSsrustecho_file usr/src/uts/sun4/Makefile.files 11243ed929aSsrustecho_file usr/src/uts/sun4/Makefile.rules 1137c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun4u/Makefile 1147c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun4u/Makefile.files 1157c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun4u/Makefile.rules 1167c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun4u/Makefile.sun4u 1177c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun4u/Makefile.targ 1187c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sun4u/Makefile.workarounds 1197c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sfmmu/Makefile.files 1207c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sfmmu/Makefile.rules 1217c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/v9/Makefile.files 1227c478bd9Sstevel@tonic-gateecho_file usr/src/uts/sparc/v9/Makefile.rules 1237c478bd9Sstevel@tonic-gateecho_file usr/src/cmd/Makefile 1247c478bd9Sstevel@tonic-gateecho_file usr/src/cmd/Makefile.cmd 1257c478bd9Sstevel@tonic-gateecho_file usr/src/cmd/Makefile.targ 126ead1f93eSLiane Prazaecho_file usr/src/pkg/Makefile 127ead1f93eSLiane Prazaecho_file exception_lists/packaging 12824da5b34Sriefind_files "s.*" usr/src/common/mapfiles 129