From: Naresh Bhat naresh.bhat@linaro.org
Support DBG2 table compilation.
Signed-off-by: Naresh Bhat naresh.bhat@linaro.org --- tools/common/build_aml.c | 1 + tools/common/check_aml.c | 1 + tools/common/include/check_aml.h | 1 + 3 files changed, 3 insertions(+)
diff --git a/tools/common/build_aml.c b/tools/common/build_aml.c index 4ca9e93..b4b079d 100644 --- a/tools/common/build_aml.c +++ b/tools/common/build_aml.c @@ -65,6 +65,7 @@ char *known_sigs[] = { "ssdt", "uefi", "xsdt", + "dbg2", NULL };
diff --git a/tools/common/check_aml.c b/tools/common/check_aml.c index 7e0fe59..d1322d6 100644 --- a/tools/common/check_aml.c +++ b/tools/common/check_aml.c @@ -69,6 +69,7 @@ struct known_table_info known_info[] = { { SIG_SSDT, 2 }, { SIG_UEFI, 1 }, { SIG_XSDT, 1 }, + { SIG_DBG2, 1 }, { NULL, 0 } };
diff --git a/tools/common/include/check_aml.h b/tools/common/include/check_aml.h index c1e1272..7ace9ae 100644 --- a/tools/common/include/check_aml.h +++ b/tools/common/include/check_aml.h @@ -90,6 +90,7 @@ #define SIG_SSDT "SSDT" #define SIG_UEFI "UEFI" #define SIG_XSDT "XSDT" +#define SIG_DBG2 "DBG2"
struct known_table_info { char *signature; /* table signature */