diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-11-13 10:29:09 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-23 11:49:03 (GMT) |
commit | 167544e83ab357d74932fd1404d5d9f28a35a2af (patch) | |
tree | e3d0aafca4dd3e638cb10475a567a5969fd9f77b /scripts/Makefile.spl | |
parent | 60296a835cb176695a3ce3a50a843d2f03b77d32 (diff) | |
download | u-boot-167544e83ab357d74932fd1404d5d9f28a35a2af.tar.xz |
spl: fix descending condition to drivers/mtd/nand/
SPL should not reference CONFIG_CMD_NAND to decide whether or not
it should build drivers/mtd/nand. CONFIG_CMD_NAND should be only
used to select the NAND utility command on the command parser.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'scripts/Makefile.spl')
-rw-r--r-- | scripts/Makefile.spl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 69f7c9f..342d82e 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -77,7 +77,7 @@ libs-y += fs/ libs-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/ libs-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/ drivers/power/pmic/ libs-$(CONFIG_SPL_MTD_SUPPORT) += drivers/mtd/ -libs-$(if $(CONFIG_CMD_NAND),$(CONFIG_SPL_NAND_SUPPORT)) += drivers/mtd/nand/ +libs-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/ libs-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += drivers/misc/ libs-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/ libs-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/ |