From: Jan Beulich Date: Thu, 22 May 2014 12:20:19 +0000 (+0200) Subject: hvmloader: fix build with certain iasl versions X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4955 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=119d8a42d3bfe6ebc1785720e1a7260e5c698632;p=xen.git hvmloader: fix build with certain iasl versions While most of them support what we have now, Wheezy's dislikes the empty range. Put a fake one in place - it's getting overwritten upon evaluation of _CRS anyway. The range could be grown (downwards) if necessary; the way it is now it is - the highest possible one below the 36-bit boundary (with 36 bits being the lowest common denominator for all supported systems), - the smallest possible one that said iasl accepts. Reported-by: Sander Eikelenboom Signed-off-by: Jan Beulich Acked-by: Ian Campbell --- diff --git a/tools/firmware/hvmloader/acpi/dsdt.asl b/tools/firmware/hvmloader/acpi/dsdt.asl index 958ebb1e96..415c63efa7 100644 --- a/tools/firmware/hvmloader/acpi/dsdt.asl +++ b/tools/firmware/hvmloader/acpi/dsdt.asl @@ -159,10 +159,10 @@ DefinitionBlock ("DSDT.aml", "DSDT", 2, "Xen", "HVM", 0) ResourceProducer, PosDecode, MinFixed, MaxFixed, NonCacheable, ReadWrite, 0x0000000000000000, + 0x0000000FFFFFFFF0, + 0x0000000FFFFFFFFF, 0x0000000000000000, - 0x0000000000000000, - 0x0000000000000000, - 0x0000000000000000, + 0x0000000000000010, ,, _Y02) })