aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/drivers/mtd/nand/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/drivers/mtd/nand/Makefile')
-rw-r--r--roms/u-boot/drivers/mtd/nand/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/roms/u-boot/drivers/mtd/nand/Makefile b/roms/u-boot/drivers/mtd/nand/Makefile
new file mode 100644
index 000000000..96e186600
--- /dev/null
+++ b/roms/u-boot/drivers/mtd/nand/Makefile
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: GPL-2.0+
+
+ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),)
+nandcore-objs := core.o bbt.o
+obj-$(CONFIG_MTD_NAND_CORE) += nandcore.o
+obj-$(CONFIG_MTD_RAW_NAND) += raw/
+obj-$(CONFIG_MTD_SPI_NAND) += spi/
+else
+obj-$(CONFIG_$(SPL_TPL_)NAND_SUPPORT) += raw/
+endif