diff options
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
diff --git a/cmd/avb.c b/cmd/avb.c index 3f6fd763a0b..5bc158252b3 100644 --- a/cmd/avb.c +++ b/cmd/avb.c @@ -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 116a2c0d554..6d2df5f3dd4 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 ae7d82f26dd..6c5d53cc680 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> diff --git a/cmd/gpt.c b/cmd/gpt.c index 33cda513969..0c4349f4b24 100644 --- a/cmd/gpt.c +++ b/cmd/gpt.c @@ -11,6 +11,7 @@ */ #include <common.h> +#include <env.h> #include <malloc.h> #include <command.h> #include <part_efi.h> diff --git a/cmd/ini.c b/cmd/ini.c index 8c28fa6394b..f4faa7cae1b 100644 --- a/cmd/ini.c +++ b/cmd/ini.c @@ -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 9d2d4180c5c..63cbae0364c 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> diff --git a/cmd/net.c b/cmd/net.c index 89721b8f8be..237403977e8 100644 --- a/cmd/net.c +++ b/cmd/net.c @@ -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 60a8ac84c81..ed6d09a5304 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> diff --git a/cmd/part.c b/cmd/part.c index 653e13ced17..6cfb67b2795 100644 --- a/cmd/part.c +++ b/cmd/part.c @@ -18,6 +18,7 @@ #include <common.h> #include <config.h> #include <command.h> +#include <env.h> #include <part.h> #include <vsprintf.h> diff --git a/cmd/pxe.c b/cmd/pxe.c index 1dd0a74ea39..20599754462 100644 --- a/cmd/pxe.c +++ b/cmd/pxe.c @@ -6,6 +6,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <malloc.h> #include <mapmem.h> #include <lcd.h> diff --git a/cmd/qfw.c b/cmd/qfw.c index 7bf700538c8..af826627a21 100644 --- a/cmd/qfw.c +++ b/cmd/qfw.c @@ -5,6 +5,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <errno.h> #include <qfw.h> |