|
@@ -113,6 +113,25 @@ struct smbios_system_information {
|
113
|
113
|
/** SMBIOS system information structure type */
|
114
|
114
|
#define SMBIOS_TYPE_SYSTEM_INFORMATION 1
|
115
|
115
|
|
|
116
|
+/** SMBIOS enclosure information structure */
|
|
117
|
+struct smbios_enclosure_information {
|
|
118
|
+ /** SMBIOS structure header */
|
|
119
|
+ struct smbios_header header;
|
|
120
|
+ /** Manufacturer string */
|
|
121
|
+ uint8_t manufacturer;
|
|
122
|
+ /** Type string */
|
|
123
|
+ uint8_t type;
|
|
124
|
+ /** Version string */
|
|
125
|
+ uint8_t version;
|
|
126
|
+ /** Serial number string */
|
|
127
|
+ uint8_t serial;
|
|
128
|
+ /** Asset tag */
|
|
129
|
+ uint8_t asset_tag;
|
|
130
|
+} __attribute__ (( packed ));
|
|
131
|
+
|
|
132
|
+/** SMBIOS enclosure information structure type */
|
|
133
|
+#define SMBIOS_TYPE_ENCLOSURE_INFORMATION 3
|
|
134
|
+
|
116
|
135
|
/**
|
117
|
136
|
* SMBIOS entry point descriptor
|
118
|
137
|
*
|