Displaying 3 results from an estimated 3 matches for "smbios_type_1".
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_...
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,...
2017 Oct 18
0
File option for smbios.
Hi guys,
Does anybody knows if there is an option to set a binary file for smbios?
Currently, I'm doing this approach:
<qemu:commandline>
<qemu:arg value='-smbios'/>
<qemu:arg value='file=/var/run/libvirt/qemu/smbios_type_1.bin'/>
</qemu:commandline>
Has libvirt a method as <smbios mode='host'/> ?
--
Julio Cesar Faracco