1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21 22# 23# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 24# 25 26# 27# The default for payload-bearing actions in this package is to appear in the 28# global zone only. See the include file for greater detail, as well as 29# information about overriding the defaults. 30# 31# 32# CDDL HEADER START 33# 34# The contents of this file are subject to the terms of the 35# Common Development and Distribution License (the "License"). 36# You may not use this file except in compliance with the License. 37# 38# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 39# or http://www.opensolaris.org/os/licensing. 40# See the License for the specific language governing permissions 41# and limitations under the License. 42# 43# When distributing Covered Code, include this CDDL HEADER in each 44# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 45# If applicable, add the following below this CDDL HEADER, with the 46# fields enclosed by brackets "[]" replaced with your own identifying 47# information: Portions Copyright [yyyy] [name of copyright owner] 48# 49# CDDL HEADER END 50# 51 52# 53# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 54# 55 56# 57# For packagers: 58# 59# This ruleset is useful for "system" components-- ones which are expected 60# to appear primarily in the global zone, but which may have some small 61# pieces (man pages, header files) which may need to appear in all zones. 62# 63# The current rules specify that all payload-bearing actions (file, 64# dir, hardlink, link) should appear *only* in the global zone, with 65# the following exceptions: 66# 67# - man pages appear in all zones 68# - header files appear in all zones 69# - mdb(1) modules appear in all zones 70# 71# You may well have other actions which you wish to appear in all zones. 72# An example would be an administrative utility for a driver which has 73# been virtualized to work within zones. For those actions you wish to 74# appear in all zones, add the following attribute to your action. 75# 76# variant.opensolaris.zone=__NODEFAULT 77# 78# You DO NOT need to specify __NODEFAULT for man pages, headers, or 79# mdb modules, as those are covered by the automatic rules below. 80# 81# Note: When you specify variant.opensolaris.zone=__NODEFAULT, the 82# net effect is that *no* variant.opensolaris.zone attribute will 83# appear in the post-processed manifest. 84# 85 86# 87# For packaging nerds: 88# 89# We have a problem to solve here: To make an action appear in all zones, 90# it should have *no* variant.opensolaris.zone attribute. So it's a bit 91# more complicated to use "default". 92# 93# Here's what we do: we use "default" to set all payload bearing actions 94# which have no variant.opensolaris.zone attribute to be 95# variant.opensolaris.zone=global. For those actions which need to appear 96# in all zones, the packager must specify 97# variant.opensolaris.zone=__NODEFAULT. Additionally we have some rules 98# which set __NODEFAULT for a few classes of well known things, like man 99# pages and headers. 100# 101# We then go through and clean up all of the __NODEFAULTed attributes by 102# simply deleting them. 103# 104 105# Man pages should appear in all zones. 106 107# Headers should appear in all zones. 108 109# MDB modules should appear in all zones, as one might debug a crash dump 110# in a zone. 111 112# Everything else is global zone only unless the user overrides 113# action-by-action with __NODEFAULT. 114 115# 116# Buff out the __NODEFAULT attributes. 117# 118set name=pkg.fmri value=pkg:/driver/network/ofk@0.5.11,5.11-0.155.53 119set name=pkg.description value="The Solaris Open Fabrics kernel components package provides support of the OFED defined kernel RDMA KPI, as well as providing kernel modules to facilitate OFED userland libraries." 120set name=pkg.summary value="Solaris Open Fabrics kernel components" 121set name=info.classification value=org.opensolaris.category.2008:System/Hardware 122set name=variant.arch value=i386 123dir group=sys mode=0755 owner=root path=kernel variant.opensolaris.zone=global 124dir group=sys mode=0755 owner=root path=kernel/drv variant.opensolaris.zone=global 125dir group=sys mode=0755 owner=root path=kernel/drv/amd64 variant.opensolaris.zone=global 126dir group=sys mode=0755 owner=root path=kernel/misc variant.opensolaris.zone=global 127dir group=sys mode=0755 owner=root path=kernel/misc/amd64 variant.opensolaris.zone=global 128driver name=sol_ucma perms="* 0666 root sys" 129driver name=sol_umad perms="* 0666 root sys" 130driver name=sol_uverbs perms="* 0666 root sys" 131file NOHASH group=sys mode=0755 owner=root path=kernel/drv/amd64/sol_ucma reboot-needed=true variant.opensolaris.zone=global 132file NOHASH group=sys mode=0755 owner=root path=kernel/drv/amd64/sol_umad reboot-needed=true variant.opensolaris.zone=global 133file NOHASH group=sys mode=0755 owner=root path=kernel/drv/amd64/sol_uverbs reboot-needed=true variant.opensolaris.zone=global 134file NOHASH group=sys mode=0644 owner=root path=kernel/drv/sol_ucma.conf variant.opensolaris.zone=global 135file NOHASH group=sys mode=0644 owner=root path=kernel/drv/sol_umad.conf variant.opensolaris.zone=global 136file NOHASH group=sys mode=0644 owner=root path=kernel/drv/sol_uverbs.conf variant.opensolaris.zone=global 137file NOHASH group=sys mode=0755 owner=root path=kernel/misc/amd64/sol_ofs reboot-needed=true variant.opensolaris.zone=global 138license cr_Sun license=cr_Sun 139license lic_CDDL license=lic_CDDL 140license usr/src/uts/common/io/ib/clients/of/THIRDPARTYLICENSE license=usr/src/uts/common/io/ib/clients/of/THIRDPARTYLICENSE 141# 142# CDDL HEADER START 143# 144# The contents of this file are subject to the terms of the 145# Common Development and Distribution License (the "License"). 146# You may not use this file except in compliance with the License. 147# 148# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 149# or http://www.opensolaris.org/os/licensing. 150# See the License for the specific language governing permissions 151# and limitations under the License. 152# 153# When distributing Covered Code, include this CDDL HEADER in each 154# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 155# If applicable, add the following below this CDDL HEADER, with the 156# fields enclosed by brackets "[]" replaced with your own identifying 157# information: Portions Copyright [yyyy] [name of copyright owner] 158# 159# CDDL HEADER END 160# 161 162# 163# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 164# 165 166# 167# These actions represent settings which should appear in every package. 168# 169 170# 171# Name the consolidation this package came from. 172# 173set name=org.opensolaris.consolidation value=osnet 174 175# 176# Indicate that the package was published in a zones aware 177# fashion. 178# 179set name=variant.opensolaris.zone value=global value=nonglobal 180# 181# CDDL HEADER START 182# 183# The contents of this file are subject to the terms of the 184# Common Development and Distribution License (the "License"). 185# You may not use this file except in compliance with the License. 186# 187# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 188# or http://www.opensolaris.org/os/licensing. 189# See the License for the specific language governing permissions 190# and limitations under the License. 191# 192# When distributing Covered Code, include this CDDL HEADER in each 193# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 194# If applicable, add the following below this CDDL HEADER, with the 195# fields enclosed by brackets "[]" replaced with your own identifying 196# information: Portions Copyright [yyyy] [name of copyright owner] 197# 198# CDDL HEADER END 199# 200 201# 202# Copyright 2010 Sun Microsystems, Inc. All rights reserved. 203# Use is subject to license terms. 204# 205 206# 207# Only publish packages for the currently specified architecture 208# 209# This is somewhat nonintuitive. In English: 210# 211# For any action of type "set", 212# if the "name" property matches the regex "variant.arch", 213# and *every* occurrence of the "value" property does not match 214# $ARCH, then don't publish it. 215# 216# ...in other words, if *any* occurrence of "value" matches i386, 217# then the negative lookahead assertion in the regex will fail, and we 218# won't abort based on the action. 219# 220 221# 222# Catch don't-publish settings from manifest-embedded transforms 223# 224# 225# CDDL HEADER START 226# 227# The contents of this file are subject to the terms of the 228# Common Development and Distribution License (the "License"). 229# You may not use this file except in compliance with the License. 230# 231# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 232# or http://www.opensolaris.org/os/licensing. 233# See the License for the specific language governing permissions 234# and limitations under the License. 235# 236# When distributing Covered Code, include this CDDL HEADER in each 237# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 238# If applicable, add the following below this CDDL HEADER, with the 239# fields enclosed by brackets "[]" replaced with your own identifying 240# information: Portions Copyright [yyyy] [name of copyright owner] 241# 242# CDDL HEADER END 243# 244 245# 246# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 247# 248 249# 250# This file and its contents are supplied under the terms of the 251# Common Development and Distribution License ("CDDL"), version 1.0. 252# You may only use this file in accordance with the terms of version 253# 1.0 of the CDDL. 254# 255# A full copy of the text of the CDDL should have accompanied this 256# source. A copy of the CDDL is also available via the Internet 257# at http://www.illumos.org/license/CDDL. 258# 259 260# Copyright 2011, Richard Lowe 261 262# Manual pages are documentation, and more specifically 'man' documentation 263# 264# CDDL HEADER START 265# 266# The contents of this file are subject to the terms of the 267# Common Development and Distribution License (the "License"). 268# You may not use this file except in compliance with the License. 269# 270# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 271# or http://www.opensolaris.org/os/licensing. 272# See the License for the specific language governing permissions 273# and limitations under the License. 274# 275# When distributing Covered Code, include this CDDL HEADER in each 276# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 277# If applicable, add the following below this CDDL HEADER, with the 278# fields enclosed by brackets "[]" replaced with your own identifying 279# information: Portions Copyright [yyyy] [name of copyright owner] 280# 281# CDDL HEADER END 282# 283 284# 285# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 286# Copyright 2011, Richard Lowe 287# 288 289# 290# For kernel/drv, set .conf files to mode 0644. Assume all other 291# files there are drivers, and give them mode 0755 and reboot-needed. 292# 293# The (?<!r) construct in the reboot-needed transform is a negative 294# lookbehind assertion: it says "only match this regex if the 295# previously matched text does NOT match regex r." So it will match 296# all files in the various kernel trees, except for .conf files. 297# 298 299 300# 301# Non-global zones should not have content in kernel, usr/kernel (and 302# other kernel dirs) or in boot/. 303# 304 305 306# 307# shared objects should generally have mode 0755 308# 309 310# 311# Catch some of the collections of largely read-only files 312# 313 314 315# 316# For what's left, go with root:bin 0644, +x for directories 317# 318 319# 320# Default values for legacy actions 321# 322# 323# CDDL HEADER START 324# 325# The contents of this file are subject to the terms of the 326# Common Development and Distribution License (the "License"). 327# You may not use this file except in compliance with the License. 328# 329# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 330# or http://www.opensolaris.org/os/licensing. 331# See the License for the specific language governing permissions 332# and limitations under the License. 333# 334# When distributing Covered Code, include this CDDL HEADER in each 335# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 336# If applicable, add the following below this CDDL HEADER, with the 337# fields enclosed by brackets "[]" replaced with your own identifying 338# information: Portions Copyright [yyyy] [name of copyright owner] 339# 340# CDDL HEADER END 341# 342 343# 344# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 345# 346 347# 348# Pull out the license paths for staging in the proto area. Ignore 349# those with no path separators, as that indicates a file kept in 350# $SRC/pkg/license_files, rather than alongside the associated source. 351# 352 353# 354# Ordering is important here, and the last line wins. 355# 356# The default of "current" is provided by the calling environment, 357# rather than a print operation. 358# 359depend fmri=consolidation/osnet/osnet-incorporation type=require 360depend fmri=__TBD pkg.debug.depend.file=ibcm pkg.debug.depend.path=kernel/misc/amd64 pkg.debug.depend.path=platform/i86hvm/kernel/misc/amd64 pkg.debug.depend.path=platform/i86pc/kernel/misc/amd64 pkg.debug.depend.path=platform/i86xpv/kernel/misc/amd64 pkg.debug.depend.path=usr/kernel/misc/amd64 pkg.debug.depend.reason=kernel/misc/amd64/sol_ofs pkg.debug.depend.type=elf type=require variant.opensolaris.zone=global 361depend fmri=__TBD pkg.debug.depend.file=ibmf pkg.debug.depend.path=kernel/misc/amd64 pkg.debug.depend.path=platform/i86hvm/kernel/misc/amd64 pkg.debug.depend.path=platform/i86pc/kernel/misc/amd64 pkg.debug.depend.path=platform/i86xpv/kernel/misc/amd64 pkg.debug.depend.path=usr/kernel/misc/amd64 pkg.debug.depend.reason=kernel/drv/amd64/sol_umad pkg.debug.depend.type=elf type=require variant.opensolaris.zone=global 362depend fmri=__TBD pkg.debug.depend.file=ibtl pkg.debug.depend.path=kernel/misc/amd64 pkg.debug.depend.path=platform/i86hvm/kernel/misc/amd64 pkg.debug.depend.path=platform/i86pc/kernel/misc/amd64 pkg.debug.depend.path=platform/i86xpv/kernel/misc/amd64 pkg.debug.depend.path=usr/kernel/misc/amd64 pkg.debug.depend.reason=kernel/drv/amd64/sol_umad pkg.debug.depend.type=elf type=require variant.opensolaris.zone=global 363depend fmri=__TBD pkg.debug.depend.file=ibtl pkg.debug.depend.path=kernel/misc/amd64 pkg.debug.depend.path=platform/i86hvm/kernel/misc/amd64 pkg.debug.depend.path=platform/i86pc/kernel/misc/amd64 pkg.debug.depend.path=platform/i86xpv/kernel/misc/amd64 pkg.debug.depend.path=usr/kernel/misc/amd64 pkg.debug.depend.reason=kernel/drv/amd64/sol_uverbs pkg.debug.depend.type=elf type=require variant.opensolaris.zone=global 364depend fmri=__TBD pkg.debug.depend.file=ibtl pkg.debug.depend.path=kernel/misc/amd64 pkg.debug.depend.path=platform/i86hvm/kernel/misc/amd64 pkg.debug.depend.path=platform/i86pc/kernel/misc/amd64 pkg.debug.depend.path=platform/i86xpv/kernel/misc/amd64 pkg.debug.depend.path=usr/kernel/misc/amd64 pkg.debug.depend.reason=kernel/misc/amd64/sol_ofs pkg.debug.depend.type=elf type=require variant.opensolaris.zone=global 365