diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 9fb625ce05539fe6876a59ce1dcadb76b33c6f6e (patch) | |
tree | c80c104efa35776e942d3772db3514debbd24e61 /cmd | |
parent | cdbff9fc4002fdd47181088d5abe90e5f2fa1904 (diff) | |
download | u-boot-9fb625ce05539fe6876a59ce1dcadb76b33c6f6e.zip u-boot-9fb625ce05539fe6876a59ce1dcadb76b33c6f6e.tar.gz u-boot-9fb625ce05539fe6876a59ce1dcadb76b33c6f6e.tar.bz2 |
env: Move env_set() to env.h
Move env_set() over to the new header file.
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/avb.c | 1 | ||||
-rw-r--r-- | cmd/binop.c | 1 | ||||
-rw-r--r-- | cmd/dtimg.c | 1 | ||||
-rw-r--r-- | cmd/gpt.c | 1 | ||||
-rw-r--r-- | cmd/ini.c | 1 | ||||
-rw-r--r-- | cmd/md5sum.c | 1 | ||||
-rw-r--r-- | cmd/net.c | 1 | ||||
-rw-r--r-- | cmd/nvedit_efi.c | 1 | ||||
-rw-r--r-- | cmd/part.c | 1 | ||||
-rw-r--r-- | cmd/pxe.c | 1 | ||||
-rw-r--r-- | cmd/qfw.c | 1 |
11 files changed, 11 insertions, 0 deletions
@@ -7,6 +7,7 @@ #include <avb_verify.h> #include <command.h> +#include <env.h> #include <image.h> #include <malloc.h> #include <mmc.h> diff --git a/cmd/binop.c b/cmd/binop.c index 116a2c0..6d2df5f 100644 --- a/cmd/binop.c +++ b/cmd/binop.c @@ -2,6 +2,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <hexdump.h> #include <malloc.h> #include <mapmem.h> diff --git a/cmd/dtimg.c b/cmd/dtimg.c index ae7d82f..6c5d53c 100644 --- a/cmd/dtimg.c +++ b/cmd/dtimg.c @@ -4,6 +4,7 @@ * Sam Protsenko <semen.protsenko@linaro.org> */ +#include <env.h> #include <image-android-dt.h> #include <common.h> @@ -11,6 +11,7 @@ */ #include <common.h> +#include <env.h> #include <malloc.h> #include <command.h> #include <part_efi.h> @@ -13,6 +13,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <environment.h> #include <linux/ctype.h> #include <linux/string.h> diff --git a/cmd/md5sum.c b/cmd/md5sum.c index 9d2d418..63cbae0 100644 --- a/cmd/md5sum.c +++ b/cmd/md5sum.c @@ -9,6 +9,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <mapmem.h> #include <u-boot/md5.h> #include <asm/io.h> @@ -9,6 +9,7 @@ */ #include <common.h> #include <command.h> +#include <env.h> #include <net.h> static int netboot_common(enum proto_t, cmd_tbl_t *, int, char * const []); diff --git a/cmd/nvedit_efi.c b/cmd/nvedit_efi.c index 60a8ac8..ed6d09a 100644 --- a/cmd/nvedit_efi.c +++ b/cmd/nvedit_efi.c @@ -9,6 +9,7 @@ #include <common.h> #include <command.h> #include <efi_loader.h> +#include <env.h> #include <exports.h> #include <hexdump.h> #include <malloc.h> @@ -18,6 +18,7 @@ #include <common.h> #include <config.h> #include <command.h> +#include <env.h> #include <part.h> #include <vsprintf.h> @@ -6,6 +6,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <malloc.h> #include <mapmem.h> #include <lcd.h> @@ -5,6 +5,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <errno.h> #include <qfw.h> |