Hi Guys,
Just a couple of .gitignore tidyups to prevent objects/targets appearing in the repo.
Also add two missing tables to mab.
Graeme
Signed-off-by: Graeme Gregory graeme.gregory@linaro.org --- tools/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 tools/.gitignore
diff --git a/tools/.gitignore b/tools/.gitignore new file mode 100644 index 0000000..874c63c --- /dev/null +++ b/tools/.gitignore @@ -0,0 +1,2 @@ +*.o +
Signed-off-by: Graeme Gregory graeme.gregory@linaro.org --- tools/bfapei/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 tools/bfapei/.gitignore
diff --git a/tools/bfapei/.gitignore b/tools/bfapei/.gitignore new file mode 100644 index 0000000..db09fd5 --- /dev/null +++ b/tools/bfapei/.gitignore @@ -0,0 +1 @@ +bfapei
Add these two tables which are supported by ACPICA tools so mab understands these tables also.
Signed-off-by: Graeme Gregory graeme.gregory@linaro.org --- tools/common/build_aml.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/tools/common/build_aml.c b/tools/common/build_aml.c index 4ca9e93..ad36e4f 100644 --- a/tools/common/build_aml.c +++ b/tools/common/build_aml.c @@ -65,6 +65,8 @@ char *known_sigs[] = { "ssdt", "uefi", "xsdt", + "dbg2", + "spcr", NULL };
On 02/19/2014 06:17 AM, Graeme Gregory wrote:
Hi Guys,
Just a couple of .gitignore tidyups to prevent objects/targets appearing in the repo.
Also add two missing tables to mab.
Graeme
Linaro-acpi mailing list Linaro-acpi@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-acpi
Aha. Nice cleanups all. Thanks.
Acked-by: Al Stone al.stone@linaro.org