diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2012-12-11 22:16:24 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-12-13 11:46:55 -0700 |
commit | 170ab11075d3be56e89d6444abf1148329130f4b (patch) | |
tree | d3088ad532f4f4a0082f625ce50cfd120d6a6a1d /common/Makefile | |
parent | be11235ab802844e12d84921a38fd8ae4ddda080 (diff) | |
download | u-boot-imx-170ab11075d3be56e89d6444abf1148329130f4b.zip u-boot-imx-170ab11075d3be56e89d6444abf1148329130f4b.tar.gz u-boot-imx-170ab11075d3be56e89d6444abf1148329130f4b.tar.bz2 |
env: Add support for callbacks to environment vars
Add support for per-variable callbacks to the "hashtable" functions.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
!!!fix comment in callback
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index ce30359..04812e9 100644 --- a/common/Makefile +++ b/common/Makefile @@ -44,6 +44,8 @@ COBJS-y += cmd_nvedit.o COBJS-y += cmd_version.o # environment +COBJS-y += env_attr.o +COBJS-y += env_callback.o COBJS-y += env_common.o COBJS-$(CONFIG_ENV_IS_IN_DATAFLASH) += env_dataflash.o COBJS-$(CONFIG_ENV_IS_IN_EEPROM) += env_eeprom.o @@ -207,6 +209,8 @@ COBJS-y += env_common.o COBJS-$(CONFIG_ENV_IS_IN_FLASH) += env_flash.o COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += xyzModem.o COBJS-$(CONFIG_SPL_NET_SUPPORT) += cmd_nvedit.o +COBJS-$(CONFIG_SPL_NET_SUPPORT) += env_attr.o +COBJS-$(CONFIG_SPL_NET_SUPPORT) += env_callback.o COBJS-$(CONFIG_SPL_NET_SUPPORT) += env_common.o COBJS-$(CONFIG_SPL_NET_SUPPORT) += env_nowhere.o COBJS-$(CONFIG_SPL_NET_SUPPORT) += miiphyutil.o |