Displaying 1 result from an estimated 1 matches for "add_aml".
Did you mean:
add_a
2013 Oct 28
0
Re: [Qemu-devel] Hvmloader: Modify ACPI to only supply _EJ0 methods for PCIslots that support hotplug by runtime patching
...or debugging)
> +def add_asl(lineno, line):
> + l = asl_line()
> + l.line = line
> + l.lineno = lineno
> + l.aml_offset = len(aml)
> + asl.append(l)
> +
> +#Store an AML byte sequence
> +#Verify that offset output by iasl matches # of bytes so far
> +def add_aml(offset, line):
> + o = int(offset, 16);
> + # Sanity check: offset must match size of code so far
> + if (o != len(aml)):
> + die("Offset 0x%x != 0x%x" % (o, len(aml)))
> + # Strip any trailing dots and ASCII dump after "
> + line = re.sub(r...