diff options
| author | Felipe Balbi <[email protected]> | 2014-09-23 10:44:17 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2014-10-23 11:53:01 -0400 |
| commit | 41f1d40d9207cb6770d4cdc9e397a6e493fb4cfb (patch) | |
| tree | aaaecd3ee0547bd3acb343bed884fc6db1c8187c /common | |
| parent | f5c30c1b1c69b235f28d34f8ee1670b2028152ff (diff) | |
common: Makefile: allow for spl builds with env_fat
If CONFIG_SPL_BUILD and CONFIG_ENV_IS_IN_FAT are
defined, u-boot spl will fail to build. Fix that.
Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index c84b3bc102a..6cc4de8a73f 100644 --- a/common/Makefile +++ b/common/Makefile @@ -233,6 +233,7 @@ obj-$(CONFIG_SPL_ENV_SUPPORT) += env_flags.o obj-$(CONFIG_SPL_ENV_SUPPORT) += env_callback.o obj-$(CONFIG_ENV_IS_NOWHERE) += env_nowhere.o obj-$(CONFIG_ENV_IS_IN_MMC) += env_mmc.o +obj-$(CONFIG_ENV_IS_IN_FAT) += env_fat.o obj-$(CONFIG_ENV_IS_IN_NAND) += env_nand.o obj-$(CONFIG_ENV_IS_IN_SPI_FLASH) += env_sf.o obj-$(CONFIG_ENV_IS_IN_FLASH) += env_flash.o |
