diff options
author | Alexander Graf | 2016-08-19 01:23:23 +0200 |
---|---|---|
committer | Alexander Graf | 2016-10-19 09:01:50 +0200 |
commit | 4b6dddc294a58fd9010926719e5c907beebf9b4d (patch) | |
tree | 12dcf54178aaba6693c03dc2fe58386d09567550 /lib/Makefile | |
parent | 1befb38b868248dda4e84a57aa779f7e8c0b85c0 (diff) |
x86: Move smbios generation into arch independent directory
We will need the SMBIOS generation function on ARM as well going forward,
so let's move it into a non arch specific location.
Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
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 3842e7d9892..23e9f1ef11d 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -27,6 +27,7 @@ obj-$(CONFIG_FIT) += fdtdec_common.o obj-$(CONFIG_TEST_FDTDEC) += fdtdec_test.o obj-$(CONFIG_GZIP) += gunzip.o obj-$(CONFIG_GZIP_COMPRESSED) += gzip.o +obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += smbios.o obj-y += initcall.o obj-$(CONFIG_LMB) += lmb.o obj-y += ldiv.o |