Home | History | Annotate | Line # | Download | only in include
idprom.h revision 1.1
      1  1.1  glass /*
      2  1.1  glass  * structure/definitions for the 32 byte id prom found in sun3s
      3  1.1  glass  *
      4  1.1  glass  */
      5  1.1  glass 
      6  1.1  glass 
      7  1.1  glass struct idprom {
      8  1.1  glass     unsigned char idp_format;
      9  1.1  glass     unsigned char idp_machtype;
     10  1.1  glass     unsigned char idp_etheraddr;
     11  1.1  glass     long          idp_date;
     12  1.1  glass     unsigned char idp_serialnum[3];
     13  1.1  glass     unsigned char idp_checksum;
     14  1.1  glass     unsigned char ipd_reserved[16];
     15  1.1  glass };
     16  1.1  glass 
     17  1.1  glass #define IDPROM_VERSION 1
     18  1.1  glass #define IDPROM_SIZE (sizeof(struct idprom))
     19  1.1  glass 
     20  1.1  glass int idprom_fetch __P((struct idprom *, int version));
     21  1.1  glass 
     22