c25356d5978632df6203437e1953bcb29e0c736fTimo Sirainen#!/usr/bin/python
c25356d5978632df6203437e1953bcb29e0c736fTimo Sirainen#
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen# CDDL HEADER START
8e361d2906b0e44f7175a20981f8d2280645b58bTimo Sirainen#
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen# The contents of this file are subject to the terms of the
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen# Common Development and Distribution License (the "License").
bdd7a96c363346f7c38f389791be1487ca08775bTimo Sirainen# You may not use this file except in compliance with the License.
bdd7a96c363346f7c38f389791be1487ca08775bTimo Sirainen#
cc833a7a4e2258afdc834ace4bfe6579820a1df3Timo Sirainen# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
cc833a7a4e2258afdc834ace4bfe6579820a1df3Timo Sirainen# or http://www.opensolaris.org/os/licensing.
97cb20eb77d486ef67eac50567e3080faca025c1Timo Sirainen# See the License for the specific language governing permissions
97cb20eb77d486ef67eac50567e3080faca025c1Timo Sirainen# and limitations under the License.
cc833a7a4e2258afdc834ace4bfe6579820a1df3Timo Sirainen#
7e235b3a5f622813121cd18f351e036650aaf8f8Timo Sirainen# When distributing Covered Code, include this CDDL HEADER in each
366eb7178f2c90d97134e0c2d1958f93fcdaba12Timo Sirainen# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
7e235b3a5f622813121cd18f351e036650aaf8f8Timo Sirainen# If applicable, add the following below this CDDL HEADER, with the
7e235b3a5f622813121cd18f351e036650aaf8f8Timo Sirainen# fields enclosed by brackets "[]" replaced with your own identifying
fadd878cd6098f5b873c21c121209a922679dae4Timo Sirainen# information: Portions Copyright [yyyy] [name of copyright owner]
fadd878cd6098f5b873c21c121209a922679dae4Timo Sirainen#
863ea896fb31a16d1baec31e57650243b5547db6Timo Sirainen# CDDL HEADER END
863ea896fb31a16d1baec31e57650243b5547db6Timo Sirainen#
863ea896fb31a16d1baec31e57650243b5547db6Timo Sirainen
471e447023ab73a73f0f78da2afc0c55905330ddTimo Sirainen#
4b231ca0bbe3b536acbd350101e183441ce0247aTimo Sirainen# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
4b231ca0bbe3b536acbd350101e183441ce0247aTimo Sirainen#
95a1a5195d56f3cf5d1e529aad668f87ad3b979bTimo Sirainen
95a1a5195d56f3cf5d1e529aad668f87ad3b979bTimo Sirainen__all__ = [
95a1a5195d56f3cf5d1e529aad668f87ad3b979bTimo Sirainen "base"
95a1a5195d56f3cf5d1e529aad668f87ad3b979bTimo Sirainen "elf"
95a1a5195d56f3cf5d1e529aad668f87ad3b979bTimo Sirainen "hardlink"
95a1a5195d56f3cf5d1e529aad668f87ad3b979bTimo Sirainen "pound_bang"
95a1a5195d56f3cf5d1e529aad668f87ad3b979bTimo Sirainen "python"
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen "smf_manifest"
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen]
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen