1#!/bin/sh 2# 3# CDDL HEADER START 4# 5# The contents of this file are subject to the terms of the 6# Common Development and Distribution License (the "License"). 7# You may not use this file except in compliance with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26 27#ident "%Z%%M% %I% %E% SMI" 28 29# This file brings down all that is needed to build the 30# x86 PCI Express code. 31# 32 33# header files 34find_files "s.*.h" \ 35 usr/src/uts/common/sys \ 36 usr/src/uts/sparc/sys \ 37 usr/src/uts/sparc/v7/sys \ 38 usr/src/uts/sparc/v9/sys \ 39 usr/src/uts/sun/sys \ 40 usr/src/uts/sun4/sys \ 41 usr/src/uts/intel/sys \ 42 usr/src/uts/intel/ia32/sys \ 43 usr/src/uts/common/rpc \ 44 usr/src/uts/common/netinet \ 45 usr/src/uts/common/inet \ 46 usr/src/uts/common/net \ 47 usr/src/uts/common/vm \ 48 usr/src/uts/common/gssapi 49 50# cfgadm plugin directory 51find_files "s.*" \ 52 usr/src/lib/cfgadm_plugins/pci \ 53 usr/src/cmd/pcidr 54 55# to compile the drivers/modules 56find_files "s.*" \ 57 usr/src/uts/i86pc/npe \ 58 usr/src/uts/intel/pci_autoconfig \ 59 usr/src/uts/intel/pcie_pci \ 60 usr/src/uts/intel/pciehpc \ 61 usr/src/uts/intel/pcicfg 62 63# packaging files 64find_files "s.*" \ 65 usr/src/pkgdefs/common_files \ 66 usr/src/pkgdefs/SUNWckr \ 67 usr/src/pkgdefs/SUNWcakr.i \ 68 usr/src/pkgdefs/SUNWcsu 69 70# extra files needed 71find_files "s.*" \ 72 usr/src/common/smbios \ 73 usr/src/uts/common/os \ 74 usr/src/uts/common/rpc \ 75 usr/src/uts/intel/asm \ 76 usr/src/uts/intel/amd64 \ 77 usr/src/uts/intel/io/hotplug \ 78 usr/src/uts/intel/io/pci \ 79 usr/src/uts/intel/io/pciex \ 80 usr/src/uts/i86pc/io/pci \ 81 usr/src/uts/i86pc/io/pcplusmp \ 82 usr/src/uts/intel/io/acpica 83 84# makefiles 85echo_file usr/src/Makefile.master 86echo_file usr/src/Makefile.master.64 87echo_file usr/src/req.flg 88echo_file usr/src/Makefile.psm 89echo_file usr/src/Makefile.psm.targ 90echo_file usr/src/uts/Makefile 91echo_file usr/src/uts/Makefile.targ 92echo_file usr/src/uts/Makefile.uts 93echo_file usr/src/uts/sun/Makefile.files 94echo_file usr/src/uts/sun/Makefile.rules 95echo_file usr/src/uts/common/Makefile.files 96echo_file usr/src/uts/common/Makefile.rules 97echo_file usr/src/uts/common/sys/Makefile 98echo_file usr/src/uts/i86pc/Makefile 99echo_file usr/src/uts/i86pc/Makefile.files 100echo_file usr/src/uts/i86pc/Makefile.rules 101echo_file usr/src/uts/i86pc/Makefile.i86pc 102echo_file usr/src/uts/i86pc/Makefile.targ 103echo_file usr/src/uts/intel/Makefile 104echo_file usr/src/uts/intel/Makefile.files 105echo_file usr/src/uts/intel/Makefile.rules 106echo_file usr/src/uts/intel/Makefile.intel 107echo_file usr/src/uts/intel/Makefile.targ 108echo_file usr/src/uts/intel/ia32/ml/ia32.il 109echo_file usr/src/cmd/Makefile 110echo_file usr/src/cmd/Makefile.cmd 111echo_file usr/src/cmd/Makefile.targ 112echo_file usr/src/pkgdefs/awk_procedure 113echo_file usr/src/pkgdefs/bld_awk_pkginfo.ksh 114echo_file usr/src/pkgdefs/req.flg 115echo_file usr/src/pkgdefs/Makefile 116echo_file usr/src/pkgdefs/Makefile.com 117echo_file usr/src/pkgdefs/Makefile.prtarg 118echo_file usr/src/pkgdefs/Makefile.targ 119echo_file usr/src/pkgdefs/etc/exception_list_sparc 120echo_file usr/src/pkgdefs/etc/exception_list_i386 121echo_file usr/src/cmd/mapfile_noexstk 122echo_file usr/src/cmd/sgs/mapfiles/sparc/map.pagealign 123