home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / sysinfo-1.0 / part01 / info-bsd43.c < prev    next >
C/C++ Source or Header  |  1993-04-10  |  1KB  |  81 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-bsd43.c,v 1.2 1992/04/26 23:32:06 mcooper Exp $";
  9. #endif
  10.  
  11. /*
  12.  * $Log: info-bsd43.c,v $
  13.  * Revision 1.2  1992/04/26  23:32:06  mcooper
  14.  * Add Copyright notice
  15.  *
  16.  * Revision 1.1  1992/03/31  02:39:03  mcooper
  17.  * Initial revision
  18.  *
  19.  * Revision 1.1  1992/03/31  02:39:03  mcooper
  20.  * Initial revision
  21.  *
  22.  */
  23.  
  24.  
  25. /*
  26.  * 4.3BSD specific info
  27.  */
  28.  
  29. #include "system.h"
  30. #include "defs.h"
  31.  
  32. #include <sys/types.h>
  33. #include <machine/cpu.h>
  34. #include <nlist.h>
  35.  
  36. /*
  37.  * No device support
  38.  */
  39. DEVDATATAB DevDataTab[] = {
  40.     { 0 },
  41. };
  42.  
  43. /*
  44.  * MachineID symbol
  45.  */
  46. struct nlist MachineIDNL[] = {
  47. #if    defined(COFF)
  48.     { "machineid" },
  49. #else
  50.     { "_machineid" },
  51. #endif    /* COFF */
  52.     { 0 },
  53. };
  54.  
  55. /*
  56.  * Model's as found in kernel variable "machineid" and
  57.  * defined in <machine/cpu.h>.
  58.  */
  59. NAMETAB ModelTab[] = {
  60. #ifdef HP_320
  61.     {  HP_320,        "HP9000/320" },
  62. #endif
  63. #ifdef HP_330
  64.     {  HP_330,        "HP9000/330" },
  65. #endif
  66. #ifdef HP_340
  67.     {  HP_340,        "HP9000/340" },
  68. #endif
  69. #ifdef HP_350
  70.     {  HP_350,        "HP9000/350" },
  71. #endif
  72. #ifdef HP_360
  73.     {  HP_360,        "HP9000/360" },
  74. #endif
  75. #ifdef HP_370
  76.     {  HP_370,        "HP9000/370" },
  77. #endif
  78.     {  0 },
  79. };
  80.  
  81.