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# Copyright 2012 Nexenta Systems, Inc. All rights reserved. 25# Copyright 2014 Gary Mills 26# Copyright 2020 OmniOS Community Edition (OmniOSce) Association. 27# 28 29# 30# The default for payload-bearing actions in this package is to appear in the 31# global zone only. See the include file for greater detail, as well as 32# information about overriding the defaults. 33# 34# 35# CDDL HEADER START 36# 37# The contents of this file are subject to the terms of the 38# Common Development and Distribution License (the "License"). 39# You may not use this file except in compliance with the License. 40# 41# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 42# or http://www.opensolaris.org/os/licensing. 43# See the License for the specific language governing permissions 44# and limitations under the License. 45# 46# When distributing Covered Code, include this CDDL HEADER in each 47# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 48# If applicable, add the following below this CDDL HEADER, with the 49# fields enclosed by brackets "[]" replaced with your own identifying 50# information: Portions Copyright [yyyy] [name of copyright owner] 51# 52# CDDL HEADER END 53# 54 55# 56# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 57# 58 59# 60# For packagers: 61# 62# This ruleset is useful for "system" components-- ones which are expected 63# to appear primarily in the global zone, but which may have some small 64# pieces (man pages, header files) which may need to appear in all zones. 65# 66# The current rules specify that all payload-bearing actions (file, 67# dir, hardlink, link) should appear *only* in the global zone, with 68# the following exceptions: 69# 70# - man pages appear in all zones 71# - header files appear in all zones 72# - mdb(1) modules appear in all zones 73# 74# You may well have other actions which you wish to appear in all zones. 75# An example would be an administrative utility for a driver which has 76# been virtualized to work within zones. For those actions you wish to 77# appear in all zones, add the following attribute to your action. 78# 79# variant.opensolaris.zone=__NODEFAULT 80# 81# You DO NOT need to specify __NODEFAULT for man pages, headers, or 82# mdb modules, as those are covered by the automatic rules below. 83# 84# Note: When you specify variant.opensolaris.zone=__NODEFAULT, the 85# net effect is that *no* variant.opensolaris.zone attribute will 86# appear in the post-processed manifest. 87# 88 89# 90# For packaging nerds: 91# 92# We have a problem to solve here: To make an action appear in all zones, 93# it should have *no* variant.opensolaris.zone attribute. So it's a bit 94# more complicated to use "default". 95# 96# Here's what we do: we use "default" to set all payload bearing actions 97# which have no variant.opensolaris.zone attribute to be 98# variant.opensolaris.zone=global. For those actions which need to appear 99# in all zones, the packager must specify 100# variant.opensolaris.zone=__NODEFAULT. Additionally we have some rules 101# which set __NODEFAULT for a few classes of well known things, like man 102# pages and headers. 103# 104# We then go through and clean up all of the __NODEFAULTed attributes by 105# simply deleting them. 106# 107 108# Man pages should appear in all zones. 109 110# Headers should appear in all zones. 111 112# MDB modules should appear in all zones, as one might debug a crash dump 113# in a zone. 114 115# Everything else is global zone only unless the user overrides 116# action-by-action with __NODEFAULT. 117 118# 119# Buff out the __NODEFAULT attributes. 120# 121set name=pkg.fmri value=pkg:/system/kernel/platform@0.5.11,5.11-0.155.53 122set name=pkg.description value="core kernel software for a specific hardware platform group" 123set name=pkg.summary value="Core Solaris Kernel Architecture" 124set name=info.classification value=org.opensolaris.category.2008:System/Core 125set name=variant.arch value=i386 126dir group=sys mode=0755 owner=root path=platform variant.opensolaris.zone=global 127#dir path=platform/SUNW,A70 group=sys 128#dir path=platform/SUNW,A70/kernel group=sys 129#dir path=platform/SUNW,A70/kernel/crypto group=sys 130#dir path=platform/SUNW,A70/kernel/crypto/amd64 group=sys 131#dir path=platform/SUNW,A70/kernel/drv group=sys 132#dir path=platform/SUNW,A70/kernel/misc group=sys 133#dir path=platform/SUNW,A70/kernel/misc/amd64 group=sys 134#dir path=platform/SUNW,Netra-CP2300 group=sys 135#dir path=platform/SUNW,Netra-CP2300/kernel group=sys 136#dir path=platform/SUNW,Netra-CP2300/kernel/misc group=sys 137#dir path=platform/SUNW,Netra-CP2300/kernel/misc/amd64 group=sys 138#dir path=platform/SUNW,Netra-CP2300/kernel/tod group=sys 139#dir path=platform/SUNW,Netra-CP2300/kernel/tod/amd64 group=sys 140#dir path=platform/SUNW,Netra-CP3010 group=sys 141#dir path=platform/SUNW,Netra-CP3010/kernel group=sys 142#dir path=platform/SUNW,Netra-CP3010/kernel/crypto group=sys 143#dir path=platform/SUNW,Netra-CP3010/kernel/crypto/amd64 group=sys 144#dir path=platform/SUNW,Netra-CP3010/kernel/misc group=sys 145#dir path=platform/SUNW,Netra-CP3010/kernel/misc/amd64 group=sys 146#dir path=platform/SUNW,Netra-T12 group=sys 147#dir path=platform/SUNW,Netra-T12/kernel group=sys 148#dir path=platform/SUNW,Netra-T12/kernel/crypto group=sys 149#dir path=platform/SUNW,Netra-T12/kernel/crypto/amd64 group=sys 150#dir path=platform/SUNW,Netra-T12/kernel/drv group=sys 151#dir path=platform/SUNW,Netra-T12/kernel/drv/amd64 group=sys 152#dir path=platform/SUNW,Netra-T12/kernel/misc group=sys 153#dir path=platform/SUNW,Netra-T12/kernel/misc/amd64 group=sys 154#dir path=platform/SUNW,Netra-T4 group=sys 155#dir path=platform/SUNW,Netra-T4/kernel group=sys 156#dir path=platform/SUNW,Netra-T4/kernel/crypto group=sys 157#dir path=platform/SUNW,Netra-T4/kernel/crypto/amd64 group=sys 158#dir path=platform/SUNW,Netra-T4/kernel/drv group=sys 159#dir path=platform/SUNW,Netra-T4/kernel/drv/amd64 group=sys 160#dir path=platform/SUNW,Netra-T4/kernel/misc group=sys 161#dir path=platform/SUNW,Netra-T4/kernel/misc/amd64 group=sys 162#dir path=platform/SUNW,SPARC-Enterprise group=sys 163#dir path=platform/SUNW,SPARC-Enterprise/kernel group=sys 164#dir path=platform/SUNW,SPARC-Enterprise/kernel/amd64 group=sys 165#dir path=platform/SUNW,SPARC-Enterprise/kernel/cpu group=sys 166#dir path=platform/SUNW,SPARC-Enterprise/kernel/cpu/amd64 group=sys 167#dir path=platform/SUNW,SPARC-Enterprise/kernel/crypto group=sys 168#dir path=platform/SUNW,SPARC-Enterprise/kernel/crypto/amd64 group=sys 169#dir path=platform/SUNW,SPARC-Enterprise/kernel/drv group=sys 170#dir path=platform/SUNW,SPARC-Enterprise/kernel/drv/amd64 group=sys 171#dir path=platform/SUNW,SPARC-Enterprise/kernel/misc group=sys 172#dir path=platform/SUNW,SPARC-Enterprise/kernel/misc/amd64 group=sys 173#dir path=platform/SUNW,Serverblade1 group=sys 174#dir path=platform/SUNW,Serverblade1/kernel group=sys 175#dir path=platform/SUNW,Serverblade1/kernel/drv group=sys 176#dir path=platform/SUNW,Serverblade1/kernel/drv/amd64 group=sys 177#dir path=platform/SUNW,Serverblade1/kernel/misc group=sys 178#dir path=platform/SUNW,Serverblade1/kernel/misc/amd64 group=sys 179#dir path=platform/SUNW,Sun-Blade-100 group=sys 180#dir path=platform/SUNW,Sun-Blade-100/kernel group=sys 181#dir path=platform/SUNW,Sun-Blade-100/kernel/drv group=sys 182#dir path=platform/SUNW,Sun-Blade-100/kernel/drv/amd64 group=sys 183#dir path=platform/SUNW,Sun-Blade-100/kernel/misc group=sys 184#dir path=platform/SUNW,Sun-Blade-100/kernel/misc/amd64 group=sys 185#dir path=platform/SUNW,Sun-Blade-1000 group=sys 186#dir path=platform/SUNW,Sun-Blade-1000/kernel group=sys 187#dir path=platform/SUNW,Sun-Blade-1000/kernel/crypto group=sys 188#dir path=platform/SUNW,Sun-Blade-1000/kernel/crypto/amd64 group=sys 189#dir path=platform/SUNW,Sun-Blade-1000/kernel/drv group=sys 190#dir path=platform/SUNW,Sun-Blade-1000/kernel/drv/amd64 group=sys 191#dir path=platform/SUNW,Sun-Blade-1000/kernel/misc group=sys 192#dir path=platform/SUNW,Sun-Blade-1000/kernel/misc/amd64 group=sys 193#dir path=platform/SUNW,Sun-Blade-1500 group=sys 194#dir path=platform/SUNW,Sun-Blade-1500/kernel group=sys 195#dir path=platform/SUNW,Sun-Blade-1500/kernel/crypto group=sys 196#dir path=platform/SUNW,Sun-Blade-1500/kernel/crypto/amd64 group=sys 197#dir path=platform/SUNW,Sun-Blade-1500/kernel/drv group=sys 198#dir path=platform/SUNW,Sun-Blade-1500/kernel/misc group=sys 199#dir path=platform/SUNW,Sun-Blade-1500/kernel/misc/amd64 group=sys 200#dir path=platform/SUNW,Sun-Blade-2500 group=sys 201#dir path=platform/SUNW,Sun-Blade-2500/kernel group=sys 202#dir path=platform/SUNW,Sun-Blade-2500/kernel/crypto group=sys 203#dir path=platform/SUNW,Sun-Blade-2500/kernel/crypto/amd64 group=sys 204#dir path=platform/SUNW,Sun-Blade-2500/kernel/drv group=sys 205#dir path=platform/SUNW,Sun-Blade-2500/kernel/misc group=sys 206#dir path=platform/SUNW,Sun-Blade-2500/kernel/misc/amd64 group=sys 207#dir path=platform/SUNW,Sun-Fire group=sys 208#dir path=platform/SUNW,Sun-Fire-15000 group=sys 209#dir path=platform/SUNW,Sun-Fire-15000/kernel group=sys 210#dir path=platform/SUNW,Sun-Fire-15000/kernel/amd64 group=sys 211#dir path=platform/SUNW,Sun-Fire-15000/kernel/cpu group=sys 212#dir path=platform/SUNW,Sun-Fire-15000/kernel/cpu/amd64 group=sys 213#dir path=platform/SUNW,Sun-Fire-15000/kernel/crypto group=sys 214#dir path=platform/SUNW,Sun-Fire-15000/kernel/crypto/amd64 group=sys 215#dir path=platform/SUNW,Sun-Fire-15000/kernel/drv group=sys 216#dir path=platform/SUNW,Sun-Fire-15000/kernel/drv/amd64 group=sys 217#dir path=platform/SUNW,Sun-Fire-15000/kernel/misc group=sys 218#dir path=platform/SUNW,Sun-Fire-15000/kernel/misc/amd64 group=sys 219#dir path=platform/SUNW,Sun-Fire-280R group=sys 220#dir path=platform/SUNW,Sun-Fire-280R/kernel group=sys 221#dir path=platform/SUNW,Sun-Fire-280R/kernel/crypto group=sys 222#dir path=platform/SUNW,Sun-Fire-280R/kernel/crypto/amd64 group=sys 223#dir path=platform/SUNW,Sun-Fire-280R/kernel/drv group=sys 224#dir path=platform/SUNW,Sun-Fire-280R/kernel/drv/amd64 group=sys 225#dir path=platform/SUNW,Sun-Fire-280R/kernel/misc group=sys 226#dir path=platform/SUNW,Sun-Fire-280R/kernel/misc/amd64 group=sys 227#dir path=platform/SUNW,Sun-Fire-480R group=sys 228#dir path=platform/SUNW,Sun-Fire-480R/kernel group=sys 229#dir path=platform/SUNW,Sun-Fire-480R/kernel/crypto group=sys 230#dir path=platform/SUNW,Sun-Fire-480R/kernel/crypto/amd64 group=sys 231#dir path=platform/SUNW,Sun-Fire-480R/kernel/misc group=sys 232#dir path=platform/SUNW,Sun-Fire-480R/kernel/misc/amd64 group=sys 233#dir path=platform/SUNW,Sun-Fire-880 group=sys 234#dir path=platform/SUNW,Sun-Fire-880/kernel group=sys 235#dir path=platform/SUNW,Sun-Fire-880/kernel/crypto group=sys 236#dir path=platform/SUNW,Sun-Fire-880/kernel/crypto/amd64 group=sys 237#dir path=platform/SUNW,Sun-Fire-880/kernel/drv group=sys 238#dir path=platform/SUNW,Sun-Fire-880/kernel/drv/amd64 group=sys 239#dir path=platform/SUNW,Sun-Fire-880/kernel/misc group=sys 240#dir path=platform/SUNW,Sun-Fire-880/kernel/misc/amd64 group=sys 241#dir path=platform/SUNW,Sun-Fire-T200 group=sys 242#dir path=platform/SUNW,Sun-Fire-T200/kernel group=sys 243#dir path=platform/SUNW,Sun-Fire-T200/kernel/drv group=sys 244#dir path=platform/SUNW,Sun-Fire-T200/kernel/drv/amd64 group=sys 245#dir path=platform/SUNW,Sun-Fire-V215 group=sys 246#dir path=platform/SUNW,Sun-Fire-V215/kernel group=sys 247#dir path=platform/SUNW,Sun-Fire-V215/kernel/crypto group=sys 248#dir path=platform/SUNW,Sun-Fire-V215/kernel/crypto/amd64 group=sys 249#dir path=platform/SUNW,Sun-Fire-V215/kernel/drv group=sys 250#dir path=platform/SUNW,Sun-Fire-V215/kernel/misc group=sys 251#dir path=platform/SUNW,Sun-Fire-V215/kernel/misc/amd64 group=sys 252#dir path=platform/SUNW,Sun-Fire-V240 group=sys 253#dir path=platform/SUNW,Sun-Fire-V240/kernel group=sys 254#dir path=platform/SUNW,Sun-Fire-V240/kernel/crypto group=sys 255#dir path=platform/SUNW,Sun-Fire-V240/kernel/crypto/amd64 group=sys 256#dir path=platform/SUNW,Sun-Fire-V240/kernel/drv group=sys 257#dir path=platform/SUNW,Sun-Fire-V240/kernel/drv/amd64 group=sys 258#dir path=platform/SUNW,Sun-Fire-V240/kernel/misc group=sys 259#dir path=platform/SUNW,Sun-Fire-V240/kernel/misc/amd64 group=sys 260#dir path=platform/SUNW,Sun-Fire-V250 group=sys 261#dir path=platform/SUNW,Sun-Fire-V250/kernel group=sys 262#dir path=platform/SUNW,Sun-Fire-V250/kernel/crypto group=sys 263#dir path=platform/SUNW,Sun-Fire-V250/kernel/crypto/amd64 group=sys 264#dir path=platform/SUNW,Sun-Fire-V250/kernel/misc group=sys 265#dir path=platform/SUNW,Sun-Fire-V250/kernel/misc/amd64 group=sys 266#dir path=platform/SUNW,Sun-Fire-V440 group=sys 267#dir path=platform/SUNW,Sun-Fire-V440/kernel group=sys 268#dir path=platform/SUNW,Sun-Fire-V440/kernel/crypto group=sys 269#dir path=platform/SUNW,Sun-Fire-V440/kernel/crypto/amd64 group=sys 270#dir path=platform/SUNW,Sun-Fire-V440/kernel/drv group=sys 271#dir path=platform/SUNW,Sun-Fire-V440/kernel/drv/amd64 group=sys 272#dir path=platform/SUNW,Sun-Fire-V440/kernel/misc group=sys 273#dir path=platform/SUNW,Sun-Fire-V440/kernel/misc/amd64 group=sys 274#dir path=platform/SUNW,Sun-Fire-V445 group=sys 275#dir path=platform/SUNW,Sun-Fire-V445/kernel group=sys 276#dir path=platform/SUNW,Sun-Fire-V445/kernel/crypto group=sys 277#dir path=platform/SUNW,Sun-Fire-V445/kernel/crypto/amd64 group=sys 278#dir path=platform/SUNW,Sun-Fire-V445/kernel/misc group=sys 279#dir path=platform/SUNW,Sun-Fire-V445/kernel/misc/amd64 group=sys 280#dir path=platform/SUNW,Sun-Fire/kernel group=sys 281#dir path=platform/SUNW,Sun-Fire/kernel/amd64 group=sys 282#dir path=platform/SUNW,Sun-Fire/kernel/cpu group=sys 283#dir path=platform/SUNW,Sun-Fire/kernel/cpu/amd64 group=sys 284#dir path=platform/SUNW,Sun-Fire/kernel/crypto group=sys 285#dir path=platform/SUNW,Sun-Fire/kernel/crypto/amd64 group=sys 286#dir path=platform/SUNW,Sun-Fire/kernel/drv group=sys 287#dir path=platform/SUNW,Sun-Fire/kernel/drv/amd64 group=sys 288#dir path=platform/SUNW,Sun-Fire/kernel/misc group=sys 289#dir path=platform/SUNW,Sun-Fire/kernel/misc/amd64 group=sys 290#dir path=platform/SUNW,Ultra-250 group=sys 291#dir path=platform/SUNW,Ultra-250/kernel group=sys 292#dir path=platform/SUNW,Ultra-250/kernel/drv group=sys 293#dir path=platform/SUNW,Ultra-250/kernel/drv/amd64 group=sys 294#dir path=platform/SUNW,Ultra-250/kernel/misc group=sys 295#dir path=platform/SUNW,Ultra-250/kernel/misc/amd64 group=sys 296#dir path=platform/SUNW,Ultra-4 group=sys 297#dir path=platform/SUNW,Ultra-4/kernel group=sys 298#dir path=platform/SUNW,Ultra-4/kernel/drv group=sys 299#dir path=platform/SUNW,Ultra-4/kernel/drv/amd64 group=sys 300#dir path=platform/SUNW,Ultra-4/kernel/misc group=sys 301#dir path=platform/SUNW,Ultra-4/kernel/misc/amd64 group=sys 302#dir path=platform/SUNW,Ultra-5_10 group=sys 303#dir path=platform/SUNW,Ultra-5_10/kernel group=sys 304#dir path=platform/SUNW,Ultra-5_10/kernel/misc group=sys 305#dir path=platform/SUNW,Ultra-5_10/kernel/misc/amd64 group=sys 306#dir path=platform/SUNW,Ultra-80 group=sys 307#dir path=platform/SUNW,Ultra-80/kernel group=sys 308#dir path=platform/SUNW,Ultra-80/kernel/misc group=sys 309#dir path=platform/SUNW,Ultra-80/kernel/misc/amd64 group=sys 310#dir path=platform/SUNW,Ultra-Enterprise group=sys 311#dir path=platform/SUNW,Ultra-Enterprise-10000 group=sys 312#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel group=sys 313#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel/amd64 group=sys 314#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel/cpu group=sys 315#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel/cpu/amd64 group=sys 316#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel/drv group=sys 317#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel/drv/amd64 group=sys 318#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel/misc group=sys 319#dir path=platform/SUNW,Ultra-Enterprise-10000/kernel/misc/amd64 group=sys 320#dir path=platform/SUNW,Ultra-Enterprise/kernel group=sys 321#dir path=platform/SUNW,Ultra-Enterprise/kernel/drv group=sys 322#dir path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64 group=sys 323#dir path=platform/SUNW,Ultra-Enterprise/kernel/misc group=sys 324#dir path=platform/SUNW,Ultra-Enterprise/kernel/misc/amd64 group=sys 325#dir path=platform/SUNW,UltraAX-i2 group=sys 326#dir path=platform/SUNW,UltraAX-i2/kernel group=sys 327#dir path=platform/SUNW,UltraAX-i2/kernel/misc group=sys 328#dir path=platform/SUNW,UltraAX-i2/kernel/misc/amd64 group=sys 329dir group=sys mode=0755 owner=root path=platform/i86pc variant.opensolaris.zone=global 330dir group=sys mode=0755 owner=root path=platform/i86pc/amd64 variant.opensolaris.zone=global 331dir group=sys mode=0755 owner=root path=platform/i86pc/kernel variant.opensolaris.zone=global 332dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/amd64 variant.opensolaris.zone=global 333dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/cpu variant.opensolaris.zone=global 334dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/cpu/amd64 variant.opensolaris.zone=global 335dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/dacf variant.opensolaris.zone=global 336dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/dacf/amd64 variant.opensolaris.zone=global 337dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv variant.opensolaris.zone=global 338dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64 variant.opensolaris.zone=global 339dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/mach variant.opensolaris.zone=global 340dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/mach/amd64 variant.opensolaris.zone=global 341dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/misc variant.opensolaris.zone=global 342dir group=sys mode=0755 owner=root path=platform/i86pc/kernel/misc/amd64 variant.opensolaris.zone=global 343dir group=sys mode=0755 owner=root path=platform/i86pc/ucode variant.opensolaris.zone=global 344dir group=sys mode=0755 owner=root path=platform/i86xpv variant.opensolaris.zone=global 345dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel variant.opensolaris.zone=global 346dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/amd64 variant.opensolaris.zone=global 347dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/cpu variant.opensolaris.zone=global 348dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/cpu/amd64 variant.opensolaris.zone=global 349dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/dacf variant.opensolaris.zone=global 350dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/dacf/amd64 variant.opensolaris.zone=global 351dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv variant.opensolaris.zone=global 352dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64 variant.opensolaris.zone=global 353dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/mach variant.opensolaris.zone=global 354dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/mach/amd64 variant.opensolaris.zone=global 355dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/misc variant.opensolaris.zone=global 356dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/misc/amd64 variant.opensolaris.zone=global 357dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/tod variant.opensolaris.zone=global 358dir group=sys mode=0755 owner=root path=platform/i86xpv/kernel/tod/amd64 variant.opensolaris.zone=global 359#dir path=platform/sun4u group=sys 360#dir path=platform/sun4u-us3 group=sys 361#dir path=platform/sun4u-us3/kernel group=sys 362#dir path=platform/sun4u-us3/kernel/crypto group=sys 363#dir path=platform/sun4u-us3/kernel/crypto/amd64 group=sys 364#dir path=platform/sun4u/kernel group=sys 365#dir path=platform/sun4u/kernel/amd64 group=sys 366#dir path=platform/sun4u/kernel/cpu group=sys 367#dir path=platform/sun4u/kernel/cpu/amd64 group=sys 368#dir path=platform/sun4u/kernel/crypto group=sys 369#dir path=platform/sun4u/kernel/crypto/amd64 group=sys 370#dir path=platform/sun4u/kernel/drv group=sys 371#dir path=platform/sun4u/kernel/drv/amd64 group=sys 372#dir path=platform/sun4u/kernel/misc group=sys 373#dir path=platform/sun4u/kernel/misc/amd64 group=sys 374#dir path=platform/sun4u/kernel/strmod group=sys 375#dir path=platform/sun4u/kernel/strmod/amd64 group=sys 376#dir path=platform/sun4u/kernel/tod group=sys 377#dir path=platform/sun4u/kernel/tod/amd64 group=sys 378#dir path=platform/sun4v group=sys 379#dir path=platform/sun4v/kernel group=sys 380#dir path=platform/sun4v/kernel/amd64 group=sys 381#dir path=platform/sun4v/kernel/cpu group=sys 382#dir path=platform/sun4v/kernel/cpu/amd64 group=sys 383#dir path=platform/sun4v/kernel/crypto group=sys 384#dir path=platform/sun4v/kernel/crypto/amd64 group=sys 385#dir path=platform/sun4v/kernel/drv group=sys 386#dir path=platform/sun4v/kernel/drv/amd64 group=sys 387#dir path=platform/sun4v/kernel/misc group=sys 388#dir path=platform/sun4v/kernel/misc/amd64 group=sys 389#dir path=platform/sun4v/kernel/sys group=sys 390#dir path=platform/sun4v/kernel/sys/amd64 group=sys 391#dir path=usr/share/man 392dir facet.doc.man=true group=bin mode=0755 owner=root path=usr/share/man/man4 393#dir path=usr/share/man/man7d 394#dir path=usr/share/man/man7m 395#driver name=ac 396driver alias=acpivirtnex name=acpinex 397driver name=acpippm 398#driver name=adm1026 alias=i2c-adm1026 399#driver name=adm1031 alias=i2c-adm1031 400driver alias=pci1002,5a23 alias=pci1022,11ff name=amd_iommu perms="* 0644 root sys" 401#driver name=axq alias=SUNW,axq 402driver name=balloon perms="* 0444 root sys" 403#driver name=bbc_beep alias=SUNW,bbc-beep 404#driver name=central 405driver alias=cpu name=cpudrv 406#driver name=ctsmc alias=nct-ds80ch11-smc 407#driver name=db21554 alias=pci108e,6300 alias=pci108e,6301 alias=pci108e,6302 alias=pci108e,6303 alias=pci108e,6310 alias=pci108e,6311 alias=pci108e,6312 alias=pci108e,6313 alias=pci108e,6320 alias=pci108e,6323 alias=pci108e,6330 alias=pci108e,6331 alias=pci108e,6332 alias=pci108e,6333 alias=pci108e,6340 alias=pci108e,6343 alias=pci108e,6350 alias=pci108e,6353 alias=pci108e,6722 alias=pciclass,060940 alias=pciclass,060980 408#driver name=dman perms="* 0600 root sys" 409driver name=domcaps perms="* 0444 root sys" 410#driver name=dr 411#driver name=ebus class=ebus alias=SUNW,ebus alias=SUNW,sun4v-ebus alias=isa alias=jbus-ebus 412#driver name=envctrl alias=SUNW,envctrl 413#driver name=envctrltwo alias=SUNW,envctrltwo perms="* 0644 root sys" policy="read_priv_set=sys_config write_priv_set=sys_config" 414#driver name=environ alias=environment 415#driver name=epic alias=SUNW,ebus-pic18lf65j10-env 416driver name=evtchn perms="* 0666 root sys" 417#driver name=fd perms="* 0666 root sys" alias=SUNW,fdtwo alias=fdthree alias=pnpALI,1533,0 418#driver name=fhc 419#driver name=glvc 420#driver name=gpio_87317 alias=ns87317-gpio perms="* 0600 root sys" 421#driver name=grbeep alias=SUNW,smbus-beep 422#driver name=grfans alias=SUNW,smbus-fan-control 423#driver name=grppm alias=SUNW,smbus-ppm 424#driver name=hpc3130 perms="* 0644 root sys" alias=FJSV,hpc3130 alias=i2c-hpc3130 425#driver name=i2bsc alias=SUNW,i2bsc 426#driver name=ics951601 alias=i2c-ics951601 427#driver name=iosram 428driver alias=pciclass,060100 class=sysbus name=isa 429#driver name=isadma 430#driver name=jbusppm alias=jbus-ppm 431#driver name=lm75 alias=i2c-lm75 perms="* 0644 root sys" 432#driver name=lombus alias=SUNW,lombus perms="* 0644 root sys" 433#driver name=ltc1427 alias=i2c-ltc1427 perms="* 0644 root sys" 434#driver name=lw8 perms="* 0644 root sys" 435#driver name=m1535ppm alias=ali1535d+-ppm 436#driver name=max1617 alias=i2c-max1617 437#driver name=mc-opl alias=FJSV,oplmc 438#driver name=mc-us3 alias=memory-controller 439#driver name=mc-us3i alias=SUNW,UltraSPARC-IIIi,mc 440#driver name=mdesc perms="* 0666 root sys" 441#driver name=mem_cache 442#driver name=mi2cv alias=fire-i2c 443#driver name=n2rng alias=SUNW,kt-rng alias=SUNW,n2-rng alias=SUNW,vf-rng 444driver alias=pciex_root_complex name=npe 445#driver name=ntwdt perms="* 0644 root sys" 446#driver name=oplmsu alias=FJSV,oplmsu 447#driver name=oplpanel alias=FJSV,panel 448#driver name=pca9556 alias=i2c-pca9555 alias=i2c-pca9556 449#driver name=pcf8574 perms="* 0644 root sys" alias=i2c-pcf8574 alias=nct-PHG,pcf8574 450#driver name=pcf8584 alias=SUNW,bbc-i2c alias=SUNW,i2c-pic16f747 alias=nct-PHG,pcf8584 451#driver name=pcf8591 perms="* 0644 root sys" alias=i2c-pcf8591 alias=nct-PHG,pcf8591 452driver class=pci name=pci 453#driver name=pcicmu alias=pci10cf,138f alias=pci10cf,1390 454#driver name=pcipsy class=pci alias=SUNW,pci alias=pci alias=pci108e,8000 alias=pci108e,a000 alias=pci108e,a001 alias=pciclass,060000 455#driver name=pcisch class=pci alias=pci108e,8001 alias=pci108e,8002 alias=pci108e,a801 456#driver name=pic16f747 alias=SUNW,ebus-pic16f747-env 457#driver name=pic16f819 alias=SUNW,i2c-auxfan1 458driver alias=SUNW,pit_beep name=pit_beep 459#driver name=pmc alias=SUNW,pmc 460#driver name=pmubus alias=pmu 461#driver name=pmugpio 462driver name=ppm 463driver name=privcmd perms="* 0666 root sys" 464#driver name=px alias=SUNW,sun4v-pci alias=pciex108e,80f0 alias=pciex108e,80f8 465#driver name=qcn alias=SUNW,sun4v-console 466#driver name=rmc_comm 467#driver name=rmcadm 468#driver name=rmclomv 469#driver name=rootnex alias=cpu-unit alias=io-unit alias=mem-unit 470driver name=rootnex 471#driver name=sbbc alias=pci108e,c416 472#driver name=sbus class=sbus 473#driver name=sbusmem 474#driver name=scfd alias=FJSV,scfc 475#driver name=schpc 476#driver name=schppm alias=gp2-ppm 477#driver name=seeprom alias=i2c-at24c64 alias=i2c-at34c02 478#driver name=sgcn 479#driver name=sgenv 480#driver name=sgfru 481#driver name=sghsc 482#driver name=sgsbbc 483#driver name=simba alias=pci108e,5000 class=pci 484#driver name=simmstat alias=simm-status 485#driver name=smbus alias=i2c-smbus 486#driver name=smbus_ara alias=i2c-smbus-ara 487#driver name=sram 488#driver name=ssc050 alias=i2c-ssc050 perms="* 0644 root sys" 489#driver name=ssc100 alias=i2c-ssc100 perms="* 0644 root sys" 490#driver name=ssm perms="* 0640 root sys" 491#driver name=su perms="[a-z] 0666 root sys" perms="[a-z],cu 0600 uucp uucp" perms="ssp 0600 root sys" perms="sspctl 0600 root sys" 492#driver name=sysctrl alias=clock-board 493#driver name=tda8444 alias=i2c-tda8444 494#driver name=tod perms="* 0600 root sys" 495#driver name=todds1287 alias=ds1287 496#driver name=todds1307 497#driver name=todds1337 alias=i2c-ds1337 498#driver name=trapstat perms="* 0600 root sys" 499#driver name=tsalarm 500#driver name=upa64s alias=SUNW,upa64s alias=jbus-upa64s 501#driver name=vnex alias=SUNW,sun4v-virtual-devices alias=SUNW,virtual-devices 502#driver name=xcalppm alias=ebus-ppm 503#driver name=xcalwd 504driver name=xdb 505driver name=xdf 506driver name=xenbus perms="* 0666 root sys" 507driver name=xencons 508driver alias=xnb,ioemu name=xnbe 509driver alias=xnb alias=xnb,SUNW_mac name=xnbo 510driver alias=xnb,netfront name=xnbu 511driver name=xnf 512driver name=xpvd 513driver name=xpvtap perms="* 0666 root sys" 514#driver name=zs perms="[a-z] 0666 root sys" perms="[a-z],cu 0600 uucp uucp" 515#driver name=zsh perms="* 0666 root sys" 516#file path=platform/SUNW,A70/kernel/drv/ppm.conf group=sys 517#file path=platform/SUNW,A70/kernel/misc/amd64/platmod group=sys mode=0755 518#file path=platform/SUNW,Netra-CP2300/kernel/misc/amd64/platmod group=sys mode=0755 519#file path=platform/SUNW,Netra-CP2300/kernel/tod/amd64/todds1307 group=sys mode=0755 520#file path=platform/SUNW,Netra-CP3010/kernel/misc/amd64/platmod group=sys mode=0755 521#file path=platform/SUNW,Netra-T12/kernel/drv/amd64/lw8 group=sys 522#file path=platform/SUNW,Netra-T12/kernel/drv/amd64/ntwdt group=sys 523#file path=platform/SUNW,Netra-T12/kernel/drv/amd64/sgenv group=sys 524#file path=platform/SUNW,Netra-T12/kernel/drv/amd64/sgfru group=sys 525#file path=platform/SUNW,Netra-T12/kernel/drv/lw8.conf group=sys 526#file path=platform/SUNW,Netra-T12/kernel/drv/ntwdt.conf group=sys 527#file path=platform/SUNW,Netra-T12/kernel/drv/sgenv.conf group=sys 528#file path=platform/SUNW,Netra-T12/kernel/drv/sgfru.conf group=sys 529#file path=platform/SUNW,Netra-T12/kernel/misc/amd64/platmod group=sys mode=0755 530#file path=platform/SUNW,Netra-T4/kernel/drv/amd64/lombus group=sys 531#file path=platform/SUNW,Netra-T4/kernel/drv/lombus.conf group=sys 532#file path=platform/SUNW,SPARC-Enterprise/kernel/amd64/unix group=sys mode=0755 533#file path=platform/SUNW,SPARC-Enterprise/kernel/cpu/amd64/FJSV,SPARC64-VI group=sys mode=0755 534#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/amd64/dr group=sys 535#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/amd64/mc-opl group=sys 536#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/amd64/oplmsu group=sys 537#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/amd64/oplpanel group=sys 538#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/amd64/pcicmu group=sys 539#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/amd64/scfd group=sys 540#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/dr.conf group=sys 541#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/mc-opl.conf group=sys 542#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/oplpanel.conf group=sys 543#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/options.conf group=sys 544#file path=platform/SUNW,SPARC-Enterprise/kernel/drv/scfd.conf group=sys 545#file path=platform/SUNW,SPARC-Enterprise/kernel/misc/amd64/drmach group=sys mode=0755 546#file path=platform/SUNW,SPARC-Enterprise/kernel/misc/amd64/platmod group=sys mode=0755 547#file path=platform/SUNW,Serverblade1/kernel/drv/amd64/bscbus group=sys 548#file path=platform/SUNW,Serverblade1/kernel/drv/amd64/bscv group=sys 549#file path=platform/SUNW,Serverblade1/kernel/drv/bscbus.conf group=sys 550#file path=platform/SUNW,Serverblade1/kernel/drv/bscv.conf group=sys 551#file path=platform/SUNW,Serverblade1/kernel/drv/options.conf group=sys 552#file path=platform/SUNW,Serverblade1/kernel/misc/amd64/platmod group=sys mode=0755 553#file path=platform/SUNW,Sun-Blade-100/kernel/drv/amd64/grfans group=sys 554#file path=platform/SUNW,Sun-Blade-100/kernel/drv/amd64/grppm group=sys 555#file path=platform/SUNW,Sun-Blade-100/kernel/drv/grppm.conf group=sys 556#file path=platform/SUNW,Sun-Blade-100/kernel/misc/amd64/platmod group=sys mode=0755 557#file path=platform/SUNW,Sun-Blade-1000/kernel/drv/amd64/xcalppm group=sys 558#file path=platform/SUNW,Sun-Blade-1000/kernel/drv/amd64/xcalwd group=sys 559#file path=platform/SUNW,Sun-Blade-1000/kernel/drv/xcalppm.conf group=sys 560#file path=platform/SUNW,Sun-Blade-1000/kernel/drv/xcalwd.conf group=sys 561#file path=platform/SUNW,Sun-Blade-1000/kernel/misc/amd64/platmod group=sys mode=0755 562#file path=platform/SUNW,Sun-Blade-1500/kernel/drv/ppm.conf group=sys 563#file path=platform/SUNW,Sun-Blade-1500/kernel/misc/amd64/platmod group=sys mode=0755 564#file path=platform/SUNW,Sun-Blade-2500/kernel/drv/ppm.conf group=sys 565#file path=platform/SUNW,Sun-Blade-2500/kernel/misc/amd64/platmod group=sys mode=0755 566#file path=platform/SUNW,Sun-Fire-15000/kernel/amd64/unix group=sys mode=0755 567#file path=platform/SUNW,Sun-Fire-15000/kernel/cpu/amd64/SUNW,UltraSPARC-III group=sys mode=0755 568#file path=platform/SUNW,Sun-Fire-15000/kernel/cpu/amd64/SUNW,UltraSPARC-III+ group=sys mode=0755 569#file path=platform/SUNW,Sun-Fire-15000/kernel/drv/amd64/axq group=sys 570#file path=platform/SUNW,Sun-Fire-15000/kernel/drv/amd64/dman group=sys 571#file path=platform/SUNW,Sun-Fire-15000/kernel/drv/amd64/iosram group=sys 572#file path=platform/SUNW,Sun-Fire-15000/kernel/drv/amd64/schpc group=sys 573#file path=platform/SUNW,Sun-Fire-15000/kernel/drv/dman.conf group=sys 574#file path=platform/SUNW,Sun-Fire-15000/kernel/drv/schpc.conf group=sys 575#file path=platform/SUNW,Sun-Fire-15000/kernel/misc/amd64/mboxsc group=sys mode=0755 576#file path=platform/SUNW,Sun-Fire-15000/kernel/misc/amd64/platmod group=sys mode=0755 577#file path=platform/SUNW,Sun-Fire-15000/kernel/misc/amd64/scosmb group=sys mode=0755 578#file path=platform/SUNW,Sun-Fire-280R/kernel/drv/amd64/pcf8574 group=sys 579#file path=platform/SUNW,Sun-Fire-280R/kernel/misc/amd64/platmod group=sys mode=0755 580#file path=platform/SUNW,Sun-Fire-480R/kernel/misc/amd64/platmod group=sys mode=0755 581#file path=platform/SUNW,Sun-Fire-880/kernel/drv/amd64/hpc3130 group=sys 582#file path=platform/SUNW,Sun-Fire-880/kernel/drv/hpc3130.conf group=sys 583#file path=platform/SUNW,Sun-Fire-880/kernel/misc/amd64/platmod group=sys mode=0755 584#file path=platform/SUNW,Sun-Fire-T200/kernel/drv/amd64/tsalarm group=sys 585#file path=platform/SUNW,Sun-Fire-T200/kernel/drv/tsalarm.conf group=sys 586#file path=platform/SUNW,Sun-Fire-V215/kernel/drv/su.conf group=sys 587#file path=platform/SUNW,Sun-Fire-V215/kernel/misc/amd64/platmod group=sys mode=0755 588#file path=platform/SUNW,Sun-Fire-V240/kernel/drv/amd64/ntwdt group=sys 589#file path=platform/SUNW,Sun-Fire-V240/kernel/drv/amd64/tsalarm group=sys 590#file path=platform/SUNW,Sun-Fire-V240/kernel/drv/ntwdt.conf group=sys 591#file path=platform/SUNW,Sun-Fire-V240/kernel/drv/tsalarm.conf group=sys 592#file path=platform/SUNW,Sun-Fire-V240/kernel/misc/amd64/platmod group=sys mode=0755 593#file path=platform/SUNW,Sun-Fire-V250/kernel/misc/amd64/platmod group=sys mode=0755 594#file path=platform/SUNW,Sun-Fire-V440/kernel/misc/amd64/platmod group=sys mode=0755 595#file path=platform/SUNW,Sun-Fire-V445/kernel/misc/amd64/platmod group=sys mode=0755 596#file path=platform/SUNW,Sun-Fire/kernel/amd64/unix group=sys mode=0755 597#file path=platform/SUNW,Sun-Fire/kernel/cpu/amd64/SUNW,UltraSPARC-III group=sys mode=0755 598#file path=platform/SUNW,Sun-Fire/kernel/cpu/amd64/SUNW,UltraSPARC-III+ group=sys mode=0755 599#file path=platform/SUNW,Sun-Fire/kernel/drv/amd64/sgcn group=sys 600#file path=platform/SUNW,Sun-Fire/kernel/drv/amd64/sghsc group=sys 601#file path=platform/SUNW,Sun-Fire/kernel/drv/amd64/sgsbbc group=sys 602#file path=platform/SUNW,Sun-Fire/kernel/drv/amd64/ssm group=sys 603#file path=platform/SUNW,Sun-Fire/kernel/drv/sghsc.conf group=sys 604#file path=platform/SUNW,Sun-Fire/kernel/misc/amd64/platmod group=sys mode=0755 605#file path=platform/SUNW,Sun-Fire/kernel/misc/amd64/sbdp group=sys mode=0755 606#file path=platform/SUNW,Ultra-250/kernel/drv/amd64/envctrltwo group=sys 607#file path=platform/SUNW,Ultra-250/kernel/misc/amd64/platmod group=sys mode=0755 608#file path=platform/SUNW,Ultra-4/kernel/drv/amd64/envctrl group=sys 609#file path=platform/SUNW,Ultra-4/kernel/misc/amd64/platmod group=sys mode=0755 610#file path=platform/SUNW,Ultra-5_10/kernel/misc/amd64/platmod group=sys mode=0755 611#file path=platform/SUNW,Ultra-Enterprise-10000/kernel/amd64/unix group=sys mode=0755 612#file path=platform/SUNW,Ultra-Enterprise-10000/kernel/cpu/amd64/SUNW,UltraSPARC-II group=sys mode=0755 613#file path=platform/SUNW,Ultra-Enterprise-10000/kernel/drv/amd64/pcipsy group=sys 614#file path=platform/SUNW,Ultra-Enterprise-10000/kernel/drv/amd64/rootnex group=sys 615#file path=platform/SUNW,Ultra-Enterprise-10000/kernel/drv/amd64/sbus group=sys 616#file path=platform/SUNW,Ultra-Enterprise-10000/kernel/misc/amd64/platmod group=sys mode=0755 617#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64/ac group=sys 618#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64/central group=sys 619#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64/environ group=sys 620#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64/fhc group=sys 621#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64/simmstat group=sys 622#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64/sram group=sys 623#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/amd64/sysctrl group=sys 624#file path=platform/SUNW,Ultra-Enterprise/kernel/drv/fhc.conf group=sys 625#file path=platform/SUNW,Ultra-Enterprise/kernel/misc/amd64/platmod group=sys mode=0755 626#file path=platform/SUNW,UltraAX-i2/kernel/misc/amd64/platmod group=sys mode=0755 627file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/amd64/unix reboot-needed=true variant.opensolaris.zone=global 628file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/cpu/amd64/cpu.generic reboot-needed=true variant.opensolaris.zone=global 629file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/cpu/amd64/cpu_ms.AuthenticAMD reboot-needed=true variant.opensolaris.zone=global 630file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/cpu/amd64/cpu_ms.AuthenticAMD.15 reboot-needed=true variant.opensolaris.zone=global 631file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/cpu/amd64/cpu_ms.GenuineIntel reboot-needed=true variant.opensolaris.zone=global 632file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/cpu/amd64/cpu_ms.GenuineIntel.6.46 reboot-needed=true variant.opensolaris.zone=global 633file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/dacf/amd64/consconfig_dacf reboot-needed=true variant.opensolaris.zone=global 634file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/acpinex reboot-needed=true variant.opensolaris.zone=global 635file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/acpippm reboot-needed=true variant.opensolaris.zone=global 636file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/amd_iommu reboot-needed=true variant.opensolaris.zone=global 637file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/cpudrv reboot-needed=true variant.opensolaris.zone=global 638file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/isa reboot-needed=true variant.opensolaris.zone=global 639file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/npe reboot-needed=true variant.opensolaris.zone=global 640file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/pci reboot-needed=true variant.opensolaris.zone=global 641file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/pit_beep reboot-needed=true variant.opensolaris.zone=global 642file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/ppm reboot-needed=true variant.opensolaris.zone=global 643file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/drv/amd64/rootnex reboot-needed=true variant.opensolaris.zone=global 644file NOHASH group=sys mode=0644 owner=root path=platform/i86pc/kernel/drv/acpippm.conf variant.opensolaris.zone=global 645file NOHASH group=sys mode=0644 owner=root path=platform/i86pc/kernel/drv/amd_iommu.conf variant.opensolaris.zone=global 646file NOHASH group=sys mode=0644 owner=root path=platform/i86pc/kernel/drv/pit_beep.conf variant.opensolaris.zone=global 647file NOHASH group=sys mode=0644 owner=root path=platform/i86pc/kernel/drv/ppm.conf variant.opensolaris.zone=global 648file NOHASH group=sys mode=0644 owner=root path=platform/i86pc/kernel/drv/rootnex.conf variant.opensolaris.zone=global 649file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/mach/amd64/apix reboot-needed=true variant.opensolaris.zone=global 650file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/mach/amd64/pcplusmp reboot-needed=true variant.opensolaris.zone=global 651file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/mach/amd64/uppc reboot-needed=true variant.opensolaris.zone=global 652file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/misc/amd64/acpidev reboot-needed=true variant.opensolaris.zone=global 653file NOHASH group=sys mode=0755 owner=root path=platform/i86pc/kernel/misc/amd64/gfx_private reboot-needed=true variant.opensolaris.zone=global 654file NOHASH group=sys mode=0444 original_name=SUNWcakr:platform/i86pc/ucode/amd-ucode.bin owner=root path=platform/i86pc/ucode/amd-ucode.bin preserve=true reboot-needed=true variant.opensolaris.zone=global 655file NOHASH group=sys mode=0444 original_name=SUNWcakr:platform/i86pc/ucode/intel-ucode.txt owner=root path=platform/i86pc/ucode/intel-ucode.txt preserve=true reboot-needed=true variant.opensolaris.zone=global 656file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/amd64/unix reboot-needed=true variant.opensolaris.zone=global 657file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/cpu/amd64/cpu.generic reboot-needed=true variant.opensolaris.zone=global 658file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/cpu/amd64/cpu_ms.AuthenticAMD reboot-needed=true variant.opensolaris.zone=global 659file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/cpu/amd64/cpu_ms.AuthenticAMD.15 reboot-needed=true variant.opensolaris.zone=global 660file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/cpu/amd64/cpu_ms.GenuineIntel reboot-needed=true variant.opensolaris.zone=global 661file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/dacf/amd64/consconfig_dacf reboot-needed=true variant.opensolaris.zone=global 662file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/balloon reboot-needed=true variant.opensolaris.zone=global 663file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/domcaps reboot-needed=true variant.opensolaris.zone=global 664file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/evtchn reboot-needed=true variant.opensolaris.zone=global 665file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/isa reboot-needed=true variant.opensolaris.zone=global 666file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/npe reboot-needed=true variant.opensolaris.zone=global 667file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/pci reboot-needed=true variant.opensolaris.zone=global 668file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/pit_beep reboot-needed=true variant.opensolaris.zone=global 669file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/privcmd reboot-needed=true variant.opensolaris.zone=global 670file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/rootnex reboot-needed=true variant.opensolaris.zone=global 671file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xdb reboot-needed=true variant.opensolaris.zone=global 672file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xdf reboot-needed=true variant.opensolaris.zone=global 673file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xenbus reboot-needed=true variant.opensolaris.zone=global 674file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xencons reboot-needed=true variant.opensolaris.zone=global 675file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xnbe reboot-needed=true variant.opensolaris.zone=global 676file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xnbo reboot-needed=true variant.opensolaris.zone=global 677file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xnbu reboot-needed=true variant.opensolaris.zone=global 678file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xnf reboot-needed=true variant.opensolaris.zone=global 679file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xpvd reboot-needed=true variant.opensolaris.zone=global 680file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/drv/amd64/xpvtap reboot-needed=true variant.opensolaris.zone=global 681file NOHASH group=sys mode=0644 owner=root path=platform/i86xpv/kernel/drv/pit_beep.conf variant.opensolaris.zone=global 682file NOHASH group=sys mode=0644 owner=root path=platform/i86xpv/kernel/drv/xencons.conf variant.opensolaris.zone=global 683file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/mach/amd64/xpv_psm reboot-needed=true variant.opensolaris.zone=global 684file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/mach/amd64/xpv_uppc reboot-needed=true variant.opensolaris.zone=global 685file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/misc/amd64/gfx_private reboot-needed=true variant.opensolaris.zone=global 686file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/misc/amd64/xnb reboot-needed=true variant.opensolaris.zone=global 687file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/misc/amd64/xpv_autoconfig reboot-needed=true variant.opensolaris.zone=global 688file NOHASH group=sys mode=0755 owner=root path=platform/i86xpv/kernel/tod/amd64/xpvtod reboot-needed=true variant.opensolaris.zone=global 689#file path=platform/sun4u-us3/kernel/crypto/amd64/aes group=sys mode=0755 690#file path=platform/sun4u/bootlst group=sys reboot-needed=true 691#file path=platform/sun4u/kernel/amd64/genunix group=sys mode=0755 692#file path=platform/sun4u/kernel/amd64/unix group=sys mode=0755 693#file path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-II group=sys mode=0755 694#file path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-III group=sys mode=0755 695#file path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-III+ group=sys mode=0755 696#file path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-IIIi group=sys mode=0755 697#file path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-IIIi+ group=sys mode=0755 698#file path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-IIe group=sys mode=0755 699#file path=platform/sun4u/kernel/crypto/amd64/arcfour group=sys mode=0755 700#file path=platform/sun4u/kernel/crypto/amd64/des group=sys mode=0755 701#file path=platform/sun4u/kernel/crypto/amd64/md5 group=sys mode=0755 702#file path=platform/sun4u/kernel/crypto/amd64/sha1 group=sys mode=0755 703#file path=platform/sun4u/kernel/drv/amd64/adm1026 group=sys 704#file path=platform/sun4u/kernel/drv/amd64/adm1031 group=sys 705#file path=platform/sun4u/kernel/drv/amd64/bbc_beep group=sys 706#file path=platform/sun4u/kernel/drv/amd64/ctsmc group=sys 707#file path=platform/sun4u/kernel/drv/amd64/db21554 group=sys 708#file path=platform/sun4u/kernel/drv/amd64/ebus group=sys 709#file path=platform/sun4u/kernel/drv/amd64/epic group=sys 710#file path=platform/sun4u/kernel/drv/amd64/fd group=sys 711#file path=platform/sun4u/kernel/drv/amd64/gpio_87317 group=sys 712#file path=platform/sun4u/kernel/drv/amd64/grbeep group=sys 713#file path=platform/sun4u/kernel/drv/amd64/i2bsc group=sys 714#file path=platform/sun4u/kernel/drv/amd64/ics951601 group=sys 715#file path=platform/sun4u/kernel/drv/amd64/isadma group=sys 716#file path=platform/sun4u/kernel/drv/amd64/jbusppm group=sys 717#file path=platform/sun4u/kernel/drv/amd64/lm75 group=sys 718#file path=platform/sun4u/kernel/drv/amd64/ltc1427 group=sys 719#file path=platform/sun4u/kernel/drv/amd64/m1535ppm group=sys 720#file path=platform/sun4u/kernel/drv/amd64/max1617 group=sys 721#file path=platform/sun4u/kernel/drv/amd64/mc-us3 group=sys 722#file path=platform/sun4u/kernel/drv/amd64/mc-us3i group=sys 723#file path=platform/sun4u/kernel/drv/amd64/mem_cache group=sys 724#file path=platform/sun4u/kernel/drv/amd64/mi2cv group=sys 725#file path=platform/sun4u/kernel/drv/amd64/pca9556 group=sys 726#file path=platform/sun4u/kernel/drv/amd64/pcf8574 group=sys 727#file path=platform/sun4u/kernel/drv/amd64/pcf8584 group=sys 728#file path=platform/sun4u/kernel/drv/amd64/pcf8591 group=sys 729#file path=platform/sun4u/kernel/drv/amd64/pcipsy group=sys 730#file path=platform/sun4u/kernel/drv/amd64/pcisch group=sys 731#file path=platform/sun4u/kernel/drv/amd64/pic16f747 group=sys 732#file path=platform/sun4u/kernel/drv/amd64/pic16f819 group=sys 733#file path=platform/sun4u/kernel/drv/amd64/pmc group=sys 734#file path=platform/sun4u/kernel/drv/amd64/pmubus group=sys 735#file path=platform/sun4u/kernel/drv/amd64/pmugpio group=sys 736#file path=platform/sun4u/kernel/drv/amd64/power group=sys 737#file path=platform/sun4u/kernel/drv/amd64/ppm group=sys 738#file path=platform/sun4u/kernel/drv/amd64/px group=sys 739#file path=platform/sun4u/kernel/drv/amd64/rmc_comm group=sys 740#file path=platform/sun4u/kernel/drv/amd64/rmcadm group=sys 741#file path=platform/sun4u/kernel/drv/amd64/rmclomv group=sys 742#file path=platform/sun4u/kernel/drv/amd64/rootnex group=sys 743#file path=platform/sun4u/kernel/drv/amd64/sbbc group=sys 744#file path=platform/sun4u/kernel/drv/amd64/sbus group=sys 745#file path=platform/sun4u/kernel/drv/amd64/sbusmem group=sys 746#file path=platform/sun4u/kernel/drv/amd64/schppm group=sys 747#file path=platform/sun4u/kernel/drv/amd64/seeprom group=sys 748#file path=platform/sun4u/kernel/drv/amd64/simba group=sys 749#file path=platform/sun4u/kernel/drv/amd64/smbus group=sys 750#file path=platform/sun4u/kernel/drv/amd64/smbus_ara group=sys 751#file path=platform/sun4u/kernel/drv/amd64/ssc050 group=sys 752#file path=platform/sun4u/kernel/drv/amd64/ssc100 group=sys 753#file path=platform/sun4u/kernel/drv/amd64/su group=sys 754#file path=platform/sun4u/kernel/drv/amd64/tda8444 group=sys 755#file path=platform/sun4u/kernel/drv/amd64/trapstat group=sys 756#file path=platform/sun4u/kernel/drv/amd64/upa64s group=sys 757#file path=platform/sun4u/kernel/drv/amd64/zs group=sys 758#file path=platform/sun4u/kernel/drv/amd64/zsh group=sys 759#file path=platform/sun4u/kernel/drv/i2bsc.conf group=sys 760#file path=platform/sun4u/kernel/drv/mem_cache.conf group=sys 761#file path=platform/sun4u/kernel/drv/rmc_comm.conf group=sys 762#file path=platform/sun4u/kernel/drv/rmcadm.conf group=sys 763#file path=platform/sun4u/kernel/drv/rmclomv.conf group=sys 764#file path=platform/sun4u/kernel/drv/sbusmem.conf group=sys 765#file path=platform/sun4u/kernel/drv/trapstat.conf group=sys 766#file path=platform/sun4u/kernel/drv/zsh.conf group=sys 767#file path=platform/sun4u/kernel/misc/amd64/bignum group=sys mode=0755 768#file path=platform/sun4u/kernel/misc/amd64/bootdev group=sys mode=0755 769#file path=platform/sun4u/kernel/misc/amd64/forthdebug group=sys mode=0755 770#file path=platform/sun4u/kernel/misc/amd64/i2c_svc group=sys mode=0755 771#file path=platform/sun4u/kernel/misc/amd64/kmdbmod group=sys mode=0755 772#file path=platform/sun4u/kernel/misc/amd64/obpsym group=sys mode=0755 773#file path=platform/sun4u/kernel/misc/amd64/opl_cfg group=sys mode=0755 774#file path=platform/sun4u/kernel/misc/amd64/pcie group=sys mode=0755 775#file path=platform/sun4u/kernel/misc/amd64/platmod group=sys mode=0755 776#file path=platform/sun4u/kernel/misc/amd64/sbd group=sys mode=0755 777#file path=platform/sun4u/kernel/misc/amd64/vis group=sys mode=0755 778#file path=platform/sun4u/kernel/strmod/amd64/kb group=sys mode=0755 779#file path=platform/sun4u/kernel/tod/amd64/todblade group=sys mode=0755 780#file path=platform/sun4u/kernel/tod/amd64/todbq4802 group=sys mode=0755 781#file path=platform/sun4u/kernel/tod/amd64/todds1287 group=sys mode=0755 782#file path=platform/sun4u/kernel/tod/amd64/todds1337 group=sys mode=0755 783#file path=platform/sun4u/kernel/tod/amd64/todm5819 group=sys mode=0755 784#file path=platform/sun4u/kernel/tod/amd64/todm5819p_rmc group=sys mode=0755 785#file path=platform/sun4u/kernel/tod/amd64/todm5823 group=sys mode=0755 786#file path=platform/sun4u/kernel/tod/amd64/todmostek group=sys mode=0755 787#file path=platform/sun4u/kernel/tod/amd64/todopl group=sys mode=0755 788#file path=platform/sun4u/kernel/tod/amd64/todsg group=sys mode=0755 789#file path=platform/sun4u/kernel/tod/amd64/todstarcat group=sys mode=0755 790#file path=platform/sun4u/kernel/tod/amd64/todstarfire group=sys mode=0755 791#file path=platform/sun4v/bootlst group=sys reboot-needed=true 792#file path=platform/sun4v/kernel/amd64/genunix group=sys mode=0755 793#file path=platform/sun4v/kernel/amd64/unix group=sys mode=0755 794#file path=platform/sun4v/kernel/cpu/amd64/generic group=sys mode=0755 795#file path=platform/sun4v/kernel/crypto/amd64/arcfour group=sys mode=0755 796#file path=platform/sun4v/kernel/crypto/amd64/md5 group=sys mode=0755 797#file path=platform/sun4v/kernel/drv/amd64/bge group=sys 798#file path=platform/sun4v/kernel/drv/amd64/bmc group=sys 799#file path=platform/sun4v/kernel/drv/amd64/ebus group=sys 800#file path=platform/sun4v/kernel/drv/amd64/glvc group=sys 801#file path=platform/sun4v/kernel/drv/amd64/mdesc group=sys 802#file path=platform/sun4v/kernel/drv/amd64/n2rng group=sys 803#file path=platform/sun4v/kernel/drv/amd64/ntwdt group=sys 804#file path=platform/sun4v/kernel/drv/amd64/px group=sys 805#file path=platform/sun4v/kernel/drv/amd64/qcn group=sys 806#file path=platform/sun4v/kernel/drv/amd64/rootnex group=sys 807#file path=platform/sun4v/kernel/drv/amd64/su group=sys 808#file path=platform/sun4v/kernel/drv/amd64/trapstat group=sys 809#file path=platform/sun4v/kernel/drv/amd64/vnex group=sys 810#file path=platform/sun4v/kernel/drv/bge.conf group=sys 811#file path=platform/sun4v/kernel/drv/bmc.conf group=sys 812#file path=platform/sun4v/kernel/drv/mdesc.conf group=sys 813#file path=platform/sun4v/kernel/drv/n2rng.conf group=sys 814#file path=platform/sun4v/kernel/drv/ntwdt.conf group=sys 815#file path=platform/sun4v/kernel/drv/trapstat.conf group=sys 816#file path=platform/sun4v/kernel/misc/amd64/bootdev group=sys mode=0755 817#file path=platform/sun4v/kernel/misc/amd64/forthdebug group=sys mode=0755 818#file path=platform/sun4v/kernel/misc/amd64/kmdbmod group=sys mode=0755 819#file path=platform/sun4v/kernel/misc/amd64/obpsym group=sys mode=0755 820#file path=platform/sun4v/kernel/misc/amd64/pcie group=sys mode=0755 821#file path=platform/sun4v/kernel/misc/amd64/platmod group=sys mode=0755 822#file path=platform/sun4v/kernel/misc/amd64/vis group=sys mode=0755 823#file path=usr/share/man/man4/sbus.4 824file NOHASH facet.doc.man=true group=bin mode=0444 owner=root path=usr/share/man/man4/sysbus.4 825#file path=usr/share/man/man7d/bbc_beep.7d 826#file path=usr/share/man/man7d/ctsmc.7d 827#file path=usr/share/man/man7d/dr.7d 828#file path=usr/share/man/man7d/fd.7d 829#file path=usr/share/man/man7d/gpio_87317.7d 830#file path=usr/share/man/man7d/grbeep.7d 831#file path=usr/share/man/man7d/mc-opl.7d 832#file path=usr/share/man/man7d/n2rng.7d 833#file path=usr/share/man/man7d/ncp.7d 834file NOHASH facet.doc.man=true group=bin mode=0444 owner=root path=usr/share/man/man7d/npe.7d 835#file path=usr/share/man/man7d/ntwdt.7d 836#file path=usr/share/man/man7d/oplmsu.7d 837#file path=usr/share/man/man7d/oplpanel.7d 838#file path=usr/share/man/man7d/pcicmu.7d 839#file path=usr/share/man/man7d/pcipsy.7d 840#file path=usr/share/man/man7d/pcisch.7d 841#file path=usr/share/man/man7d/schpc.7d 842#file path=usr/share/man/man7d/smbus.7d 843#file path=usr/share/man/man7d/su.7d 844#file path=usr/share/man/man7d/todopl.7d 845#file path=usr/share/man/man7d/tsalarm.7d 846#file path=usr/share/man/man7d/zs.7d 847#file path=usr/share/man/man7d/zsh.7d 848#file path=usr/share/man/man7m/kb.7m 849hardlink path=platform/i86pc/kernel/cpu/amd64/cpu_ms.GenuineIntel.6.47 target=cpu_ms.GenuineIntel.6.46 variant.opensolaris.zone=global 850#hardlink path=platform/sun4u/kernel/misc/amd64/md5 target=../../../kernel/crypto/amd64/md5 851#hardlink path=platform/sun4u/kernel/misc/amd64/sha1 target=../../../kernel/crypto/amd64/sha1 852#hardlink path=platform/sun4v/kernel/misc/amd64/md5 target=../../../kernel/crypto/amd64/md5 853legacy arch=i386.i86pc category=system desc="core kernel software for a specific hardware platform group" hotline="Please contact your local service provider" name="Core Solaris Kernel Architecture (Root)" pkg=SUNWcakr.i vendor=Illumos version=11.11,REV=2009.11.11 854#legacy pkg=SUNWcakr.u arch=i386.sun4u desc="core kernel software for a specific hardware platform group" name="Core Solaris Kernel Architecture (Root)" 855#legacy pkg=SUNWcakr.v arch=i386.sun4v desc="core kernel software for a specific hardware platform group" name="Core Solaris Kernel Architecture (Root)" 856#legacy pkg=SUNWcakrnt2000.v arch=i386.sun4v desc="driver software for the Netra-T2000 hardware platform" name="Platform Specific Drivers for Netra-T2000, (Root)" 857legacy arch=i386.i86pc category=system desc="core kernel software for the i86xpv virtual hardware platform" hotline="Please contact your local service provider" name="Core Kernel Architecture i86xpv, (Root)" pkg=SUNWcakrx.i vendor=Illumos version=11.11,REV=2009.11.11 858license cr_Sun license=cr_Sun 859license lic_CDDL license=lic_CDDL 860license usr/src/cmd/mdb/common/libstand/THIRDPARTYLICENSE license=usr/src/cmd/mdb/common/libstand/THIRDPARTYLICENSE 861license usr/src/common/bzip2/LICENSE license=usr/src/common/bzip2/LICENSE 862#license usr/src/stand/lib/tcp/THIRDPARTYLICENSE license=usr/src/stand/lib/tcp/THIRDPARTYLICENSE 863license usr/src/uts/common/sys/THIRDPARTYLICENSE.unicode license=usr/src/uts/common/sys/THIRDPARTYLICENSE.unicode 864license usr/src/uts/common/zmod/THIRDPARTYLICENSE license=usr/src/uts/common/zmod/THIRDPARTYLICENSE 865license usr/src/uts/intel/THIRDPARTYLICENSE license=usr/src/uts/intel/THIRDPARTYLICENSE 866#link path=platform/SUNW,A70/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 867#link path=platform/SUNW,Netra-CP3010/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 868#link path=platform/SUNW,Netra-T12/kernel/amd64 target=../../SUNW,Sun-Fire/kernel/amd64 869#link path=platform/SUNW,Netra-T12/kernel/cpu target=../../SUNW,Sun-Fire/kernel/cpu 870#link path=platform/SUNW,Netra-T12/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 871#link path=platform/SUNW,Netra-T12/kernel/drv/amd64/sgcn target=../../../../SUNW,Sun-Fire/kernel/drv/amd64/sgcn 872#link path=platform/SUNW,Netra-T12/kernel/drv/amd64/sgsbbc target=../../../../SUNW,Sun-Fire/kernel/drv/amd64/sgsbbc 873#link path=platform/SUNW,Netra-T12/kernel/drv/amd64/ssm target=../../../../SUNW,Sun-Fire/kernel/drv/amd64/ssm 874#link path=platform/SUNW,Netra-T12/kernel/misc/amd64/sbdp target=../../../../SUNW,Sun-Fire/kernel/misc/amd64/sbdp 875#link path=platform/SUNW,Netra-T4/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 876#link path=platform/SUNW,Netra-T4/kernel/misc/amd64/platmod target=../../../../SUNW,Sun-Fire-280R/kernel/misc/amd64/platmod 877#link path=platform/SUNW,SPARC-Enterprise/kernel/cpu/amd64/FJSV,SPARC64-VII target=FJSV,SPARC64-VI 878#link path=platform/SUNW,SPARC-Enterprise/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 879#link path=platform/SUNW,Sun-Blade-1000/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 880#link path=platform/SUNW,Sun-Blade-1500/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 881#link path=platform/SUNW,Sun-Blade-2500/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 882#link path=platform/SUNW,Sun-Fire-15000/kernel/cpu/amd64/SUNW,UltraSPARC-IV target=SUNW,UltraSPARC-III+ 883#link path=platform/SUNW,Sun-Fire-15000/kernel/cpu/amd64/SUNW,UltraSPARC-IV+ target=SUNW,UltraSPARC-III+ 884#link path=platform/SUNW,Sun-Fire-15000/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 885#link path=platform/SUNW,Sun-Fire-280R/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 886#link path=platform/SUNW,Sun-Fire-480R/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 887#link path=platform/SUNW,Sun-Fire-880/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 888#link path=platform/SUNW,Sun-Fire-V215/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 889#link path=platform/SUNW,Sun-Fire-V240/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 890#link path=platform/SUNW,Sun-Fire-V250/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 891#link path=platform/SUNW,Sun-Fire-V440/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 892#link path=platform/SUNW,Sun-Fire-V440/kernel/drv/amd64/ntwdt target=../../../../SUNW,Sun-Fire-V240/kernel/drv/amd64/ntwdt 893#link path=platform/SUNW,Sun-Fire-V440/kernel/drv/amd64/tsalarm target=../../../../SUNW,Sun-Fire-V240/kernel/drv/amd64/tsalarm 894#link path=platform/SUNW,Sun-Fire-V440/kernel/drv/ntwdt.conf target=../../../SUNW,Sun-Fire-V240/kernel/drv/ntwdt.conf 895#link path=platform/SUNW,Sun-Fire-V440/kernel/drv/tsalarm.conf target=../../../SUNW,Sun-Fire-V240/kernel/drv/tsalarm.conf 896#link path=platform/SUNW,Sun-Fire-V445/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 897#link path=platform/SUNW,Sun-Fire/kernel/cpu/amd64/SUNW,UltraSPARC-IV target=SUNW,UltraSPARC-III+ 898#link path=platform/SUNW,Sun-Fire/kernel/cpu/amd64/SUNW,UltraSPARC-IV+ target=SUNW,UltraSPARC-III+ 899#link path=platform/SUNW,Sun-Fire/kernel/crypto/amd64/aes target=../../../../sun4u-us3/kernel/crypto/amd64/aes 900#link path=platform/SUNW,Ultra-80/kernel/misc/amd64/platmod target=../../../../SUNW,Ultra-5_10/kernel/misc/amd64/platmod 901#link path=platform/SUNW,Ultra-Enterprise-10000/kernel/unix target=amd64/unix 902#link path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-IIi target=SUNW,UltraSPARC-II 903#link path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-IV target=SUNW,UltraSPARC-III+ 904#link path=platform/sun4u/kernel/cpu/amd64/SUNW,UltraSPARC-IV+ target=SUNW,UltraSPARC-III+ 905#link path=platform/sun4u/kernel/misc/amd64/des target=../../../kernel/crypto/amd64/des 906#link path=platform/sun4u/kernel/unix target=amd64/unix 907#link path=platform/sun4v/kernel/cpu/amd64/sun4v target=generic 908#link path=platform/sun4v/kernel/unix target=amd64/unix 909link facet.doc.man=true path=usr/share/man/man4/isa.4 target=sysbus.4 910#link path=usr/share/man/man7d/drmach.7d target=dr.7d 911link facet.doc.man=true path=usr/share/man/man7d/fdc.7d target=fd.7d 912#link path=usr/share/man/man7d/ngdr.7d target=dr.7d 913#link path=usr/share/man/man7d/ngdrmach.7d target=dr.7d 914# 915# CDDL HEADER START 916# 917# The contents of this file are subject to the terms of the 918# Common Development and Distribution License (the "License"). 919# You may not use this file except in compliance with the License. 920# 921# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 922# or http://www.opensolaris.org/os/licensing. 923# See the License for the specific language governing permissions 924# and limitations under the License. 925# 926# When distributing Covered Code, include this CDDL HEADER in each 927# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 928# If applicable, add the following below this CDDL HEADER, with the 929# fields enclosed by brackets "[]" replaced with your own identifying 930# information: Portions Copyright [yyyy] [name of copyright owner] 931# 932# CDDL HEADER END 933# 934 935# 936# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 937# 938 939# 940# These actions represent settings which should appear in every package. 941# 942 943# 944# Name the consolidation this package came from. 945# 946set name=org.opensolaris.consolidation value=osnet 947 948# 949# Indicate that the package was published in a zones aware 950# fashion. 951# 952set name=variant.opensolaris.zone value=global value=nonglobal 953# 954# CDDL HEADER START 955# 956# The contents of this file are subject to the terms of the 957# Common Development and Distribution License (the "License"). 958# You may not use this file except in compliance with the License. 959# 960# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 961# or http://www.opensolaris.org/os/licensing. 962# See the License for the specific language governing permissions 963# and limitations under the License. 964# 965# When distributing Covered Code, include this CDDL HEADER in each 966# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 967# If applicable, add the following below this CDDL HEADER, with the 968# fields enclosed by brackets "[]" replaced with your own identifying 969# information: Portions Copyright [yyyy] [name of copyright owner] 970# 971# CDDL HEADER END 972# 973 974# 975# Copyright 2010 Sun Microsystems, Inc. All rights reserved. 976# Use is subject to license terms. 977# 978 979# 980# Only publish packages for the currently specified architecture 981# 982# This is somewhat nonintuitive. In English: 983# 984# For any action of type "set", 985# if the "name" property matches the regex "variant.arch", 986# and *every* occurrence of the "value" property does not match 987# $ARCH, then don't publish it. 988# 989# ...in other words, if *any* occurrence of "value" matches i386, 990# then the negative lookahead assertion in the regex will fail, and we 991# won't abort based on the action. 992# 993 994# 995# Catch don't-publish settings from manifest-embedded transforms 996# 997# 998# CDDL HEADER START 999# 1000# The contents of this file are subject to the terms of the 1001# Common Development and Distribution License (the "License"). 1002# You may not use this file except in compliance with the License. 1003# 1004# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 1005# or http://www.opensolaris.org/os/licensing. 1006# See the License for the specific language governing permissions 1007# and limitations under the License. 1008# 1009# When distributing Covered Code, include this CDDL HEADER in each 1010# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 1011# If applicable, add the following below this CDDL HEADER, with the 1012# fields enclosed by brackets "[]" replaced with your own identifying 1013# information: Portions Copyright [yyyy] [name of copyright owner] 1014# 1015# CDDL HEADER END 1016# 1017 1018# 1019# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 1020# 1021 1022# 1023# This file and its contents are supplied under the terms of the 1024# Common Development and Distribution License ("CDDL"), version 1.0. 1025# You may only use this file in accordance with the terms of version 1026# 1.0 of the CDDL. 1027# 1028# A full copy of the text of the CDDL should have accompanied this 1029# source. A copy of the CDDL is also available via the Internet 1030# at http://www.illumos.org/license/CDDL. 1031# 1032 1033# Copyright 2011, Richard Lowe 1034 1035# Manual pages are documentation, and more specifically 'man' documentation 1036# 1037# CDDL HEADER START 1038# 1039# The contents of this file are subject to the terms of the 1040# Common Development and Distribution License (the "License"). 1041# You may not use this file except in compliance with the License. 1042# 1043# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 1044# or http://www.opensolaris.org/os/licensing. 1045# See the License for the specific language governing permissions 1046# and limitations under the License. 1047# 1048# When distributing Covered Code, include this CDDL HEADER in each 1049# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 1050# If applicable, add the following below this CDDL HEADER, with the 1051# fields enclosed by brackets "[]" replaced with your own identifying 1052# information: Portions Copyright [yyyy] [name of copyright owner] 1053# 1054# CDDL HEADER END 1055# 1056 1057# 1058# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 1059# Copyright 2011, Richard Lowe 1060# 1061 1062# 1063# For kernel/drv, set .conf files to mode 0644. Assume all other 1064# files there are drivers, and give them mode 0755 and reboot-needed. 1065# 1066# The (?<!r) construct in the reboot-needed transform is a negative 1067# lookbehind assertion: it says "only match this regex if the 1068# previously matched text does NOT match regex r." So it will match 1069# all files in the various kernel trees, except for .conf files. 1070# 1071 1072 1073# 1074# Non-global zones should not have content in kernel, usr/kernel (and 1075# other kernel dirs) or in boot/. 1076# 1077 1078 1079# 1080# shared objects should generally have mode 0755 1081# 1082 1083# 1084# Catch some of the collections of largely read-only files 1085# 1086 1087 1088# 1089# For what's left, go with root:bin 0644, +x for directories 1090# 1091 1092# 1093# Default values for legacy actions 1094# 1095# 1096# CDDL HEADER START 1097# 1098# The contents of this file are subject to the terms of the 1099# Common Development and Distribution License (the "License"). 1100# You may not use this file except in compliance with the License. 1101# 1102# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 1103# or http://www.opensolaris.org/os/licensing. 1104# See the License for the specific language governing permissions 1105# and limitations under the License. 1106# 1107# When distributing Covered Code, include this CDDL HEADER in each 1108# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 1109# If applicable, add the following below this CDDL HEADER, with the 1110# fields enclosed by brackets "[]" replaced with your own identifying 1111# information: Portions Copyright [yyyy] [name of copyright owner] 1112# 1113# CDDL HEADER END 1114# 1115 1116# 1117# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 1118# 1119 1120# 1121# Pull out the license paths for staging in the proto area. Ignore 1122# those with no path separators, as that indicates a file kept in 1123# $SRC/pkg/license_files, rather than alongside the associated source. 1124# 1125 1126# 1127# Ordering is important here, and the last line wins. 1128# 1129# The default of "current" is provided by the calling environment, 1130# rather than a print operation. 1131# 1132depend fmri=consolidation/osnet/osnet-incorporation type=require 1133depend fmri=pkg:/driver/serial/usbser@0.5.11-0.155.53 type=require variant.opensolaris.zone=global 1134depend fmri=pkg:/system/kernel@0.5.11-0.155.53 type=require variant.opensolaris.zone=global 1135# 1136# This file and its contents are supplied under the terms of the 1137# Common Development and Distribution License ("CDDL"). You may 1138# only use this file in accordance with the terms of the CDDL. 1139# 1140# A full copy of the text of the CDDL should have accompanied this 1141# source. A copy of the CDDL is also available via the Internet at 1142# http://www.illumos.org/license/CDDL. 1143# 1144 1145# 1146# Copyright 2019 Alexander Pyhalov 1147# Copyright 2020 OmniOS Community Edition (OmniOSce) Association. 1148# 1149 1150# 1151# These transforms drop the information that we don't want to appear 1152# in final package versions. 1153# 1154 1155# Drop pkg.depend.bypass-generate attributes 1156 1157# Drop pkg.depend.runpath attributes 1158 1159# Remove pkg debug information 1160 1161