home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / sysinfo-1.0 / part01 / info-alliant.c < prev    next >
C/C++ Source or Header  |  1993-04-10  |  1KB  |  78 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-alliant.c,v 1.3 1992/04/26 23:32:06 mcooper Exp $";
  9. #endif
  10.  
  11. /*
  12.  * $Log: info-alliant.c,v $
  13.  * Revision 1.3  1992/04/26  23:32:06  mcooper
  14.  * Add Copyright notice
  15.  *
  16.  * Revision 1.2  1992/03/31  19:00:15  mcooper
  17.  * A working version.
  18.  *
  19.  * Revision 1.2  1992/03/31  19:00:15  mcooper
  20.  * A working version.
  21.  *
  22.  * Revision 1.1  1992/03/01  23:28:16  mcooper
  23.  * Initial revision
  24.  *
  25.  */
  26.  
  27. /*
  28.  * Alliant specific information
  29.  */
  30. #include <stdio.h>
  31. #include "system.h"
  32. #include "defs.h"
  33.  
  34. #include <nlist.h>
  35.  
  36. /*
  37.  * Kernel version symbols
  38.  */
  39. struct nlist VersionInfoNL[] = {
  40.     { "_versionname" },
  41.     { "_versiondate" },
  42.     { 0 },
  43. };
  44.  
  45. /*
  46.  * Table of Alliant system models
  47.  */ 
  48. NAMETAB ModelTab[] = {
  49. #ifdef MODELNUM_FX2800
  50.     {  MODELNUM_FX2800,        "FX2800" },
  51. #endif
  52. #ifdef MODELNUM_FX800
  53.     {  MODELNUM_FX800,        "FX800" },
  54. #endif
  55. #ifdef BPB_FX1
  56.     {  BPB_FX1,            "FX1" },
  57. #endif
  58. #ifdef BPB_FX4
  59.     {  BPB_FX4,            "FX4" },
  60. #endif
  61. #ifdef BPB_FX40
  62.     {  BPB_FX40,        "FX40" },
  63. #endif
  64. #ifdef BPB_FX8
  65.     {  BPB_FX8,            "FX80" },
  66. #endif
  67. #ifdef BPB_FX80
  68.     {  BPB_FX80,        "FX80" },
  69. #endif
  70. };
  71.  
  72. /*
  73.  * No device support
  74.  */
  75. DEVDATATAB DevDataTab[] = {
  76.     { 0 },
  77. };
  78.