search for: acpi2_0

Displaying 5 results from an estimated 5 matches for "acpi2_0".

Did you mean: lcpi2_0
2012 Aug 14
2
[TESTDAY] Compiling on 64-bit Ubuntu systems
...stable.hg/tools/firmware/rombios/32bit/tcgbios/../../../../../tools/include -I.. -I../.. -c -o tcgbios.o tcgbios.c In file included from /usr/include/stdint.h:26:0, from /usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdint.h:3, from ../../../hvmloader/acpi/acpi2_0.h:21, from ../util.h:4, from tcgbios.c:27: /usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory compilation terminated. gcc -O1 -fno-omit-frame-pointer -m32 -march=i686 -g -fno-strict-aliasing -std=gnu99 -Wall...
2011 Nov 18
2
[PATCH 0 of 2] Add configuration options to selectively disable S3 and S4 (V3)
This patch series adds the ability to selectively disable the S3 and S4 ACPI power states for HVM guests. Since there is a general move towards retiring the hvm_info_table structure, the first patch moves the acpi_enabled flag out of the hvm_info_table and into a xenstore key (platform/acpi). The second patch then introduces the acpi_s3 and acpi_s4 configuration parameters to the xl config file
2013 Oct 28
0
Re: [Qemu-devel] Hvmloader: Modify ACPI to only supply _EJ0 methods for PCIslots that support hotplug by runtime patching
...> > Insurance purposes is that just initialize the struct. > > Signed-off-by: Gaowei <gao.gaowei@huawei.com> > Signed-off-by: gonglei <arei.gonglei@huawei.com> > --- > tools/firmware/hvmloader/acpi/Makefile | 37 ++- > tools/firmware/hvmloader/acpi/acpi2_0.h | 4 + > tools/firmware/hvmloader/acpi/build.c | 21 +- > tools/firmware/hvmloader/acpi/dsdt.asl | 1 + > tools/firmware/hvmloader/acpi/mk_dsdt.c | 2 + > tools/firmware/hvmloader/ovmf.c | 6 +- > tools/firm...
2006 Aug 11
0
[PATCH] [4/5] SMBIOS -- generate SMBIOS tables
...OBJS = $(patsubst %.c,%.o,$(SRCS)) .PHONY: all diff -r 1d817bfc5ed9 tools/firmware/hvmloader/hvmloader.c --- a/tools/firmware/hvmloader/hvmloader.c Fri Aug 11 14:22:54 2006 +0100 +++ b/tools/firmware/hvmloader/hvmloader.c Fri Aug 11 16:18:16 2006 -0400 @@ -25,6 +25,8 @@ #include "../acpi/acpi2_0.h" /* for ACPI_PHYSICAL_ADDRESS */ #include "hypercall.h" #include "util.h" +#include "smbios.h" +#include "e820.h" #include <xen/version.h> #include <xen/hvm/params.h> @@ -116,15 +118,6 @@ check_amd(void) } static void -cpuid(uint...
2012 Feb 11
14
[PATCH v3 0/5] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to