search for: smbios_type_1_init

Displaying 2 results from an estimated 2 matches for "smbios_type_1_init".

2006 Aug 22
0
[PATCH] [HVM] Make serial number in SMBIOS table equal to UUID
...serial number */ + size += strlen("Xen") + strlen("HVM domU") + strlen(xen_version) + + 36 + 4; /* type 3: "Xen" */ size += strlen("Xen") + 1; /* type 4: socket designation ("CPU n"), processor_manufacturer */ @@ -371,6 +373,7 @@ smbios_type_1_init(void *start, const ch smbios_type_1_init(void *start, const char *xen_version, uint8_t uuid[16]) { + char uuid_str[37]; struct smbios_type_1 *p = (struct smbios_type_1 *)start; p->header.type = 1; p->header.length = sizeof(struct smbios_type_1); @@ -379,7 +382,7 @@ smbios_type_...
2006 Aug 11
0
[PATCH] [4/5] SMBIOS -- generate SMBIOS tables
...ure_table_length, + uint32_t structure_table_address, + uint16_t number_of_structures); +static void * +smbios_type_0_init(void *start, const char *xen_version, + uint32_t xen_major_version, uint32_t xen_minor_version); +static void * +smbios_type_1_init(void *start, const char *xen_version, + uint8_t uuid[16]); +static void * +smbios_type_3_init(void *start); +static void * +smbios_type_4_init(void *start, unsigned int cpu_number, + char *cpu_manufacturer); +static void * +smbios_type_16_init(void *start, uint3...