| # Copyright (C) 2011 Red Hat, Inc., Michael S. Tsirkin <mst@redhat.com> |
| # This file may be distributed under the terms of the GNU GPLv3 license. |
| # Read a preprocessed ASL listing and put each ACPI_EXTRACT |
| # directive in a comment, to make iasl skip it. |
| # We also put each directive on a new line, the machinery |
| # in scripts/acpi_extract.py requires this. |
| sys.stderr.write("Error: %s\n" % (diag)) |
| # Note: () around pattern make split return matched string as part of list |
| psplit = re.compile(r''' ( |
| ACPI_EXTRACT_\w+ # directive |
| for line in fileinput.input(): |
| # line number and debug string to output in case of errors |
| debug = "input line %d: %s" % (lineno, line.rstrip()) |
| # The way split works, each odd item is the matching ACPI_EXTRACT directive. |
| # Put each in a comment, and on a line by itself. |
| sys.stdout.write("\n/* %s */\n" % s[i]) |