diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-03 12:22:00 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-15 20:50:26 -0400 |
commit | c9d728dd33fe7c45711395c72b2113ea7c18fc72 (patch) | |
tree | 1e8e176158357f39036c303ab035f816798e6cfd /env/Makefile | |
parent | c1c3fe23070ac924e65208abbf8d2396bcc08008 (diff) | |
download | u-boot-c9d728dd33fe7c45711395c72b2113ea7c18fc72.tar.gz u-boot-c9d728dd33fe7c45711395c72b2113ea7c18fc72.tar.bz2 u-boot-c9d728dd33fe7c45711395c72b2113ea7c18fc72.zip |
env: Add a new implementation of environment access
We plan to move to a environment access via drivers for each location
where the environment can be stored. Add an implementation for this. So
far it is not used, but will be pressed into service in a future patch.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'env/Makefile')
-rw-r--r-- | env/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/env/Makefile b/env/Makefile index 4c1bdcfdf4..8df5b9d4c9 100644 --- a/env/Makefile +++ b/env/Makefile @@ -5,7 +5,7 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-y += common.o +obj-y += common.o env.o ifndef CONFIG_SPL_BUILD obj-y += attr.o |