diff options
author | venki <none@none> | 2007-03-31 18:24:05 -0700 |
---|---|---|
committer | venki <none@none> | 2007-03-31 18:24:05 -0700 |
commit | 0d63ce2b32a9e1cc8ed71d4d92536c44d66a530a (patch) | |
tree | 44032a0316e273c5597b6257f3510bd4dcb77e1f /usr/src/cmd/picl/plugins/common/devtree/picldevtree.c | |
parent | 1c02caff5ab8a73df8274cf66e0444b24cf4af10 (diff) | |
download | illumos-joyent-0d63ce2b32a9e1cc8ed71d4d92536c44d66a530a.tar.gz |
FWARC/2007/133 SNMP Domain Service
FWARC/2007/138 Updates to PRI structures
6438074 customer requests ability to query power/fan status info from OS
6526169 prtdiag output doesn't have Memory Configuration Information
6531453 sun4v picl needs device labels in the devtree
6534449 Unable to send a domain services message larger than 4K
Diffstat (limited to 'usr/src/cmd/picl/plugins/common/devtree/picldevtree.c')
-rw-r--r-- | usr/src/cmd/picl/plugins/common/devtree/picldevtree.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/cmd/picl/plugins/common/devtree/picldevtree.c b/usr/src/cmd/picl/plugins/common/devtree/picldevtree.c index d962e0520c..a16766b3b8 100644 --- a/usr/src/cmd/picl/plugins/common/devtree/picldevtree.c +++ b/usr/src/cmd/picl/plugins/common/devtree/picldevtree.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -3212,6 +3212,9 @@ picldevtree_init(void) if (strcmp(mach_name, "sun4u") == 0) { builtin_map_ptr = sun4u_map; builtin_map_size = sizeof (sun4u_map) / sizeof (builtin_map_t); + } else if (strcmp(mach_name, "sun4v") == 0) { + builtin_map_ptr = sun4u_map; + builtin_map_size = sizeof (sun4u_map) / sizeof (builtin_map_t); } else if (strcmp(mach_name, "i86pc") == 0) { builtin_map_ptr = i86pc_map; builtin_map_size = sizeof (i86pc_map) / sizeof (builtin_map_t); |