aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-09-15 11:41:07 -0400
committerTom Rini <trini@konsulko.com>2023-09-15 11:41:07 -0400
commit621fc757f378df5cb72854be54d05307e9ba2367 (patch)
tree29815f2aab5f3d8adcc2e8d52a086d5d74dff3ad
parent75d60e51af4004b8cd4400b5a08250c4960024d7 (diff)
downloadu-boot-TEST/kconfig-tidy-v5.zip
u-boot-TEST/kconfig-tidy-v5.tar.gz
u-boot-TEST/kconfig-tidy-v5.tar.bz2
TEST: Revert "boot: Move fdt_support to boot/"TEST/kconfig-tidy-v5
This reverts commit 8bf85e180140b2cd54a6eea14e4d3e8f4fd4ffef. LTO can do very funny things, don't move this file. Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--boot/Makefile2
-rw-r--r--common/Makefile2
-rw-r--r--common/fdt_support.c (renamed from boot/fdt_support.c)0
3 files changed, 2 insertions, 2 deletions
diff --git a/boot/Makefile b/boot/Makefile
index 6ce983b..30092bd 100644
--- a/boot/Makefile
+++ b/boot/Makefile
@@ -16,7 +16,6 @@ obj-$(CONFIG_QFW) += bootmeth_qfw.o
endif
obj-y += image.o image-board.o
-
obj-$(CONFIG_ANDROID_AB) += android_ab.o
obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o image-android-dt.o
@@ -38,7 +37,6 @@ obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow_menu.o
obj-$(CONFIG_$(SPL_TPL_)CEDIT) += cedit.o
endif
-obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
obj-$(CONFIG_$(SPL_TPL_)FDT_SIMPLEFB) += fdt_simplefb.o
obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += image-fdt.o
diff --git a/common/Makefile b/common/Makefile
index 5c16172..b43bc8e 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -17,6 +17,7 @@ obj-y += board_r.o
obj-$(CONFIG_DISPLAY_BOARDINFO) += board_info.o
obj-$(CONFIG_DISPLAY_BOARDINFO_LATE) += board_info.o
+obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
obj-$(CONFIG_MII) += miiphyutil.o
obj-$(CONFIG_CMD_MII) += miiphyutil.o
obj-$(CONFIG_PHYLIB) += miiphyutil.o
@@ -49,6 +50,7 @@ ifdef CONFIG_SPL_DFU
obj-$(CONFIG_DFU_OVER_USB) += dfu.o
endif
obj-$(CONFIG_SPL_NET) += miiphyutil.o
+obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
obj-$(CONFIG_SPL_USB_HOST) += usb.o usb_hub.o
obj-$(CONFIG_SPL_USB_STORAGE) += usb_storage.o
diff --git a/boot/fdt_support.c b/common/fdt_support.c
index 5e49078..5e49078 100644
--- a/boot/fdt_support.c
+++ b/common/fdt_support.c