home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume26 / sysinfo-1.0 / part01 / info-aix.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-10  |  1.1 KB  |  53 lines

  1. /*
  2.  * Copyright (c) 1992 Michael A. Cooper.
  3.  * This software may be freely distributed provided it is not sold for 
  4.  * profit and the author is credited appropriately.
  5.  */
  6.  
  7. #ifndef lint
  8. static char *RCSid = "$Header: /src/common/usc/bin/sysinfo/RCS/info-aix.c,v 1.2 1992/04/26 23:32:06 mcooper Exp $";
  9. #endif
  10.  
  11. /*
  12.  * $Log: info-aix.c,v $
  13.  * Revision 1.2  1992/04/26  23:32:06  mcooper
  14.  * Add Copyright notice
  15.  *
  16.  * Revision 1.1  1992/03/28  23:57:38  mcooper
  17.  * Initial revision
  18.  *
  19.  */
  20.  
  21.  
  22. /*
  23.  * AIX related information
  24.  */
  25.  
  26. #include <stdio.h>
  27. #include "system.h"
  28. #include "defs.h"
  29.  
  30. /*
  31.  * These values were gleamed from a copy of the
  32.  * AIXpert magazine.
  33.  */
  34. NAMETAB ModelTab[] = {
  35.     { 0, "RS6000/320",            "31" },
  36.     { 0, "RS6000/320H",            "35" },
  37.     { 0, "RS6000/520",            "30" },
  38.     { 0, "RS6000/[57]30",        "10" },
  39.     { 0, "RS6000/530H",            "18" },
  40.     { 0, "RS6000/540",            "14" },
  41.     { 0, "RS6000/550",            "1C" },
  42.     { 0, "RS6000/930",            "20" },
  43.     { 0, "RS6000/950",            "2E" },
  44.     { 0 },
  45. };
  46.  
  47. /*
  48.  * Device Data Table (Not implemented yet)
  49.  */
  50. DEVDATATAB DevDataTab[] = {
  51.     {  0 },
  52. };
  53.