usr/src/psm/stand/bootlst/Makefile
author gw25295
Fri, 11 Apr 2008 18:36:28 -0700
changeset 6423 437422a29d3a
permissions -rw-r--r--
PSARC 2006/370 ZFS Boot Support 5008936 ZFS and/or zvol should support dumps 5070124 dumpadm -d /dev/... does not enforce block device requirement for savecore 6521468 ZFS Boot support Phase 2 6553503 bfu can't find 'rootdev' from /etc/vfstab on a zfs root filesystem 6574993 zfs_mountroot() may need to call clkset() to set the boot_time kstat 6633197 zvol should not permit newfs or createpool while it's in use by swap or dump 6661127 zfs_name_valid() does not support ZFS_TYPE_POOL 6684121 The changes to smf scripts for supporting canmount=noauto will cause a boot failure.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     1
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     2
# CDDL HEADER START
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     3
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     7
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    10
# See the License for the specific language governing permissions
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    11
# and limitations under the License.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    12
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    18
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    19
# CDDL HEADER END
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    20
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    21
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    22
#ident	"%Z%%M%	%I%	%E% SMI"
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    23
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    24
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    25
# Use is subject to license terms.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    26
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    27
# psm/stand/bootlst/Makefile
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    28
#
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    29
include $(SRC)/Makefile.master
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    30
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    31
sparc_ARCHITECTURES = sparc
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    32
SUBDIRS = $($(MACH)_ARCHITECTURES)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    33
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    34
all		:=	TARGET= all
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    35
install		:=	TARGET= install
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    36
clean		:=	TARGET= clean
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    37
clobber		:=	TARGET= clobber
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    38
lint		:=	TARGET= lint
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    39
clean.lint	:=	TARGET= clean.lint
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    40
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    41
.KEEP_STATE:
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    42
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    43
all install clean clobber lint clean.lint: $(SUBDIRS)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    44
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    45
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    46
$(SUBDIRS): FRC
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    47
	@cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    48
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents:
diff changeset
    49
FRC: