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