From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J0k5c-0005M8-Tv for qemu-devel@nongnu.org; Fri, 07 Dec 2007 15:46:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J0k5a-0005JZ-6q for qemu-devel@nongnu.org; Fri, 07 Dec 2007 15:46:28 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J0k5Z-0005JQ-W9 for qemu-devel@nongnu.org; Fri, 07 Dec 2007 15:46:26 -0500 Received: from e1.ny.us.ibm.com ([32.97.182.141]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1J0k5Z-0002g1-Un for qemu-devel@nongnu.org; Fri, 07 Dec 2007 15:46:26 -0500 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by e1.ny.us.ibm.com (8.13.8/8.13.8) with ESMTP id lB7KkCdQ001253 for ; Fri, 7 Dec 2007 15:46:12 -0500 Received: from d01av03.pok.ibm.com (d01av03.pok.ibm.com [9.56.224.217]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v8.7) with ESMTP id lB7KkCSj116130 for ; Fri, 7 Dec 2007 15:46:12 -0500 Received: from d01av03.pok.ibm.com (loopback [127.0.0.1]) by d01av03.pok.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id lB7KkC61009265 for ; Fri, 7 Dec 2007 15:46:12 -0500 Received: from localhost.localdomain (frylock.austin.ibm.com [9.53.41.12]) by d01av03.pok.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id lB7KkCuB009231 for ; Fri, 7 Dec 2007 15:46:12 -0500 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Message-Id: Date: Fri, 07 Dec 2007 14:45:51 -0600 From: Ryan Harper Subject: [Qemu-devel] [PATCH 0 of 3] Add SMBIOS/DMI table generation to PC machine Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patchset introduces SMBIOS/DMI table generation to qemu for PC machines. The intial patch includes all changes needed to create the tables and load them into memory. This patch depends on libuuid. The subsequent patches detect for libuuid and optionally link to the library if present. The final patch adds a -uuid option for a user to specify their own uuid. These patches should apply against qemu-cvs. Tested on target x86_64-softmmu. Signed-off-by: Ryan Harper 7 files changed, 821 insertions(+), 5 deletions(-) Makefile.target | 9 configure | 26 ++ hw/pc.c | 47 ++++ smbios.c | 540 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- smbios_types.h | 182 ++++++++++++++++++ sysemu.h | 4 vl.c | 18 +