diff options
author | Garrett D'Amore <garrett@damore.org> | 2019-07-05 11:48:43 -0700 |
---|---|---|
committer | Garrett D'Amore <garrett@damore.org> | 2019-07-08 00:28:30 -0700 |
commit | 84bdd7fe0904e8a6527441769054b6bc92a1ffe0 (patch) | |
tree | 2b4e080a310eafb0771fce4fd78cc863ae8d59a6 /usr/src/uts/sparc | |
parent | f9d4be10f65289547fa67ea8d1a3de54596b3ba1 (diff) | |
download | illumos-gate-84bdd7fe0904e8a6527441769054b6bc92a1ffe0.tar.gz |
10329 Remove scsi_vhci_f_asym_sun (StorEdge T3 support)
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/uts/sparc')
-rw-r--r-- | usr/src/uts/sparc/Makefile.sparc | 3 | ||||
-rw-r--r-- | usr/src/uts/sparc/scsi_vhci_f_asym_sun/Makefile | 88 |
2 files changed, 2 insertions, 89 deletions
diff --git a/usr/src/uts/sparc/Makefile.sparc b/usr/src/uts/sparc/Makefile.sparc index 694abeff33..0777cc5c30 100644 --- a/usr/src/uts/sparc/Makefile.sparc +++ b/usr/src/uts/sparc/Makefile.sparc @@ -25,6 +25,7 @@ # Copyright (c) 2015, Joyent, Inc. All rights reserved. # Copyright 2016 Gary Mills # Copyright 2016 Nexenta Systems, Inc. +# Copyright 2019 RackTop Systems # # @@ -404,7 +405,7 @@ MISC_KMODS += mac dls MISC_KMODS += cmlb MISC_KMODS += tem MISC_KMODS += pcicfg fcodem fcpci -MISC_KMODS += scsi_vhci_f_sym scsi_vhci_f_tpgs scsi_vhci_f_asym_sun +MISC_KMODS += scsi_vhci_f_sym scsi_vhci_f_tpgs MISC_KMODS += scsi_vhci_f_sym_hds MISC_KMODS += scsi_vhci_f_tape scsi_vhci_f_tpgs_tape MISC_KMODS += fctl diff --git a/usr/src/uts/sparc/scsi_vhci_f_asym_sun/Makefile b/usr/src/uts/sparc/scsi_vhci_f_asym_sun/Makefile deleted file mode 100644 index ee88346c4a..0000000000 --- a/usr/src/uts/sparc/scsi_vhci_f_asym_sun/Makefile +++ /dev/null @@ -1,88 +0,0 @@ -# -# CDDL HEADER START -# -# The contents of this file are subject to the terms of the -# Common Development and Distribution License (the "License"). -# You may not use this file except in compliance with the License. -# -# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE -# or http://www.opensolaris.org/os/licensing. -# See the License for the specific language governing permissions -# and limitations under the License. -# -# When distributing Covered Code, include this CDDL HEADER in each -# file and include the License file at usr/src/OPENSOLARIS.LICENSE. -# If applicable, add the following below this CDDL HEADER, with the -# fields enclosed by brackets "[]" replaced with your own identifying -# information: Portions Copyright [yyyy] [name of copyright owner] -# -# CDDL HEADER END -# - -# -# Copyright 2007 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. -# - -# -#pragma ident "%Z%%M% %I% %E% SMI" -# -# This makefile drives the production of misc/scsi_vhci/scsi_vhci_f_asym_sun -# sparc architecture dependent -# - -# -# Paths to the base of the uts directory trees -# -UTSBASE = ../.. - -# -# Define the module and object file sets. -# -MODULE = scsi_vhci_f_asym_sun -OBJECTS = $(SCSI_VHCI_F_ASYM_SUN_OBJS:%=$(OBJS_DIR)/%) -LINTS = $(SCSI_VHCI_F_ASYM_SUN_OBJS:%.o=$(LINTS_DIR)/%.ln) -ROOTMODULE = $(ROOT_SCSI_VHCI_DIR)/$(MODULE) - -# -# Include common rules. -# -include $(UTSBASE)/sparc/Makefile.sparc - -# -# Define targets. -# -ALL_TARGET = $(BINARY) -LINT_TARGET = $(MODULE).lint -INSTALL_TARGET = $(BINARY) $(ROOTMODULE) - -# -# Note dependancy on misc/scsi. -# -LDFLAGS += -dy -N"misc/scsi" -N"drv/scsi_vhci" - -# -# Default build targets. -# -.KEEP_STATE: - -def: $(DEF_DEPS) - -all: $(ALL_DEPS) - -clean: $(CLEAN_DEPS) - -clobber: $(CLOBBER_DEPS) - -lint: $(LINT_DEPS) - -modlintlib: $(MODLINTLIB_DEPS) - -clean.lint: $(CLEAN_LINT_DEPS) - -install: $(INSTALL_DEPS) - -# -# Include common targets. -# -include $(UTSBASE)/sparc/Makefile.targ |