diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-11-28 11:13:28 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-08 09:35:47 -0500 |
commit | 61eb5d72abd3d156baf9de2133226dc5d8da3150 (patch) | |
tree | 257fd9f5b7b63b174fd9373e1a4ff8e005686fee /lib/Makefile | |
parent | 77d267502295ffc4d83e80fa175583f8b6460615 (diff) | |
download | u-boot-imx-61eb5d72abd3d156baf9de2133226dc5d8da3150.zip u-boot-imx-61eb5d72abd3d156baf9de2133226dc5d8da3150.tar.gz u-boot-imx-61eb5d72abd3d156baf9de2133226dc5d8da3150.tar.bz2 |
libfdt: move CONFIG_OF_LIBFDT and CONFIG_FIT to lib/Makefile
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index e8635ef..3ceb697 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -13,7 +13,8 @@ obj-$(CONFIG_LZO) += lzo/ obj-$(CONFIG_ZLIB) += zlib/ obj-$(CONFIG_BZIP2) += bzip2/ obj-$(CONFIG_TIZEN) += tizen/ -obj-y += libfdt/ +obj-$(CONFIG_OF_LIBFDT) += libfdt/ +obj-$(CONFIG_FIT) += libfdt/ obj-$(CONFIG_AES) += aes.o obj-$(CONFIG_USB_TTY) += circbuf.o |