]> git.ipfire.org Git - thirdparty/u-boot.git/blame - env/Makefile
include: env: Add phytec RAUC boot logic
[thirdparty/u-boot.git] / env / Makefile
CommitLineData
83d290c5 1# SPDX-License-Identifier: GPL-2.0+
0649cd0d
SG
2#
3# (C) Copyright 2004-2006
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
0649cd0d 5
c8221680
RV
6obj-$(CONFIG_$(SPL_TPL_)ENV_SUPPORT) += common.o
7obj-$(CONFIG_$(SPL_TPL_)ENV_SUPPORT) += env.o
8obj-$(CONFIG_$(SPL_TPL_)ENV_SUPPORT) += attr.o
9obj-$(CONFIG_$(SPL_TPL_)ENV_SUPPORT) += flags.o
0649cd0d
SG
10
11ifndef CONFIG_SPL_BUILD
e13df08a 12obj-y += callback.o
0649cd0d 13obj-$(CONFIG_ENV_IS_IN_EEPROM) += eeprom.o
0649cd0d
SG
14obj-$(CONFIG_ENV_IS_IN_EEPROM) += embedded.o
15extra-$(CONFIG_ENV_IS_IN_FLASH) += embedded.o
16obj-$(CONFIG_ENV_IS_IN_NVRAM) += embedded.o
0649cd0d
SG
17obj-$(CONFIG_ENV_IS_IN_NVRAM) += nvram.o
18obj-$(CONFIG_ENV_IS_IN_ONENAND) += onenand.o
0649cd0d
SG
19obj-$(CONFIG_ENV_IS_IN_REMOTE) += remote.o
20obj-$(CONFIG_ENV_IS_IN_UBI) += ubi.o
0649cd0d
SG
21endif
22
474ecd2c
YS
23obj-$(CONFIG_$(SPL_TPL_)ENV_IS_NOWHERE) += nowhere.o
24obj-$(CONFIG_$(SPL_TPL_)ENV_IS_IN_MMC) += mmc.o
25obj-$(CONFIG_$(SPL_TPL_)ENV_IS_IN_FAT) += fat.o
26obj-$(CONFIG_$(SPL_TPL_)ENV_IS_IN_EXT4) += ext4.o
27obj-$(CONFIG_$(SPL_TPL_)ENV_IS_IN_NAND) += nand.o
28obj-$(CONFIG_$(SPL_TPL_)ENV_IS_IN_SPI_FLASH) += sf.o
29obj-$(CONFIG_$(SPL_TPL_)ENV_IS_IN_FLASH) += flash.o
30
0649cd0d 31CFLAGS_embedded.o := -Wa,--no-warn -DENV_CRC=$(shell tools/envcrc 2>/dev/null)