diff options
| author | Simon Glass <[email protected]> | 2020-04-08 16:57:38 -0600 |
|---|---|---|
| committer | Bin Meng <[email protected]> | 2020-04-16 14:36:28 +0800 |
| commit | 91fe8b79f6912ab7622169bc1673e2df222e0b57 (patch) | |
| tree | ca9baeb3b60980b85c1982b8c3b0f22100987816 /lib/Makefile | |
| parent | 89c2798f1f2f690cdd269e38ef386ff720435816 (diff) | |
acpi: Add a central location for table version numbers
Each ACPI table has its own version number. Add the version numbers in a
single function so we can keep them consistent and easily see what
versions are supported.
Start a new acpi_table file in a generic directory to house this function.
We can move things over to this file from x86 as needed.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Wolfgang Wallner <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 32bf3f36931..5f88d92850f 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -58,6 +58,7 @@ obj-$(CONFIG_TPM_V1) += tpm-v1.o obj-$(CONFIG_TPM_V2) += tpm-v2.o endif +obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi/ obj-$(CONFIG_$(SPL_)RSA) += rsa/ obj-$(CONFIG_SHA1) += sha1.o obj-$(CONFIG_SHA256) += sha256.o |
