Commit 61eb5d72abd3d156baf9de2133226dc5d8da3150

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent 77d2675022

libfdt: move CONFIG_OF_LIBFDT and CONFIG_FIT to lib/Makefile

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Showing 2 changed files with 3 additions and 5 deletions Side-by-side Diff

... ... @@ -13,7 +13,8 @@
13 13 obj-$(CONFIG_ZLIB) += zlib/
14 14 obj-$(CONFIG_BZIP2) += bzip2/
15 15 obj-$(CONFIG_TIZEN) += tizen/
16   -obj-y += libfdt/
  16 +obj-$(CONFIG_OF_LIBFDT) += libfdt/
  17 +obj-$(CONFIG_FIT) += libfdt/
17 18  
18 19 obj-$(CONFIG_AES) += aes.o
19 20 obj-$(CONFIG_USB_TTY) += circbuf.o
... ... @@ -5,9 +5,6 @@
5 5 # SPDX-License-Identifier: GPL-2.0+
6 6 #
7 7  
8   -COBJS-libfdt += fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_sw.o fdt_wip.o \
  8 +obj-y += fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_sw.o fdt_wip.o \
9 9 fdt_empty_tree.o fdt_addresses.o
10   -
11   -obj-$(CONFIG_OF_LIBFDT) += $(COBJS-libfdt)
12   -obj-$(CONFIG_FIT) += $(COBJS-libfdt)