diff options
author | Stuart Longland <stuartl@vrt.com.au> | 2016-02-23 15:51:26 +1000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-14 14:18:39 -0400 |
commit | fd1000b9c1d3c93aca1aae8253f5d179b2ceb431 (patch) | |
tree | bc0a188d41431982898aeaf6c6f87b65c9db35e0 /common/Makefile | |
parent | df61a74e6845ec9bdcdd48d2aff5e9c2c6debeaa (diff) | |
download | u-boot-imx-fd1000b9c1d3c93aca1aae8253f5d179b2ceb431.zip u-boot-imx-fd1000b9c1d3c93aca1aae8253f5d179b2ceb431.tar.gz u-boot-imx-fd1000b9c1d3c93aca1aae8253f5d179b2ceb431.tar.bz2 |
common: Add support for environment file in EXT4.
This is an enhancement that permits storing the environment file on an
EXT4 partition such as the root filesystem. It is based on the existing
FAT environment file code.
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index 117178a..84882d7 100644 --- a/common/Makefile +++ b/common/Makefile @@ -46,6 +46,7 @@ obj-$(CONFIG_ENV_IS_IN_NVRAM) += env_embedded.o obj-$(CONFIG_ENV_IS_IN_FLASH) += env_flash.o obj-$(CONFIG_ENV_IS_IN_MMC) += env_mmc.o obj-$(CONFIG_ENV_IS_IN_FAT) += env_fat.o +obj-$(CONFIG_ENV_IS_IN_EXT4) += env_ext4.o obj-$(CONFIG_ENV_IS_IN_NAND) += env_nand.o obj-$(CONFIG_ENV_IS_IN_NVRAM) += env_nvram.o obj-$(CONFIG_ENV_IS_IN_ONENAND) += env_onenand.o @@ -105,6 +106,7 @@ 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_EXT4) += env_ext4.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 |