diff options
author | ky115808 <none@none> | 2007-10-24 16:50:08 -0700 |
---|---|---|
committer | ky115808 <none@none> | 2007-10-24 16:50:08 -0700 |
commit | 8696d418011068e5cedf3a229f7a6613e7798e92 (patch) | |
tree | 62bc5e3562867a0e0232a0da2687e3c8875d3a6e /usr/src/uts/sun4v | |
parent | 46d4d53123a9d9aa4e380cc03aace03835579f78 (diff) | |
download | illumos-gate-8696d418011068e5cedf3a229f7a6613e7798e92.tar.gz |
PSARC 2007/511 Congo Platform SW Support
6606751 Need SUNW,Netra-T5440 platform support in ON
Diffstat (limited to 'usr/src/uts/sun4v')
-rw-r--r-- | usr/src/uts/sun4v/Makefile | 14 | ||||
-rw-r--r-- | usr/src/uts/sun4v/Makefile.congo | 37 | ||||
-rw-r--r-- | usr/src/uts/sun4v/Makefile.sun4v.shared | 1 |
3 files changed, 51 insertions, 1 deletions
diff --git a/usr/src/uts/sun4v/Makefile b/usr/src/uts/sun4v/Makefile index e960a311b2..9131efe9bf 100644 --- a/usr/src/uts/sun4v/Makefile +++ b/usr/src/uts/sun4v/Makefile @@ -36,6 +36,7 @@ include Makefile.huron include Makefile.maramba include Makefile.thunder include Makefile.turgo +include Makefile.congo USR_GLENDALE_DIR = $(USR_PLAT_DIR)/SUNW,Sun-Blade-T6320 USR_GLENDALE_SBIN_DIR = $(USR_GLENDALE_DIR)/sbin @@ -203,7 +204,9 @@ install_platforms: $(ROOT_PSM_DIR) $(USR_PSM_DIR) \ $(USR_THUNDER_DIR) $(USR_THUNDER_SBIN_DIR) \ $(USR_THUNDER_LIB_DIR) \ $(USR_TURGO_DIR) $(USR_TURGO_SBIN_DIR) \ - $(USR_TURGO_LIB_DIR) + $(USR_TURGO_LIB_DIR) \ + $(USR_CONGO_DIR) $(USR_CONGO_SBIN_DIR) \ + $(USR_CONGO_LIB_DIR) # @@ -273,6 +276,15 @@ $(USR_TURGO_SBIN_DIR): $(USR_TURGO_DIR) $(USR_TURGO_LIB_DIR): $(USR_TURGO_DIR) -$(INS.dir.root.bin) +$(USR_CONGO_DIR): $(USR_SUN4V_PLAT_DIR) + -$(INS.dir.root.sys) + +$(USR_CONGO_SBIN_DIR): $(USR_CONGO_DIR) + $(INS.slink5) + +$(USR_CONGO_LIB_DIR): $(USR_CONGO_DIR) + -$(INS.dir.root.bin) + # # Full kernel lint target. # diff --git a/usr/src/uts/sun4v/Makefile.congo b/usr/src/uts/sun4v/Makefile.congo new file mode 100644 index 0000000000..af56c1189d --- /dev/null +++ b/usr/src/uts/sun4v/Makefile.congo @@ -0,0 +1,37 @@ +# +# 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. +# +#ident "%Z%%M% %I% %E% SMI" +# +# Global definitions for sun4v congo implementation specific modules. +# + +# +# Define directories. +# + +USR_CONGO_DIR = $(USR_PLAT_DIR)/SUNW,Netra-T5440 +USR_CONGO_SBIN_DIR = $(USR_CONGO_DIR)/sbin +USR_CONGO_LIB_DIR = $(USR_CONGO_DIR)/lib diff --git a/usr/src/uts/sun4v/Makefile.sun4v.shared b/usr/src/uts/sun4v/Makefile.sun4v.shared index 5b342c6032..55f34f8efa 100644 --- a/usr/src/uts/sun4v/Makefile.sun4v.shared +++ b/usr/src/uts/sun4v/Makefile.sun4v.shared @@ -45,6 +45,7 @@ LINKED_PLATFORMS += SUNW,Sun-Blade-T6320 LINKED_PLATFORMS += SUNW,Netra-CP3260 LINKED_PLATFORMS += SUNW,Netra-T5220 LINKED_PLATFORMS += SUNW,USBRDT-5240 +LINKED_PLATFORMS += SUNW,Netra-T5440 PROMIF = ieee1275 PSMBASE = $(UTSBASE)/../psm |