From 14b3cac5bcb5d9e7c20d60873c281a677e5c04cd Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Thu, 25 Apr 2013 16:42:31 -0400 Subject: [PATCH] docs: Fix/update syntax in Sysinfo/SMBIOS description --- docs/formatdomain.html.in | 51 ++++++++++++++++++++++++++++++++------- 1 file changed, 42 insertions(+), 9 deletions(-) diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index e4f9a92cf6..5e89a92401 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -308,7 +308,8 @@ </bios> <system> <entry name='manufacturer'>Fedora</entry> - <entry name='vendor'>Virt-Manager</entry> + <entry name='product'>Virt-Manager</entry> + <entry name='version'>0.9.4</entry> </system> </sysinfo> ... @@ -332,17 +333,49 @@
bios
- This is block 0 of SMBIOS, with entry names drawn from - "vendor", "version", "date", and "release". + This is block 0 of SMBIOS, with entry names drawn from: +
+
vendor
+
BIOS Vendor's Name
+
version
+
BIOS Version
+
date
+
BIOS release date. If supplied, is in either mm/dd/yy or + mm/dd/yyyy format. If the year portion of the string is + two digits, the year is assumed to be 19yy.
+
release
+
System BIOS Major and Minor release number values + concatenated together as one string separated by + a period, for example, 10.22.
+
system
- This is block 1 of SMBIOS, with entry names drawn from - "manufacturer", "product", "version", "serial", "uuid", - "sku", and "family". If a "uuid" entry is provided - alongside a - top-level uuid - element, the two values must match. + This is block 1 of SMBIOS, with entry names drawn from: +
+
manufacturer
+
Manufacturer of BIOS
+
product
+
Product Name
+
version
+
Version of the product
+
serial
+
Serial number
+
uuid
+
Universal Unique ID number. If this entry is provided + alongside a top-level + uuid element, + then the two values must match.
+
sku
+
SKU number to identify a particular configuration.
+
family
+
Identify the family a particular computer belongs to.
+
+ NB: Incorrectly supplied entries in either the bios + or system blocks will be ignored without error. + Other than uuid validation and date + format checking, all values are passed as strings to the + hypervisor driver.
-- GitLab